Sha256: 378e8186781c86b2bcea6778065eae1ab20649a61d7e93adbe1e6de2cf74223b

Contents?: true

Size: 1.44 KB

Versions: 9

Compression:

Stored size: 1.44 KB

Contents

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 = ['Nathan Weizenbaum', 'Chris Eppstein', 'Hampton Catlin']
  spec.email = 'sass-lang@googlegroups.com'
  spec.description = <<-END
      Sass makes CSS fun again. Sass is an extension of CSS3, 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.add_development_dependency 'yard', '>= 0.5.3'
  spec.add_development_dependency 'maruku', '>= 0.5.9'

  readmes = Dir['*'].reject{ |x| x =~ /(^|[^.a-z])[a-z]+/ || x == "TODO" }
  spec.executables = ['sass', 'sass-convert']
  spec.files = Dir['rails/init.rb', 'lib/**/*', 'vendor/**/*',
    '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']
end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
haml_ejs-0.0.1 vendor/sass/sass.gemspec
haml-3.1.3 vendor/sass/sass.gemspec
haml-3.2.0.alpha.8 vendor/sass/sass.gemspec
haml-3.2.0.alpha.5 vendor/sass/sass.gemspec
haml-3.2.0.alpha.4 vendor/sass/sass.gemspec
haml-3.1.2 vendor/sass/sass.gemspec
haml-3.2.0.alpha.3 vendor/sass/sass.gemspec
haml-3.2.0.alpha.2 vendor/sass/sass.gemspec
haml-3.1.1 vendor/sass/sass.gemspec