2015-10-06 08:21:20 -04:00
|
|
|
source 'https://rubygems.org'
|
|
|
|
|
2017-04-22 03:54:27 -04:00
|
|
|
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
|
|
|
|
2016-12-31 00:45:34 -05:00
|
|
|
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.2.2')
|
|
|
|
gem 'rack', '< 2'
|
|
|
|
end
|
|
|
|
|
2015-10-29 12:16:18 -04:00
|
|
|
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'
|
2019-09-01 02:02:54 -04:00
|
|
|
gem 'redcarpet'
|
2017-12-22 06:02:46 -05:00
|
|
|
|
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
|