File: Gemfile

package info (click to toggle)
ruby-compass 0.12.2~dfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 8,308 kB
  • sloc: ruby: 10,474; makefile: 42; xml: 14
file content (31 lines) | stat: -rw-r--r-- 648 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
source :rubygems

gemspec

unless ENV['PKG']
gem "cucumber", "~> 1.1.4"
gem "rspec", "~>2.0.0"
gem "rails", "~> 3.1"
gem "compass-validator", "3.0.1"
gem "css_parser", "~> 1.0.1"
gem "sass", "~> 3.1"
gem "haml", "~> 3.1"
gem "rubyzip"
gem 'mocha'
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'
  gem 'packager'
end
end