haml--haml/Gemfile

26 lines
556 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
2015-10-06 12:21:20 +00:00
# Specify your gem's dependencies in hamlit.gemspec
gemspec
2015-10-06 14:21:36 +00: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-17 01:11:23 +00:00
gem 'maxitest'
2015-10-23 17:17:12 +00:00
gem 'pry-byebug'
2015-11-03 04:35:24 +00:00
# To resolve circular require warning
gem 'redcarpet', github: 'vmg/redcarpet'
if RUBY_PLATFORM !~ /mswin|mingw|bccwin|wince/
gem 'faml'
2015-11-22 17:53:56 +00:00
gem 'stackprof'
end