forked from rtomayko/tilt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
46 lines (39 loc) · 854 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
38
39
40
41
42
43
44
45
source 'https://rubygems.org'
gem 'yard', '~> 0.8.6'
gem 'ronn', '~> 0.7.3'
gem 'minitest', '~> 5.0'
gem 'rake'
group :engines do
gem 'execjs', '~> 2.0.0'
gem 'asciidoctor', '>= 0.1.0'
gem 'builder'
gem 'coffee-script'
gem 'contest'
gem 'creole'
gem 'erubis'
gem 'haml', '>= 2.2.11', '< 4'
gem 'kramdown'
gem 'less'
gem 'liquid'
gem 'markaby'
gem 'maruku'
gem 'nokogiri' if RUBY_VERSION > '1.9.2'
gem 'radius'
gem 'sass'
gem 'rdoc', (ENV['RDOC_VERSION'] || '> 0')
platform :ruby do
gem 'wikicloth'
gem 'yajl-ruby'
gem 'redcarpet' if RUBY_VERSION > '1.8.7'
gem 'rdiscount', '>= 2.1.6' if RUBY_VERSION != '1.9.2'
gem 'RedCloth'
end
platform :mri do
gem 'therubyracer'
gem 'bluecloth' if ENV['BLUECLOTH']
end
end
## WHY do I have to do this?!?
platform :rbx do
gem 'rubysl'
end