mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
ed07fa8d70
* Only include simplecov gem on MRI 2.1 * Only include coveralls gem on MRI 2.1 * Remove rubinius-developer_tools, which is no longer needed since we are not running coveralls on rubinius * Do not try to require coveralls on rubinius (`platform :mri_21` includes rbx, so we need to check if Rubinius is defined)
20 lines
241 B
Ruby
20 lines
241 B
Ruby
source "https://rubygems.org"
|
|
gemspec
|
|
|
|
group :docs do
|
|
gem "yard", "~> 0.8.0"
|
|
gem "maruku"
|
|
end
|
|
|
|
platform :mri do
|
|
gem "ruby-prof"
|
|
end
|
|
|
|
platform :mri_21 do
|
|
gem "simplecov"
|
|
end
|
|
|
|
platform :rbx do
|
|
gem 'rubysl', '~> 2.0'
|
|
gem 'racc'
|
|
end
|