forked from guard/guard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
42 lines (33 loc) · 857 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
source 'https://rubygems.org'
gemspec
gem 'rake'
gem 'listen', '~> 1.3.1'
group :development, :test do
# This plugin is required in the tests!
gem 'guard-rspec', require: false
end
# The development group will no be
# installed on Travis CI.
#
group :development do
gem 'yard'
gem 'redcarpet'
gem 'pimpmychangelog'
gem 'guard-ronn', require: false
require 'rbconfig'
if RbConfig::CONFIG['target_os'] =~ /darwin/i
gem 'ruby_gntp', require: false
elsif RbConfig::CONFIG['target_os'] =~ /linux/i
gem 'libnotify', '~> 0.8.0', require: false
elsif RbConfig::CONFIG['target_os'] =~ /mswin|mingw/i
gem 'win32console', require: false
gem 'rb-notifu', '>= 0.0.4', require: false
end
end
# The test group will be
# installed on Travis CI
#
group :test do
gem 'rspec', '>= 2.14.1'
gem 'coveralls', require: false
end