Sha256: 306cae9ecfdeaf2a6f2f230cf5ee993b8c217f4d335a3d511db22342787dcf61
Contents?: true
Size: 1.45 KB
Versions: 12
Compression:
Stored size: 1.45 KB
Contents
# 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 = { :key => '_refinery_session', :secret => 'eec8fffc3637c05895f8e6a355179eaad0003ac5617e5368955baf7989e1faca4d8ab37140d690c20b05d5815609b7c680c644277b6a892be316a85c6596d75c' } end # You can set things in the following file and we'll try hard not to destroy them in updates, promise. # Note: These are settings that aren't dependent on environment type. For those, use the files in config/environments/ require Rails.root.join('config', 'settings.rb').to_s # Bundler has shown a weakness using Rails < 3 so we are going to # require these dependencies here until we can find another solution or until we move to # Rails 3.0 which should fix the issue (or until Bundler fixes the issue). require_dependency 'will_paginate'
Version data entries
12 entries across 12 versions & 1 rubygems