Skip to content

Commit

Permalink
Fix bundler dependency issue
Browse files Browse the repository at this point in the history
Earlier versions of bundler don't like the way I had specificed the
bundler dependency requirement for development.
  • Loading branch information
soupmatt committed Nov 22, 2011
1 parent f90a230 commit 363ab33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -3,7 +3,7 @@ source "http://rubygems.org"
group :development do
gem "json", "~> 1.6.1"
gem "rspec", "~> 2.7.0"
gem "bundler", ">= 1.1.rc"
gem "bundler", ">= 1.0"
gem "jeweler", "~> 1.6.2"
gem "actionpack"
gem "rake"
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Expand Up @@ -30,7 +30,7 @@ PLATFORMS
DEPENDENCIES
actionpack
activesupport
bundler (>= 1.1.rc)
bundler (>= 1.0)
jeweler (~> 1.6.2)
json (~> 1.6.1)
rake
Expand Down

0 comments on commit 363ab33

Please sign in to comment.