-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
42 lines (35 loc) · 1.08 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
source 'https://rubygems.org'
gemspec
tilt_version = ENV['TILT_VERSION']
rack_version = ENV['RACK_VERSION']
sprockets_version = ENV['SPROCKETS_VERSION']
# Stick with older racc until
# https://github.com/tenderlove/racc/issues/22
# is solved.
gem 'racc', '< 1.4.10', platform: :jruby
gem 'json', '< 1.8.1', platform: :ruby if RUBY_VERSION.to_f == 2.1
gem 'rack-test', '< 0.8' if RUBY_VERSION.to_f <= 2.0
gem 'rubysl', platform: :rbx
gem 'coveralls', platform: :mri
gem 'puma' # Some browsers have problems with WEBrick
gem 'rack', rack_version if rack_version
gem 'tilt', tilt_version if tilt_version
gem 'sprockets', sprockets_version if sprockets_version
group :repl do
gem 'therubyracer', platform: :mri, require: false
gem 'therubyrhino', platform: :jruby, require: false
end
group :browser do
gem 'selenium-webdriver', '>= 3.0.0.beta3.1', platform: :mri
end
group :development do
gem 'rb-fsevent'
gem 'guard', require: false
if RUBY_PLATFORM =~ /darwin/
gem 'terminal-notifier-guard'
gem 'terminal-notifier'
end
end unless ENV['CI']
group :doc do
gem 'redcarpet'
end