Skip to content

Commit

Permalink
Moving dependencies to Bundler
Browse files Browse the repository at this point in the history
  • Loading branch information
Frédéric de Villamil committed Sep 3, 2010
1 parent d289575 commit 637472f
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 22 deletions.
23 changes: 23 additions & 0 deletions Gemfile
@@ -0,0 +1,23 @@
gem 'rails', '3.0.0.beta3'
gem 'htmlentities'
gem 'json'
gem 'calendar_date_select'
gem 'bluecloth', '~> 2.0.5'
gem 'coderay', '~> 0.9'
gem 'will_paginate', '~> 3.0.0'
gem 'RedCloth', '~> 4.2.2'
#gem 'fdv-actionwebservice', '2.3.8', :require => 'actionwebservice'
gem 'addressable', '~> 2.1.0', :require => 'addressable/uri'
gem 'mini_magick', '~> 1.3', :require => 'mini_magick'
gem 'uuidtools', '~>2.1.1'
gem 'flickr', '~> 1.0.2'
gem 'rubypants', '~> 0.2.0'
gem 'rails-app-installer', '~> 0.2.0"
group :test do
gem 'ruby-debug'
gem "factory_girl"
gem 'rspec'
gem 'rspec-rails'
gem 'flexmock'
end
18 changes: 0 additions & 18 deletions config/environment.rb
@@ -1,8 +1,5 @@
# 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.8' unless defined? RAILS_GEM_VERSION

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

Expand All @@ -15,21 +12,6 @@
config.action_controller.page_cache_directory = "#{RAILS_ROOT}/public/cache/"
config.cache_store=:file_store, "#{RAILS_ROOT}/public/cache/"

# Specify gems that this application depends on and have them installed with rake gems:install
config.gem 'htmlentities'
config.gem 'json'
config.gem 'calendar_date_select'
config.gem 'bluecloth', :version => '~> 2.0.5'
config.gem 'coderay', :version => '~> 0.8'
config.gem 'will_paginate', :version => '~> 2.3.11'
config.gem 'RedCloth', :version => '~> 4.2.2'
config.gem 'fdv-actionwebservice', :version => '2.3.8', :lib => 'actionwebservice'
config.gem 'addressable', :version => '~> 2.1.0', :lib => 'addressable/uri'
config.gem 'mini_magick', :version => '~> 1.3', :lib => 'mini_magick'
config.gem 'uuidtools', :version => '~>2.1.1'
config.gem 'flickr', :version => '~> 1.0.2'
config.gem 'rubypants', :version => '~> 0.2.0'

# I need the localization plugin to load first
# Otherwise, I can't localize plugins <= localization
# Forcing manually the load of the textfilters plugins fixes the bugs with apache in production.
Expand Down
5 changes: 1 addition & 4 deletions config/environments/test.rb
Expand Up @@ -27,8 +27,5 @@
# like if you have constraints or database-specific column types
# config.active_record.schema_format = :sql

Migrator.offer_migration_when_available = false
require 'ruby-debug'
config.gem "factory_girl"
config.gem 'rspec', :lib => false
config.gem 'rspec-rails', :lib => false
Migrator.offer_migration_when_available = false

0 comments on commit 637472f

Please sign in to comment.