Skip to content

Commit

Permalink
Fix Gemfile to work with 1.8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
yasuhito committed Oct 14, 2013
1 parent 96fe758 commit 6c54209
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ group :development do
gem "flay", "~> 2.4.0"
gem "flog", "~> 4.1.2"
gem "fuubar", "~> 1.2.1"
gem "guard", "~> 2.0.5"
gem "guard", "~> 1.8.3" if RUBY_VERSION < "1.9.0"
gem "guard", "~> 2.0.5" if RUBY_VERSION >= "1.9.0"
gem "guard-cucumber", "~> 1.4.0"
gem "guard-rspec", "~> 4.0.1"
gem "guard-rspec", "~> 3.1.0" if RUBY_VERSION < "1.9.0"
gem "guard-rspec", "~> 4.0.1" if RUBY_VERSION >= "1.9.0"
gem "rb-fchange", "~> 0.0.6", :require => false
gem "rb-fsevent", "~> 0.9.3", :require => false
gem "rb-inotify", "~> 0.9.2", :require => false
Expand Down

0 comments on commit 6c54209

Please sign in to comment.