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

31 lines
705 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
2015-10-06 08:21:20 -04:00
# Specify your gem's dependencies in hamlit.gemspec
gemspec
2015-10-06 10:21:36 -04:00
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.2.2')
gem 'rack', '< 2'
end
gem 'benchmark-ips', '2.3.0'
2018-02-16 20:11:23 -05:00
gem 'maxitest'
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
2018-11-01 01:39:17 -04:00
gem 'pry-byebug'
gem 'redcarpet'
2019-09-08 02:04:32 -04:00
if RUBY_PLATFORM !~ /mswin|mingw/ && RUBY_ENGINE != 'truffleruby'
2019-09-01 02:34:32 -04:00
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.7.0') # Travis cannot compile ruby.h with C++
gem 'faml'
end
2018-11-01 01:39:17 -04:00
gem 'stackprof'
end
2015-11-22 12:53:56 -05:00
end