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

30 lines
705 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
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.2.2')
gem 'rack', '< 2'
end
gem 'benchmark-ips', '2.3.0'
gem 'maxitest'
if /java/ === RUBY_PLATFORM # JRuby
gem 'pandoc-ruby'
else
gem 'pry-byebug'
gem 'redcarpet'
if RUBY_PLATFORM !~ /mswin|mingw/ && RUBY_ENGINE != 'truffleruby'
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.7.0') # Travis cannot compile ruby.h with C++
gem 'faml'
end
gem 'stackprof'
end
end