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

24 lines
493 B
Ruby

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
# Specify your gem's dependencies in hamlit.gemspec
gemspec
gem 'benchmark-ips', '2.3.0'
gem 'maxitest'
gem 'pry'
if /java/ === RUBY_PLATFORM # JRuby
gem 'pandoc-ruby'
else
gem 'redcarpet'
if RUBY_PLATFORM !~ /mswin|mingw/ && RUBY_ENGINE != 'truffleruby'
gem 'faml'
gem 'stackprof'
end
end