bourbon-2.1.1.gemspec 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # -*- encoding: utf-8 -*-
  2. Gem::Specification.new do |s|
  3. s.name = "bourbon"
  4. s.version = "2.1.1"
  5. s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  6. 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"]
  7. s.date = "2012-06-29"
  8. s.description = "The purpose of Bourbon Vanilla Sass Mixins is to provide a comprehensive framework of\nsass mixins that are designed to be as vanilla as possible. Meaning they\nshould not deter from the original CSS syntax. The mixins contain vendor\nspecific prefixes for all CSS3 properties for support amongst modern\nbrowsers. The prefixes also ensure graceful degradation for older browsers\nthat support only CSS3 prefixed properties.\n"
  9. s.email = ["support@thoughtbot.com"]
  10. s.executables = ["bourbon"]
  11. s.files = ["bin/bourbon"]
  12. s.homepage = "https://github.com/thoughtbot/bourbon"
  13. s.require_paths = ["lib"]
  14. s.rubyforge_project = "bourbon"
  15. s.rubygems_version = "1.8.24"
  16. s.summary = "Bourbon Sass Mixins using SCSS syntax."
  17. if s.respond_to? :specification_version then
  18. s.specification_version = 3
  19. if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
  20. s.add_runtime_dependency(%q<sass>, [">= 3.1"])
  21. s.add_development_dependency(%q<aruba>, ["~> 0.4"])
  22. s.add_development_dependency(%q<rake>, [">= 0"])
  23. else
  24. s.add_dependency(%q<sass>, [">= 3.1"])
  25. s.add_dependency(%q<aruba>, ["~> 0.4"])
  26. s.add_dependency(%q<rake>, [">= 0"])
  27. end
  28. else
  29. s.add_dependency(%q<sass>, [">= 3.1"])
  30. s.add_dependency(%q<aruba>, ["~> 0.4"])
  31. s.add_dependency(%q<rake>, [">= 0"])
  32. end
  33. end