Created
October 20, 2009 08:41
-
-
Save kossnocorp/214114 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RAILS_GEM_VERSION = '2.3.4' unless defined? RAILS_GEM_VERSION | |
require File.join(File.dirname(__FILE__), 'boot') | |
Rails::Initializer.run do |config| | |
config.load_paths << "#{RAILS_ROOT}/app/mailers" | |
config.gem 'echoe', | |
:lib => false, | |
:version => '>=3.2', | |
:source => 'http://gemcutter.org' | |
config.gem 'capistrano', | |
:version => '>=2.5.9', | |
:source => 'http://gemcutter.org' | |
config.gem 'capistrano-ext', | |
:lib => 'capistrano', | |
:version => '>=1.2.1', | |
:source => 'http://gemcutter.org' | |
config.gem 'will_paginate', | |
:version => '>=2.3.11', | |
:source => 'http://gemcutter.org' | |
config.gem 'rspec', | |
:lib => false, | |
:version => '>=1.2.9', | |
:source => 'http://gemcutter.org' | |
config.gem 'rspec-rails', | |
:lib => false, | |
:version => '>=1.2.9', | |
:source => 'http://gemcutter.org' | |
config.gem 'factory_girl', | |
:version => '>=1.2.2', | |
:source => 'http://gemcutter.org' | |
config.gem 'haml', | |
:version => '>=2.2.6', | |
:source => 'http://gemcutter.org' | |
config.gem 'awesome_nested_set', | |
:version => '>=1.4.3', | |
:source => 'http://gemcutter.org' | |
config.gem 'delayed_job', | |
:version => '>=1.8.4', | |
:source => 'http://gemcutter.org' | |
config.gem 'paperclip', | |
:version => '>=2.3.1.1', | |
:source => 'http://gemcutter.org' | |
config.gem 'smurf', | |
:version => '>=1.0.0', | |
:source => 'http://gemcutter.org' | |
config.gem 'authlogic', | |
:version => '>=2.1.2', | |
:source => 'http://gemcutter.org' | |
config.gem 'justinfrench-formtastic', | |
:lib => 'formtastic', | |
:version => '>=0.2.4', | |
:source => 'http://gems.github.com' | |
config.gem 'lockdown', | |
:version => '>=1.3.1', | |
:source => 'http://gemcutter.org' | |
config.gem 'aasm', | |
:version => '>=2.1.1', | |
:source => 'http://gemcutter.org' | |
config.gem 'RedCloth', | |
:lib => 'redcloth', | |
:version => '>=4.2.2', | |
:source => 'http://gemcutter.org' | |
config.gem 'compass', | |
:version => '>=0.8.17', | |
:source => 'http://gemcutter.org' | |
config.gem 'acts_as_list', | |
:version => '>=0.1.2', | |
:source => 'http://gemcutter.org' | |
config.gem 'acts_as_tree', | |
:version => '>=0.1.0', | |
:source => 'http://gemcutter.org' | |
config.gem 'friendly_id', | |
:version => '>=2.1.4', | |
:source => 'http://gemcutter.org' | |
config.gem 'flash-message-conductor', | |
:lib => 'flash_message_conductor', | |
:version => '>=1.0.0', | |
:source => 'http://gemcutter.org' | |
config.gem 'semanticart-is_paranoid', | |
:lib => 'is_paranoid', | |
:version => '>=0.9.6', | |
:source => 'http://gems.github.com' | |
config.active_record.timestamped_migrations = false | |
config.log_level = :debug | |
config.time_zone = 'Moscow' | |
#config.active_record.observers = :user_observer | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment