forked from guard/guard-rspec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
31 lines (24 loc) · 806 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
source "https://rubygems.org"
gemspec
gem 'rake'
gem 'listen'
# The development group will no be
# installed on Travis CI.
#
group :development do
require 'rbconfig'
if RbConfig::CONFIG['target_os'] =~ /darwin/i
gem 'growl', :require => false
gem 'rb-fsevent', :require => false
if `uname`.strip == 'Darwin' && `sw_vers -productVersion`.strip >= '10.8'
gem 'terminal-notifier-guard', '~> 1.5.3', :require => false
end rescue Errno::ENOENT
elsif RbConfig::CONFIG['target_os'] =~ /linux/i
gem 'libnotify', '~> 0.7.1', :require => false
gem 'rb-inotify', :require => false
elsif RbConfig::CONFIG['target_os'] =~ /mswin|mingw/i
gem 'win32console', :require => false
gem 'rb-notifu', '>= 0.0.4', :require => false
gem 'wdm', :require => false
end
end