-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
37 lines (31 loc) · 875 Bytes
/
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
source 'https://rubygems.org'
gem 'rake'
gem 'middleman', '~> 3.4.1'
gem 'middleman-livereload'
gem 'middleman-s3_sync'
gem 'middleman-cloudfront'
gem 'middleman-autoprefixer'
gem 'middleman-minify-html'
gem 'middleman-sprockets'
gem "middleman-es6", git: "https://github.com/vast/middleman-es6"
gem 'uglifier'
gem "contentful_middleman", '~> 2.1.2'
gem 'middleman-syntax'
# support re-writing in the middleman configuration
gem 'rack-rewrite'
gem 'string-urlize'
gem 'aws-s3'
gem 'middleman-remover'
# support whitelist-sanitizing content (remove script-tags, etc.)
gem 'rails-html-sanitizer'
gem 'stopwords-filter', require: 'stopwords'
# ensure we have secure version
gem 'nokogiri', '>= 1.10.8'
# tests
group :test do
gem 'capybara'
gem 'capybara-selenium'
gem 'chromedriver-helper' # for headless chrome
gem 'rspec'
gem 'guard-rspec', require: false
end