Sha256: ee93047d98356d62b6ef9f0a2b60d122df3dcb778b79efffb97bb7bdf3614eeb
Contents?: true
Size: 893 Bytes
Versions: 4
Compression:
Stored size: 893 Bytes
Contents
if defined?(Rails) && Rails::VERSION::MAJOR == 3 module Gmaps4rails require 'rails' require 'gmaps4rails/base' require 'gmaps4rails/acts_as_gmappable' require 'gmaps4rails/extensions/array' require 'gmaps4rails/extensions/hash' require 'gmaps4rails/helper/gmaps4rails_helper' class Engine < Rails::Engine initializer "gmaps4rails view helpers" do |app| ActionView::Base.send :include, Gmaps4railsHelper end initializer "add asset directories to pipeline" do |app| if Rails::VERSION::MINOR >= 1 app.config.assets.paths << "#{root}/public/javascripts" app.config.assets.paths << "#{root}/public/stylesheets" app.config.assets.paths << "#{root}/public/images" else app.middleware.use ::ActionDispatch::Static, "#{root}/public" end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
gmaps4rails-1.0.2 | lib/gmaps4rails.rb |
gmaps4rails-1.0.1 | lib/gmaps4rails.rb |
gmaps4rails-1.0.0 | lib/gmaps4rails.rb |
gmaps4rails-0.11.1 | lib/gmaps4rails.rb |