-
Notifications
You must be signed in to change notification settings - Fork 0
/
sass.gemspec
38 lines (33 loc) · 1.67 KB
/
sass.gemspec
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
34
35
36
37
38
require 'rubygems'
# Note that Sass's gem-compilation process requires access to the filesystem.
# This means that it cannot be automatically run by e.g. GitHub's gem system.
# However, a build server automatically packages the master branch
# every time it's pushed to; this is made available as a prerelease gem.
SASS_GEMSPEC = Gem::Specification.new do |spec|
spec.rubyforge_project = 'sass'
spec.name = 'sass'
spec.summary = "A powerful but elegant CSS compiler that makes CSS fun again."
spec.version = File.read(File.dirname(__FILE__) + '/VERSION').strip
spec.authors = ['Natalie Weizenbaum', 'Chris Eppstein', 'Hampton Catlin']
spec.email = '[email protected]'
spec.description = <<-END
Sass makes CSS fun again. Sass is an extension of CSS, adding
nested rules, variables, mixins, selector inheritance, and more.
It's translated to well-formatted, standard CSS using the
command line tool or a web-framework plugin.
END
spec.required_ruby_version = '>= 2.0.0'
spec.add_runtime_dependency 'sass-listen', '~> 4.0.0'
spec.add_development_dependency 'yard', '~> 0.8.7.6'
spec.add_development_dependency 'redcarpet', '~> 3.3'
spec.add_development_dependency 'nokogiri', '~> 1.6.0'
spec.add_development_dependency 'minitest', '>= 5'
readmes = Dir['*'].reject{ |x| x =~ /(^|[^.a-z])[a-z]+/ || x == "TODO" }
spec.executables = ['sass', 'sass-convert', 'scss']
spec.files = Dir['rails/init.rb', 'lib/**/*', 'bin/*', 'test/**/*',
'extra/**/*', 'Rakefile', 'init.rb', '.yardopts'] + readmes
spec.homepage = 'http://sass-lang.com/'
spec.has_rdoc = false
spec.test_files = Dir['test/**/*_test.rb']
spec.license = "MIT"
end