File: Gemfile

package info (click to toggle)
ruby-sass 3.7.4-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,396 kB
  • sloc: ruby: 32,443; sh: 26; makefile: 25
file content (18 lines) | stat: -rw-r--r-- 475 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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

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', :branch => 'master'

# Removed from standard library in Ruby 2.5.0.
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.5.0')
  gem 'mathn'
end