Skip to content

Commit

Permalink
Regenerate gemspec for version 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sutto committed Jul 23, 2012
1 parent 6bc4f0b commit 28bbff1
Showing 1 changed file with 31 additions and 17 deletions.
48 changes: 31 additions & 17 deletions barista.gemspec
Expand Up @@ -4,20 +4,14 @@
# -*- encoding: utf-8 -*- # -*- encoding: utf-8 -*-


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{barista} s.name = "barista"
s.version = "1.2.1" s.version = "1.3.0"


s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Darcy Laycock"] s.authors = ["Darcy Laycock"]
s.date = %q{2011-06-02} s.date = "2012-07-23"
s.description = %q{Barista provides simple, integrated support for CoffeeScript in Rack and Rails applications. s.description = "Barista provides simple, integrated support for CoffeeScript in Rack and Rails applications.\n\nMuch like Compass does for Sass, It also provides Frameworks (bundleable code which can be shared via Gems).\n\nLastly, it also provides a Rack Application (which can be used to server compiled code), a around_filter-style precompiler (as Rack middleware) and simple helpers for rails and Haml.\n\nFor more details, please see the the README file bundled with it."
s.email = "sutto@sutto.net"
Much like Compass does for Sass, It also provides Frameworks (bundleable code which can be shared via Gems).
Lastly, it also provides a Rack Application (which can be used to server compiled code), a around_filter-style precompiler (as Rack middleware) and simple helpers for rails and Haml.
For more details, please see the the README file bundled with it.}
s.email = %q{sutto@sutto.net}
s.extra_rdoc_files = [ s.extra_rdoc_files = [
"LICENSE", "LICENSE",
"README.md" "README.md"
Expand Down Expand Up @@ -47,39 +41,59 @@ For more details, please see the the README file bundled with it.}
"lib/barista/integration/sinatra.rb", "lib/barista/integration/sinatra.rb",
"lib/barista/rake_task.rb", "lib/barista/rake_task.rb",
"lib/barista/server.rb", "lib/barista/server.rb",
"lib/barista/tasks.rb",
"lib/barista/tasks/barista.rake", "lib/barista/tasks/barista.rake",
"lib/barista/version.rb", "lib/barista/version.rb",
"lib/generators/barista/install/USAGE", "lib/generators/barista/install/USAGE",
"lib/generators/barista/install/install_generator.rb", "lib/generators/barista/install/install_generator.rb",
"lib/generators/barista/install/templates/initializer.rb", "lib/generators/barista/install/templates/initializer.rb",
"lib/generators/barista_install_generator.rb", "lib/generators/barista_install_generator.rb",
"spec/assets/alert.coffee",
"spec/barista_spec.rb", "spec/barista_spec.rb",
"spec/spec_helper.rb" "spec/spec_helper.rb"
] ]
s.homepage = %q{http://github.com/Sutto/barista} s.homepage = "http://github.com/Sutto/barista"
s.require_paths = ["lib"] s.require_paths = ["lib"]
s.rubygems_version = %q{1.6.2} s.rubygems_version = "1.8.24"
s.summary = %q{Simple, transparent coffeescript integration for Rails and Rack applications.} s.summary = "Simple, transparent coffeescript integration for Rails and Rack applications."


if s.respond_to? :specification_version then if s.respond_to? :specification_version then
s.specification_version = 3 s.specification_version = 3


if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<coffee-script>, ["~> 2.2"]) s.add_runtime_dependency(%q<coffee-script>, ["~> 2.2"])
s.add_development_dependency(%q<rails>, ["~> 3.0"])
s.add_development_dependency(%q<jeweler>, ["~> 1.0"]) s.add_development_dependency(%q<jeweler>, ["~> 1.0"])
s.add_development_dependency(%q<rspec>, ["~> 2.1"]) s.add_development_dependency(%q<rspec>, ["~> 2.6"])
s.add_development_dependency(%q<rspec-rails>, ["~> 2.6"])
s.add_development_dependency(%q<rspec-core>, ["~> 2.6"])
s.add_development_dependency(%q<rdoc>, ["~> 2.4"])
s.add_development_dependency(%q<rr>, ["~> 1.0"]) s.add_development_dependency(%q<rr>, ["~> 1.0"])
s.add_development_dependency(%q<ruby-debug>, [">= 0"])
s.add_development_dependency(%q<ruby-debug19>, ["~> 0.11"])
else else
s.add_dependency(%q<coffee-script>, ["~> 2.2"]) s.add_dependency(%q<coffee-script>, ["~> 2.2"])
s.add_dependency(%q<rails>, ["~> 3.0"])
s.add_dependency(%q<jeweler>, ["~> 1.0"]) s.add_dependency(%q<jeweler>, ["~> 1.0"])
s.add_dependency(%q<rspec>, ["~> 2.1"]) s.add_dependency(%q<rspec>, ["~> 2.6"])
s.add_dependency(%q<rspec-rails>, ["~> 2.6"])
s.add_dependency(%q<rspec-core>, ["~> 2.6"])
s.add_dependency(%q<rdoc>, ["~> 2.4"])
s.add_dependency(%q<rr>, ["~> 1.0"]) s.add_dependency(%q<rr>, ["~> 1.0"])
s.add_dependency(%q<ruby-debug>, [">= 0"])
s.add_dependency(%q<ruby-debug19>, ["~> 0.11"])
end end
else else
s.add_dependency(%q<coffee-script>, ["~> 2.2"]) s.add_dependency(%q<coffee-script>, ["~> 2.2"])
s.add_dependency(%q<rails>, ["~> 3.0"])
s.add_dependency(%q<jeweler>, ["~> 1.0"]) s.add_dependency(%q<jeweler>, ["~> 1.0"])
s.add_dependency(%q<rspec>, ["~> 2.1"]) s.add_dependency(%q<rspec>, ["~> 2.6"])
s.add_dependency(%q<rspec-rails>, ["~> 2.6"])
s.add_dependency(%q<rspec-core>, ["~> 2.6"])
s.add_dependency(%q<rdoc>, ["~> 2.4"])
s.add_dependency(%q<rr>, ["~> 1.0"]) s.add_dependency(%q<rr>, ["~> 1.0"])
s.add_dependency(%q<ruby-debug>, [">= 0"])
s.add_dependency(%q<ruby-debug19>, ["~> 0.11"])
end end
end end


0 comments on commit 28bbff1

Please sign in to comment.