Skip to content

Commit

Permalink
remove some gem requires that break under ruby 1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
leword committed Apr 22, 2010
1 parent cf6a731 commit 172f787
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 7 deletions.
5 changes: 2 additions & 3 deletions config/environments/test.rb
Expand Up @@ -20,9 +20,8 @@

config.log_level = :warn

config.gem "rspec-rails", :version => "~>1.2.6", :lib => false
config.gem "webrat", :version => "~>0.4.4", :lib => false
config.gem "cucumber", :version => "~>0.3.9", :lib => false
config.gem "webrat"
config.gem "cucumber"
config.gem 'timecop'
config.gem 'spork'
config.gem 'nokogiri'
Expand Down
1 change: 0 additions & 1 deletion config/wagn_initializer.rb
Expand Up @@ -11,7 +11,6 @@ def set_default_rails_config config
config.frameworks -= [ :action_web_service ]
config.gem "uuid"
config.gem "json"
config.gem "fastercsv"
unless ENV['RUN_CODE_RUN']
config.gem "hoptoad_notifier"
end
Expand Down
2 changes: 0 additions & 2 deletions lib/tasks/bootstrap.rake
@@ -1,4 +1,3 @@
require 'ruby-debug'
namespace :wagn do
desc "(re) create a wagn database from scratch"
task :create => :environment do
Expand Down Expand Up @@ -41,7 +40,6 @@ namespace :wagn do

desc "load bootstrap fixtures into db"
task :load => :environment do
require 'ruby-debug'

require 'active_record/fixtures'
#ActiveRecord::Base.establish_connection(RAILS_ENV.to_sym)
Expand Down
1 change: 0 additions & 1 deletion test/test_helper.rb
@@ -1,5 +1,4 @@
require 'rubygems'
require 'ruby-debug'

unless defined? TEST_ROOT
ENV["RAILS_ENV"] = "test"
Expand Down

0 comments on commit 172f787

Please sign in to comment.