forked from puppetlabs/puppet-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
31 lines (26 loc) · 631 Bytes
/
Copy pathGemfile
File metadata and controls
31 lines (26 loc) · 631 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
source 'https://rubygems.org/'
gemspec :name => 'puppet_docs'
gem 'versionomy'
gem 'rake'
gem 'rack', '~> 1.6' # We don't want Rack 2.0 because our builders can't handle it (and it's probably incompatible, too)
gem 'git'
gem 'json'
group(:build_site) do
gem 'jekyll', '3.0.1'
gem 'kramdown', '1.12.0'
gem 'vlad'
gem 'vlad-git'
gem 'listen', '~> 3.0.0' # Preserve ability to run on Ruby 2.0, since listen 3.1 requires Ruby ~> 2.2.
end
group(:generate_references) do
gem 'ronn'
gem 'yard'
gem 'rdoc'
end
group(:unknown) do
gem 'maruku'
gem 'activerecord', '~>3'
end
# group(:debug) do
# gem 'byebug'
# end