Sha256: 19a5c5f0a459b034314d0443120c171207f38b4586c367a05d29c11b5e4e27c5
Contents?: true
Size: 1.39 KB
Versions: 2
Compression:
Stored size: 1.39 KB
Contents
# Specifies gem version of Rails to use when vendor/rails is not present RAILS_GEM_VERSION = '2.3.5' unless defined? RAILS_GEM_VERSION # Specified gem version of Refinery to use when vendor/plugins/refinery/lib/refinery.rb is not present. REFINERY_GEM_VERSION = '0.9.6.15' unless defined? REFINERY_GEM_VERSION # Boot Rails require File.join(File.dirname(__FILE__), 'boot') # Here we load in Refinery to do the rest of the heavy lifting. # Refinery is setup in config/preinitializer.rb require Refinery.root.join("lib", "refinery_initializer").cleanpath.to_s # Boot with Refinery. Most configuration is handled by Refinery. # Anything you specify here that Refinery specified internally will override Refinery. Refinery::Initializer.run do |config| # Settings in config/environments/* take precedence over those specified here. # Application configuration should go into files in config/initializers # -- all .rb files in that directory are automatically loaded. # See Rails::Configuration for more options. config.action_controller.session = { :session_key => '_refinery_session', :secret => 'eec8fffc3637c05895f8e6a355179eaad0003ac5617e5368955baf7989e1faca4d8ab37140d690c20b05d5815609b7c680c644277b6a892be316a85c6596d75c' } # Specify your application's gem requirements here. See the example below: # config.gem "refinerycms-portfolio", :lib => "portfolio", :version => "~> 0.9.3.8" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
refinerycms-0.9.6.17 | config/application.rb |
refinerycms-0.9.6.16 | config/application.rb |