barista.gemspec in barista-0.5.1 vs barista.gemspec in barista-0.6.0
- old
+ new
@@ -3,56 +3,84 @@
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{barista}
- s.version = "0.5.1"
+ s.version = "0.6.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Darcy Laycock"]
- s.date = %q{2010-09-19}
+ s.date = %q{2010-11-15}
s.description = %q{Automatically compiles app/coffeescripts/*.coffee to javascript for rails awesomesauce.}
s.email = %q{sutto@sutto.net}
s.extra_rdoc_files = [
"LICENSE",
"README.md"
]
s.files = [
".document",
".gitignore",
+ ".rspec",
+ ".rvmrc",
+ "Gemfile",
+ "Gemfile.lock",
"LICENSE",
"README.md",
"Rakefile",
"app/controllers/barista_controller.rb",
"barista.gemspec",
"config/routes.rb",
"lib/barista.rb",
"lib/barista/compiler.rb",
+ "lib/barista/compilers.rb",
+ "lib/barista/compilers/base.rb",
+ "lib/barista/compilers/native.rb",
+ "lib/barista/compilers/node.rb",
"lib/barista/filter.rb",
"lib/barista/framework.rb",
"lib/barista/hooks.rb",
"lib/barista/tasks/barista.rake",
"lib/barista/version.rb",
- "lib/generators/barista_install/USAGE",
- "lib/generators/barista_install/barista_install_generator.rb",
- "lib/generators/barista_install/templates/initializer.rb"
+ "lib/coffee-script/coffee-script-0.9.4.js",
+ "lib/generators/barista/install/USAGE",
+ "lib/generators/barista/install/install_generator.rb",
+ "lib/generators/barista/install/templates/initializer.rb",
+ "lib/generators/barista_install_generator.rb",
+ "spec/barista_spec.rb",
+ "spec/spec_helper.rb"
]
s.homepage = %q{http://github.com/Sutto/barista}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.summary = %q{Transparent coffeescript support for rails 3.}
+ s.test_files = [
+ "spec/barista_spec.rb",
+ "spec/spec_helper.rb"
+ ]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<open4>, [">= 0"])
+ s.add_runtime_dependency(%q<railties>, ["~> 3.0"])
+ s.add_development_dependency(%q<rspec>, ["~> 2.0.0.beta.22"])
+ s.add_development_dependency(%q<rr>, ["~> 1.0"])
+ s.add_development_dependency(%q<therubyracer>, [">= 0"])
else
s.add_dependency(%q<open4>, [">= 0"])
+ s.add_dependency(%q<railties>, ["~> 3.0"])
+ s.add_dependency(%q<rspec>, ["~> 2.0.0.beta.22"])
+ s.add_dependency(%q<rr>, ["~> 1.0"])
+ s.add_dependency(%q<therubyracer>, [">= 0"])
end
else
s.add_dependency(%q<open4>, [">= 0"])
+ s.add_dependency(%q<railties>, ["~> 3.0"])
+ s.add_dependency(%q<rspec>, ["~> 2.0.0.beta.22"])
+ s.add_dependency(%q<rr>, ["~> 1.0"])
+ s.add_dependency(%q<therubyracer>, [">= 0"])
end
end