Skip to content

Instantly share code, notes, and snippets.

@mepatterson
Created March 12, 2010 17:40
Show Gist options
  • Select an option

  • Save mepatterson/330563 to your computer and use it in GitHub Desktop.

Select an option

Save mepatterson/330563 to your computer and use it in GitHub Desktop.

Revisions

  1. mepatterson created this gist Mar 12, 2010.
    39 changes: 39 additions & 0 deletions environment.rb
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,39 @@
    # Be sure to restart your server when you modify this file

    # Specifies gem version of Rails to use when vendor/rails is not present
    RAILS_GEM_VERSION = '2.3.5' unless defined? RAILS_GEM_VERSION

    # Bootstrap the Rails environment, frameworks, and default configuration
    require File.join(File.dirname(__FILE__), 'boot')

    Rails::Initializer.run do |config|
    config.load_once_paths += %W( #{Rails.root}/lib )

    config.frameworks -= [:active_record]

    config.gem 'inherited_resources', :version => '1.0.3'
    config.gem 'erubis', :version => '2.6.5'
    config.gem 'jammit', :version => '0.4.4'
    config.gem 'mongo_mapper', :version => '0.7.0'
    config.gem 'httparty', :version => '0.5.2'
    config.gem 'warden', :version => '0.9.5'
    config.gem 'devise', :version => '1.0.1'
    config.gem 'nokogiri', :version => '1.4.1'
    config.gem 'haml', :version => '2.2.20'
    config.gem 'compass', :version => '0.8.17'
    config.gem 'uuidtools', :version => '2.1.1'
    config.gem 'liquid', :version => '2.0.0'
    config.gem 'formtastic', :version => '0.9.7'
    config.gem 'grip', :version => '0.7.2'
    config.gem 'fcoury-aasm', :version => '2.1.5', :lib => 'aasm'

    # for testing
    config.gem 'faker', :version => '0.3.1'
    config.gem 'shoulda', :version => '2.10.3'
    config.gem 'mocha'

    config.action_mailer.default_url_options = { :host => 'localdev:3000' }

    config.time_zone = 'UTC'

    end