Find and delete old git branches that are no longer needed.
Clone the repo and add to your path (just for ease of use):
| import time | |
| import png | |
| from apng import APNG | |
| from OpenGL.GL import * | |
| import glfw | |
| class APNGSprite: | |
| def __init__(self, path, loop=True, layer_order=0, frame_interval_ms=100): | |
| apng = APNG.open(path) | |
| self.count = len(apng.frames) |
| require 'rubygems' | |
| require 'spork' | |
| Spork.prefork do | |
| # Sets up the Rails environment for Cucumber | |
| ENV["RAILS_ENV"] ||= "cucumber" | |
| require File.expand_path(File.dirname(__FILE__) + '/../../config/environment') | |
| require 'webrat' |