compass/Gemfile
2011-12-10 13:07:21 -05:00

34 lines
647 B
Ruby

source :rubygems
gemspec
gem "cucumber", "~> 1.1.0"
gem "rspec", "~>2.0.0"
gem "rails", "~>3.0.0.rc"
gem "compass-validator", "3.0.1"
gem "css_parser", "~> 1.0.1"
gem "sass", "~> 3.1"
gem "haml", "~> 3.1"
gem "rubyzip"
gem "livereload"
gem 'mocha'
gem 'timecop'
gem 'diff-lcs', '~> 1.1.2'
gem 'rake', '~> 0.9.2'
# Warning becarful adding OS dependant gems above this line it will break the CI server please
# place them below so they are excluded
unless ENV["CI"]
gem 'rb-fsevent'
gem 'growl_notify'
gem "ruby-prof", :platform => :mri_18
gem "rcov", :platform => :mri_18
gem 'guard'
gem 'guard-test'
gem 'guard-cucumber'
end