forked from travis-ci/docs-travis-ci-com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
53 lines (39 loc) · 1.04 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
source 'https://rubygems.org'
ruby '2.6.3'
gem 'faraday'
gem 'html-proofer', '~> 3.0'
gem 'jekyll', '>=3.1.6'
gem 'jekyll-paginate'
gem 'jekyll-redirect-from'
gem 'puma'
gem 'pry', group: :test
gem 'rack', '~> 1.0'
gem 'rack-jekyll'
gem 'rack-ssl-enforcer'
gem 'rake'
gem 'rdiscount', '>=2.2.0.1'
gem 'rubocop', group: :test
# All of this is for Slate / middleman
gem "middleman", '~> 3.0'
# For syntax highlighting
gem "middleman-syntax"
# Plugin for middleman to generate GitHub pages
gem 'middleman-gh-pages'
# Live-reloading plugin
gem "middleman-livereload"
# Needed for Slate / middleman
gem 'redcarpet'
# Cross-templating language block fix for Ruby 1.8
platforms :mri_18 do
gem "ruby18_source_location"
end
gem 'therubyracer', :platforms => :ruby
# Remove warnings according to https://github.com/Compass/compass/pull/2088
git 'https://github.com/ably-forks/compass', branch: 'sass-deprecation-warning-fix', ref: '3861c9d' do
gem 'compass-core'
end
group :dpl do
gem 'dpl', git: 'https://github.com/travis-ci/dpl'
gem 'cl'
end
gem 'netrc'