Sha256: 7bed85774da74559b2102b64ccb54c3e82077b768e7639296ac792b198abdfb0

Contents?: true

Size: 366 Bytes

Versions: 1

Compression:

Stored size: 366 Bytes

Contents

require "sprite_animation/version"
require "sprite_animation/sprite_animation_helper"

module SpriteAnimation 
  class Engine < Rails::Engine
  end

  class Railtie < Rails::Railtie
    initializer "sprite_animation.initialize_sprite_animation_helper" do |app|
      ActiveSupport.on_load(:action_view) do
        include SpriteAnimation
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sprite_animation-0.1.0 lib/sprite_animation.rb