Rakefile in honkster-bin-0.6.3.3 vs Rakefile in honkster-bin-0.6.3.4

- old
+ new

@@ -7,21 +7,16 @@ Spec::Rake::SpecTask.new(:all) do |t| t.ruby_opts << '-rubygems' t.verbose = true end - task :as2 do - sh 'ACTIVE_SUPPORT_VERSION="<= 2.3.8" rake spec:all' - end - task :as3 do sh 'ACTIVE_SUPPORT_VERSION=">= 3.0.0.beta3" rake spec:all' end end desc 'Runs all specs against Active Support 2 and 3' task :spec do - Rake::Task['spec:as2'].invoke Rake::Task['spec:as3'].invoke end task :default => :spec