-
Notifications
You must be signed in to change notification settings - Fork 12
/
Gemfile
32 lines (26 loc) · 1.14 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
source 'https://rubygems.org'
# Runtime dependencies are defined in middleman-asciidoc.gemspec
gemspec
# NOTE to run tests on JRuby, use a version of middleman-core that:
# a) doesn't depend on fast_blank and
# b) fixes the misplaced chmod command
git 'https://github.com/middleman/middleman.git', ref: '0936519ab9fc28cf1c07dc8ed555d97d96c8c176' do
gem 'middleman-core'
end if RUBY_ENGINE == 'jruby'
# Build and doc tools
gem 'rake', '~> 12.3.0', require: false
# Test tools
gem 'aruba', '~> 0.14.0', require: false
gem 'capybara', '~> 2.16.0', require: false
gem 'cucumber', '~> 3.1.0', require: false
# Code coverage tools
gem 'simplecov', '~> 0.15.0', require: false
# Additional libraries for testing
# Middleman itself (use for testing against development version)
#gem 'middleman-core', :github => 'middleman/middleman', :branch => 'master'
gem 'middleman-blog', '~> 4.0.2', require: false
# NOTE middleman-cli required by middleman-blog
gem 'middleman-cli', '~> 4.2.0', require: false
gem 'asciidoctor-diagram', require: false
# NOTE Windows does not include zoneinfo files, so load tzinfo-data gem
gem 'tzinfo-data', platform: [ :x64_mingw, :mingw ]