forked from cucumber-attic/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
47 lines (41 loc) · 796 Bytes
/
Gemfile
File metadata and controls
47 lines (41 loc) · 796 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
45
46
47
source 'https://rubygems.org'
ruby '2.3.0'
# Core
gem 'sinatra', '1.4.7'
gem 'rack-reverse-proxy'
gem 'rack-contrib'
gem 'rack-rewrite'
gem 'slim', '3.0.6'
gem 'redcarpet', '3.3.4'
gem 'htmlentities', '4.3.4'
gem 'liquid', '3.0.6'
gem 'pygments.rb', '0.6.3'
gem 'asciidoctor', '1.5.4'
gem 'octokit', '~> 4.0'
gem 'icalendar'
# TODO: Need this to get timezone support with icalendar
#gem 'activesupport'
gem 'values'
# Server
gem 'puma'
# Assets
gem 'sass'
gem 'rake'
gem 'sprockets', '~> 3.0'
gem 'sprockets-helpers'
gem 'autoprefixer-rails', '6.3.6'
gem 'uglifier', '3.0.0'
# Monitoring
gem 'newrelic_rpm'
gem 'rollbar'
group :development do
gem 'foreman'
gem 'launchy'
end
group :test do
gem 'rspec'
gem 'nokogiri', '1.6.7.2'
gem 'cucumber'
gem 'chronic'
gem 'capybara'
end