forked from netzpirat/guard-coffeescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
34 lines (27 loc) · 768 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
source 'https://rubygems.org'
gemspec
gem 'rake'
platform :ruby_18 do
gem 'json'
end
# The JS runtime is needed because ExecJS searches one when the module is loaded.
# This breaks travis builds even when the compiler is stubbed.
platform :jruby do
gem 'therubyrhino'
end
require 'rbconfig'
if RbConfig::CONFIG['target_os'] =~ /darwin/i
gem 'rb-fsevent', :require => false
gem 'ruby_gntp', :require => false
gem 'rb-fsevent', :require => false
elsif RbConfig::CONFIG['target_os'] =~ /linux/i
gem 'libnotify', :require => false
elsif RbConfig::CONFIG['target_os'] =~ /mswin|mingw/i
gem 'win32console', :require => false
gem 'rb-notifu', :require => false
gem 'wdm', :require => false
end
unless ENV['TRAVIS']
gem 'redcarpet'
gem 'yard'
end