2013-04-12 16:19:47 -07:00
|
|
|
source 'https://rubygems.org'
|
2011-12-29 15:09:51 -08:00
|
|
|
|
2013-01-25 22:31:40 -08:00
|
|
|
# Build and doc tools
|
2013-05-08 11:37:55 -07:00
|
|
|
gem "rake", "~> 10.0.3", :require => false
|
|
|
|
gem "yard", "~> 0.8.0", :require => false
|
2012-05-10 16:07:11 -07:00
|
|
|
|
2013-01-25 22:31:40 -08:00
|
|
|
# Test tools
|
2013-04-22 22:22:36 -07:00
|
|
|
gem "cucumber", "~> 1.3.1"
|
2013-04-14 09:24:35 -07:00
|
|
|
gem "fivemat"
|
2013-01-25 22:31:40 -08:00
|
|
|
gem "aruba", "~> 0.5.1"
|
|
|
|
gem "rspec", "~> 2.12"
|
2013-05-28 22:11:57 -07:00
|
|
|
gem "simplecov"
|
2012-05-02 15:27:47 -07:00
|
|
|
|
2013-01-25 22:31:40 -08:00
|
|
|
# Optional middleman dependencies, included for tests
|
2013-05-08 11:37:55 -07:00
|
|
|
gem "haml", "~> 4.0.0", :require => false # Make sure to use Haml 4 for tests
|
2013-04-12 22:17:36 -07:00
|
|
|
gem "sinatra", :require => false
|
2013-02-24 13:55:59 -08:00
|
|
|
gem "slim", :require => false
|
2013-03-18 14:21:06 -07:00
|
|
|
gem "liquid", :require => false
|
|
|
|
gem "less", :require => false
|
2013-02-24 13:55:59 -08:00
|
|
|
gem "stylus", :require => false
|
2012-05-02 16:39:56 -07:00
|
|
|
|
2013-01-25 22:31:40 -08:00
|
|
|
platforms :ruby do
|
2013-03-18 14:21:06 -07:00
|
|
|
gem "therubyracer"
|
2013-02-24 13:55:59 -08:00
|
|
|
gem "redcarpet"
|
2013-01-25 22:31:40 -08:00
|
|
|
end
|
2013-01-11 17:00:41 -08:00
|
|
|
|
2013-01-25 22:31:40 -08:00
|
|
|
platforms :jruby do
|
2013-03-18 14:11:48 -07:00
|
|
|
gem "therubyrhino"
|
2011-12-29 15:09:51 -08:00
|
|
|
end
|
|
|
|
|
2013-05-23 15:59:26 -07:00
|
|
|
# Code Quality
|
|
|
|
gem "cane", :platforms => [:mri_19, :mri_20], :require => false
|
2013-05-30 13:38:52 -04:00
|
|
|
gem 'coveralls', :require => false
|
2013-05-23 15:59:26 -07:00
|
|
|
|
2013-01-25 22:31:40 -08:00
|
|
|
# Middleman itself
|
2011-12-29 15:09:51 -08:00
|
|
|
gem "middleman-core", :path => "middleman-core"
|
2013-05-23 15:26:33 -07:00
|
|
|
gem "middleman-more", :path => "middleman-more"
|
2013-01-25 22:31:40 -08:00
|
|
|
gem "middleman-sprockets", :github => "middleman/middleman-sprockets"
|
|
|
|
gem "middleman", :path => "middleman"
|