Skip to content

Commit

Permalink
DRY up Gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
bkeepers committed Sep 11, 2010
1 parent 83fe8d8 commit d04dd79
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 16 deletions.
11 changes: 1 addition & 10 deletions Gemfile
@@ -1,11 +1,2 @@
source 'http://rubygems.org'
gem 'activesupport', '~>3'
gem 'daemons'

group :development do
gem 'rspec'
gem 'rake'
gem 'rails', '~>3'
gem 'sqlite3-ruby'
gem 'ruby-debug'
end
gemspec
14 changes: 11 additions & 3 deletions Gemfile.lock
@@ -1,3 +1,10 @@
PATH
remote: .
specs:
delayed_job (2.1.0.pre2)
activesupport (~> 3.0)
daemons

GEM
remote: http://rubygems.org/
specs:
Expand Down Expand Up @@ -37,7 +44,7 @@ GEM
abstract (>= 1.0.0)
i18n (0.4.1)
linecache (0.43)
mail (2.2.5)
mail (2.2.6)
activesupport (>= 2.3.6)
mime-types
treetop (>= 1.4.5)
Expand Down Expand Up @@ -78,9 +85,10 @@ PLATFORMS
ruby

DEPENDENCIES
activesupport (~> 3)
activesupport (~> 3.0)
daemons
rails (~> 3)
delayed_job!
rails (~> 3.0)
rake
rspec
ruby-debug
Expand Down
8 changes: 5 additions & 3 deletions delayed_job.gemspec
Expand Up @@ -16,11 +16,13 @@ This gem is collectiveidea's fork (http://github.com/collectiveidea/delayed_job)
s.rdoc_options = ["--main", "README.textile", "--inline-source", "--line-numbers"]
s.require_paths = ["lib"]
s.test_files = Dir.glob('spec/**/*')

s.add_runtime_dependency 'daemons'
s.add_runtime_dependency 'activesupport', '~>3.0'
s.add_runtime_dependency 'activesupport', '~>3.0'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rake'
s.add_development_dependency 'rails', '~>3.0'
s.add_development_dependency 'sqlite3-ruby'
s.add_development_dependency 'activerecord'
s.add_development_dependency 'ruby-debug'
end

0 comments on commit d04dd79

Please sign in to comment.