forked from webmachine/webmachine-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
44 lines (38 loc) · 664 Bytes
/
Gemfile
File metadata and controls
44 lines (38 loc) · 664 Bytes
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
require 'rbconfig'
source 'https://rubygems.org'
gemspec
group :development do
gem "yard"
gem "rake"
end
group :test do
gem "rspec", '~> 3.0.0'
gem "rspec-its"
gem "rack"
gem "rack-test"
end
group :webservers do
gem 'reel', '~> 0.5.0'
gem 'http', '~> 0.6.0'
gem 'httpkit', :platform => [:mri, :rbx]
end
group :guard do
gem 'guard-rspec'
case RbConfig::CONFIG['host_os']
when /darwin/
gem 'rb-fsevent'
# gem 'growl_notify'
gem 'growl'
when /linux/
gem 'rb-inotify'
gem 'libnotify'
end
end
group :docs do
platform :mri_19, :mri_20 do
gem 'redcarpet'
end
end
platforms :jruby do
gem 'jruby-openssl'
end