haml--haml/Gemfile

22 lines
434 B
Ruby
Raw Normal View History

2015-10-06 12:21:20 +00:00
source 'https://rubygems.org'
# Specify your gem's dependencies in hamlit.gemspec
gemspec
2015-10-06 14:21:36 +00:00
2015-11-07 08:51:17 +00:00
# maintain compatibility against master
gem 'haml', github: 'haml/haml'
gem 'benchmark-ips', '2.3.0'
2015-10-12 00:37:56 +00:00
gem 'minitest-line'
2015-10-23 17:17:12 +00:00
gem 'pry-byebug'
2015-11-03 04:35:24 +00:00
if File.exist?('hamlit1')
gem 'hamlit1', path: 'hamlit1'
end
2015-11-22 17:53:56 +00:00
is_windows = RUBY_PLATFORM =~ /mswin|mingw|bccwin|wince/
if RUBY_VERSION >= '2.1.0' && !is_windows
2015-11-22 17:53:56 +00:00
gem 'lineprof'
gem 'stackprof'
end