Sha256: e1321461af0153dd4848e038a578711ad103516e3308930a67f38c0cb78378aa
Contents?: true
Size: 605 Bytes
Versions: 1
Compression:
Stored size: 605 Bytes
Contents
module BrighterPlanetLayout class Railtie < Rails::Railtie initializer 'brighter_planet_layout.add_paths' do |app| app.paths.app.views << File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'app', 'views')) app.paths.app.helpers << File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'app', 'helpers')) app.paths.public.stylesheets << File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'public', 'stylesheets')) app.paths.public.images << File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'public', 'images')) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
brighter_planet_layout-0.1.1 | lib/brighter_planet_layout/railtie.rb |