-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
33 lines (28 loc) · 827 Bytes
/
Gemfile
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
32
33
source "https://rubygems.org"
gemspec
if RUBY_VERSION =~ /^1\.8/ || RUBY_VERSION =~ /^1\.9\.[012]$/
gem 'rake', '~> 10.5.0'
else
gem 'rake', '~> 11.0'
end
# Pin this version since Rubocop occasionally adds new cops in
# incremental releases and we don't want out builds going red because
# of that.
unless RUBY_VERSION =~ /^1\.8/
unless RUBY_VERSION < '1.9.3'
gem 'rubocop', '= 0.33.0'
else
gem 'rubocop', '= 0.18.0'
end
end
if RUBY_VERSION =~ /^1\.8/
gem 'listen', '~> 1.1.0'
elsif RUBY_VERSION =~ /^1\.9\.[012]$/
gem 'listen', '>= 1.1.0', '< 2.0.0'
else
gem 'listen', '>= 1.1.0', '< 3.0.0'
end
gem 'rubyforge', :group => :development
gem 'minitest', '>= 5.0.0', '< 6.0.0', :group => :test
#gem "sass-spec", :path => "../sass-spec"
gem "sass-spec", :git => 'https://github.com/sass/sass-spec.git'