bourbon.gemspec 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. # -*- encoding: utf-8 -*-
  2. $:.push File.expand_path("../lib", __FILE__)
  3. require "bourbon/version"
  4. Gem::Specification.new do |s|
  5. s.name = "bourbon"
  6. s.version = Bourbon::VERSION
  7. s.platform = Gem::Platform::RUBY
  8. s.authors = ["Phil LaPier", "Chad Mazzola", "Matt Jankowski", "Nick Quaranto", "Jeremy Raines", "Mike Burns", "Andres Mejia", "Travis Haynes", "Chris Lloyd", "Gabe Berke-Williams", "J. Edward Dewyea"]
  9. s.email = ["support@thoughtbot.com"]
  10. s.homepage = "https://github.com/thoughtbot/bourbon"
  11. s.summary = "Bourbon Sass Mixins using SCSS syntax."
  12. s.description = <<-DESC
  13. The purpose of Bourbon Vanilla Sass Mixins is to provide a comprehensive framework of
  14. sass mixins that are designed to be as vanilla as possible. Meaning they
  15. should not deter from the original CSS syntax. The mixins contain vendor
  16. specific prefixes for all CSS3 properties for support amongst modern
  17. browsers. The prefixes also ensure graceful degradation for older browsers
  18. that support only CSS3 prefixed properties.
  19. DESC
  20. s.rubyforge_project = "bourbon"
  21. s.files = `git ls-files`.split("\n")
  22. s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
  23. s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  24. s.require_paths = ["lib"]
  25. s.add_dependency('sass', '>= 3.1')
  26. s.add_development_dependency('aruba', '~> 0.4')
  27. s.add_development_dependency('rake')
  28. end