forked from samvera/samvera.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
34 lines (29 loc) · 823 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
source "https://rubygems.org"
# gem 'wdm'
# gem 'documentation-theme-jekyll', github: 'elrayle/documentation-theme-jekyll', branch: 'gh-pages'
# gem 'github-pages', group: :jekyll_plugins
gem 'ffi', '>= 1.9.24'
gem 'github-pages' # plugins will not run if group: :jekyll_plugins is used
gem 'html-proofer'
gem "jekyll", ">= 3.6.3"
gem 'rake'
gem 'nokogiri', '>=1.8.2'
gem 'rubyzip', '>= 1.2.2'
group :development, :test do
gem "rspec"
gem "selenium-webdriver"
gem "chromedriver-helper"
gem "capybara"
gem 'launchy'
gem "rack-jekyll"
gem "pry-byebug"
gem 'rspec_junit_formatter'
end
if ENV['RAILS_VERSION']
if ENV['RAILS_VERSION'] == 'edge'
gem 'rails', github: 'rails/rails'
ENV['ENGINE_CART_RAILS_OPTIONS'] = '--edge --skip-turbolinks'
else
gem 'rails', ENV['RAILS_VERSION']
end
end