1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00
haml--haml/Gemfile

24 lines
476 B
Text
Raw Normal View History

2015-10-06 08:21:20 -04:00
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
2021-06-08 00:28:09 -04:00
# Specify your gem's dependencies in haml.gemspec
2015-10-06 08:21:20 -04:00
gemspec
2015-10-06 10:21:36 -04:00
gem 'benchmark-ips', '2.3.0'
2018-02-16 20:11:23 -05:00
gem 'maxitest'
gem 'pry'
2015-11-02 23:35:24 -05:00
2018-11-01 03:09:50 -04:00
if /java/ === RUBY_PLATFORM # JRuby
gem 'pandoc-ruby'
else
gem 'redcarpet'
2019-09-08 02:04:32 -04:00
if RUBY_PLATFORM !~ /mswin|mingw/ && RUBY_ENGINE != 'truffleruby'
2018-11-01 01:39:17 -04:00
gem 'stackprof'
end
2015-11-22 12:53:56 -05:00
end