mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
ok ... guard needs these dependencies earlier
This commit is contained in:
parent
ef98b60184
commit
802330269d
2 changed files with 2 additions and 3 deletions
4
Gemfile
4
Gemfile
|
@ -101,8 +101,8 @@ group :test, :development do
|
|||
gem 'guard-spork', require: false
|
||||
gem 'jasminerice'
|
||||
gem 'mocha', require: false
|
||||
gem 'rb-fsevent', require: false
|
||||
gem 'rb-inotify', '~> 0.9', require: false
|
||||
gem 'rb-fsevent', require: RUBY_PLATFORM =~ /darwin/i ? 'rb-fsevent' : false
|
||||
gem 'rb-inotify', '~> 0.9', require: RUBY_PLATFORM =~ /linux/i ? 'rb-inotify' : false
|
||||
gem 'rspec-rails', require: false
|
||||
gem 'shoulda', require: false
|
||||
gem 'simplecov', require: false
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
require 'rb-inotify' if RUBY_PLATFORM.include?('linux')
|
||||
require 'terminal-notifier-guard' if RUBY_PLATFORM.include?('darwin')
|
||||
|
||||
phantom_path = File.expand_path('~/phantomjs/bin/phantomjs')
|
||||
|
|
Loading…
Reference in a new issue