forked from guard/guard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
46 lines (35 loc) · 1007 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
source 'https://www.rubygems.org'
gemspec
gem 'rake'
gem 'listen', :github => 'guard/listen'
# The development group will no be
# installed on Travis CI.
#
group :development do
gem 'guard-ronn'
gem 'yard'
gem 'redcarpet'
require 'rbconfig'
if RbConfig::CONFIG['target_os'] =~ /darwin/i
gem 'rb-fsevent', :require => false
if `uname`.strip == 'Darwin' && `sw_vers -productVersion`.strip >= '10.8'
gem 'terminal-notifier-guard', '~> 1.5.3', :require => false
else
gem 'growl', :require => false
end rescue Errno::ENOENT
elsif RbConfig::CONFIG['target_os'] =~ /linux/i
gem 'libnotify', '~> 0.8.0', :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
# The test group will be
# installed on Travis CI
#
group :test do
gem 'rspec'
gem 'guard-rspec'
end