sass-rails.gemspec 929 B

12345678910111213141516171819202122232425
  1. # -*- encoding: utf-8 -*-
  2. $:.push File.expand_path("../lib", __FILE__)
  3. require "sass/rails/version"
  4. Gem::Specification.new do |s|
  5. s.name = "sass-rails"
  6. s.version = Sass::Rails::VERSION
  7. s.platform = Gem::Platform::RUBY
  8. s.authors = ["wycats", "chriseppstein"]
  9. s.email = ["wycats@gmail.com", "chris@eppsteins.net"]
  10. s.homepage = ""
  11. s.summary = %q{Sass adapter for the Rails asset pipeline.}
  12. s.description = %q{Sass adapter for the Rails asset pipeline.}
  13. s.rubyforge_project = "sass-rails"
  14. s.add_runtime_dependency 'sass', '>= 3.1.10'
  15. s.add_runtime_dependency 'railties', '~> 3.2.0'
  16. s.add_runtime_dependency 'tilt', '~> 1.3'
  17. s.files = `git ls-files`.split("\n")
  18. s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
  19. s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  20. s.require_paths = ["lib"]
  21. end