compass/Gemfile

32 lines
656 B
Ruby
Raw Normal View History

source :rubygems
gemspec
unless ENV['PKG']
gem "cucumber", "~> 1.1.4"
2010-10-13 00:33:20 +00:00
gem "rspec", "~>2.0.0"
gem "rails", "~> 3.1"
gem "compass-validator", "3.0.1"
2010-10-17 18:06:52 +00:00
gem "css_parser", "~> 1.0.1"
2012-03-12 06:17:56 +00:00
gem "sass", "~> 3.2.0.alpha.93"
2011-04-27 03:58:26 +00:00
gem "haml", "~> 3.1"
gem "rubyzip"
2011-03-23 01:19:19 +00:00
gem 'mocha'
2011-04-28 03:18:52 +00:00
gem 'diff-lcs', '~> 1.1.2'
gem 'rake', '~> 0.9.2'
2011-04-28 03:18:52 +00:00
2011-12-10 18:07:21 +00:00
# Warning becarful adding OS dependant gems above this line it will break the CI server please
# place them below so they are excluded
2011-12-10 01:42:31 +00:00
unless ENV["CI"]
gem 'rb-fsevent'
2012-03-23 15:35:22 +00:00
gem 'ruby_gntp'
2011-12-10 18:07:21 +00:00
gem "ruby-prof", :platform => :mri_18
gem "rcov", :platform => :mri_18
gem 'guard'
gem 'guard-test'
gem 'guard-cucumber'
gem 'packager'
end
2011-04-29 05:02:51 +00:00
end