haml--haml/Gemfile

24 lines
476 B
Ruby
Raw Normal View History

2015-10-06 12:21:20 +00: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 04:28:09 +00:00
# Specify your gem's dependencies in haml.gemspec
2015-10-06 12:21:20 +00:00
gemspec
2015-10-06 14:21:36 +00:00
gem 'benchmark-ips', '2.3.0'
2018-02-17 01:11:23 +00:00
gem 'maxitest'
gem 'pry'
2015-11-03 04:35:24 +00:00
2018-11-01 07:09:50 +00:00
if /java/ === RUBY_PLATFORM # JRuby
gem 'pandoc-ruby'
else
gem 'redcarpet'
2019-09-08 06:04:32 +00:00
if RUBY_PLATFORM !~ /mswin|mingw/ && RUBY_ENGINE != 'truffleruby'
2018-11-01 05:39:17 +00:00
gem 'stackprof'
end
2015-11-22 17:53:56 +00:00
end