-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathGemfile
More file actions
32 lines (27 loc) · 768 Bytes
/
Gemfile
File metadata and controls
32 lines (27 loc) · 768 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
source 'https://rubygems.org'
ruby File.read('.ruby-version').chomp
gem 'redcarpet'
gem 'thwait'
gem 'travis-conditions', git: 'https://github.com/travis-ci/travis-conditions'
group :web do
gem 'puma', '~> 6.4', '>= 6.4.3'
gem 'rack', '>= 2.2.20'
gem 'sinatra', '~> 4.2'
gem 'sinatra-contrib'
gem 'rack-cors'
gem 'rack-ssl-enforcer', '~> 0.2.9'
gem 'sentry-raven', '~> 3.1.2'
gem 'travis-config', git: 'https://github.com/travis-ci/travis-config'
gem 'travis-metrics', git: 'https://github.com/travis-ci/travis-metrics', ref: 'sf-unfork'
end
group :test do
gem 'dpl', git: 'https://github.com/travis-ci/dpl.git'
gem 'json-schema'
gem 'pry'
gem 'rack-test'
gem 'rake'
gem 'rexml', '>= 3.3.9'
gem 'rspec'
gem 'webmock'
end
gemspec