Commit a839cb427cc158330297fd89fbf40321d41349a4
1 parent
8795f67f
Exists in
master
and in
4 other branches
Fix require calls in gemfile
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
Gemfile
| ... | ... | @@ -121,9 +121,9 @@ group :development, :test do |
| 121 | 121 | gem 'guard-cucumber' |
| 122 | 122 | |
| 123 | 123 | # Notification |
| 124 | - gem 'rb-fsevent', :require => darwin_only('growl') | |
| 124 | + gem 'rb-fsevent', :require => darwin_only('rb-fsevent') | |
| 125 | 125 | gem 'growl', :require => darwin_only('growl') |
| 126 | - gem 'rb-inotify', :require => linux_only('rb-fsevent') | |
| 126 | + gem 'rb-inotify', :require => linux_only('rb-inotify') | |
| 127 | 127 | end |
| 128 | 128 | |
| 129 | 129 | group :test do | ... | ... |