-
Notifications
You must be signed in to change notification settings - Fork 18
/
Gemfile
63 lines (52 loc) · 1.32 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
source "https://rubygems.org"
gemspec
if File.exists?('Gemfile.local') then
eval File.read('Gemfile.local'), nil, 'Gemfile.local'
end
platforms :ruby do
gem 'mysql2'
end
platforms :jruby do
gem 'jdbc-mysql'
gem 'jmx4r'
end
group :development do
gem 'redcarpet', platforms: :ruby
gem 'yard'
gem 'geminabox'
gem 'ronn', platforms: :ruby
gem 'chef-zero', '~> 1.5.0'
gem 'pry-nav'
gem 'ruby-prof', platforms: :ruby
end
group :test do
gem 'rack-test'
gem 'rake', '>= 0.9.2.2'
gem 'rspec', '< 2.99.0'
gem 'webmock'
gem 'spork'
gem 'aruba'
gem 'cucumber'
gem 'coolline'
gem 'fuubar'
gem 'json_spec'
gem 'guard'
gem 'guard-cucumber'
gem 'guard-rspec'
gem 'guard-spork'
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 'rb-notifu', '>= 0.0.4', require: false
gem 'wdm', require: false
gem 'win32console', require: false
end
end