Skip to content

Commit

Permalink
Trying to fix stupid version dependencies in Bundler
Browse files Browse the repository at this point in the history
  • Loading branch information
rex committed Feb 28, 2014
1 parent 4e6ac80 commit 3586824
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions Gemfile
Expand Up @@ -3,24 +3,24 @@ source "http://rubygems.org"
# Add dependencies required to use your gem here.
# Example:
# gem "activesupport", ">= 2.3.5"
gem "thor", '~> 0.17', ">= 0.17.1" # http://whatisthor.com/
gem "highline", '~> 1.5', ">= 1.5.1" # https://github.com/JEG2/highline
gem "mustache", '~> 0.99', "~> 0.99.4" # https://github.com/defunkt/mustache
gem "terminal-table", '~> 1.4', '>= 1.4.5' # https://github.com/visionmedia/terminal-table
gem "ruby-progressbar", '~> 1.4', '>= 1.4.0' # https://github.com/jfelchner/ruby-progressbar
gem "thor", '~> 0.17' #, ">= 0.17.1" # http://whatisthor.com/
gem "highline", '~> 1.5' #, ">= 1.5.1" # https://github.com/JEG2/highline
gem "mustache", '~> 0.99' #, "~> 0.99.4" # https://github.com/defunkt/mustache
gem "terminal-table", '~> 1.4' #, '>= 1.4.5' # https://github.com/visionmedia/terminal-table
gem "ruby-progressbar", '~> 1.4' #, '>= 1.4.0' # https://github.com/jfelchner/ruby-progressbar

# gem "god" # http://godrb.com/ <<<<< Still not sure about this. Maybe I can make it work in this for something awesome.

# Add dependencies to develop your gem here.
# Include everything needed to run rake, tests, features, etc.
group :development do
gem 'coveralls', '~> 0.7', '>= 0.7.0'
gem 'coveralls', '~> 0.7' #, '>= 0.7.0'
gem "rake", "~> 10.0"
gem "shoulda", "~> 3.0"
gem "rdoc", "~> 4.0"
gem "bundler", "~> 1.0"
gem "jeweler", '~> 2.0', ">= 2.0.1"
gem "simplecov", '~> 0.8', ">= 0.8.0"
gem "jeweler", '~> 2.0' #, ">= 2.0.1"
gem "simplecov", '~> 0.8' #, ">= 0.8.0"
# gem "ronn" # https://github.com/rtomayko/ronn
# gem "fakefs" # https://github.com/defunkt/fakefs
end
16 changes: 8 additions & 8 deletions Gemfile.lock
Expand Up @@ -91,14 +91,14 @@ PLATFORMS

DEPENDENCIES
bundler (~> 1.0)
coveralls (~> 0.7, >= 0.7.0)
highline (~> 1.5, >= 1.5.1)
jeweler (~> 2.0, >= 2.0.1)
mustache (~> 0.99.4, ~> 0.99)
coveralls (~> 0.7)
highline (~> 1.5)
jeweler (~> 2.0)
mustache (~> 0.99)
rake (~> 10.0)
rdoc (~> 4.0)
ruby-progressbar (~> 1.4, >= 1.4.0)
ruby-progressbar (~> 1.4)
shoulda (~> 3.0)
simplecov (~> 0.8, >= 0.8.0)
terminal-table (~> 1.4, >= 1.4.5)
thor (~> 0.17, >= 0.17.1)
simplecov (~> 0.8)
terminal-table (~> 1.4)
thor (~> 0.17)

0 comments on commit 3586824

Please sign in to comment.