pdfkit.gemspec in pdfkit-0.2.3 vs pdfkit.gemspec in pdfkit-0.3.0

- old
+ new

@@ -3,15 +3,15 @@ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command # -*- encoding: utf-8 -*- Gem::Specification.new do |s| s.name = %q{pdfkit} - s.version = "0.2.3" + s.version = "0.3.0" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["jdpace"] - s.date = %q{2010-06-01} + s.date = %q{2010-06-11} s.description = %q{Uses wkhtmltopdf to create PDFs using HTML} s.email = %q{jared@codewordstudios.com} s.executables = ["pdfkit.rb", "wkhtmltopdf-linux-i386-0-9-9", "wkhtmltopdf-osx-i386-0-9-9", "wkhtmltopdf-proxy"] s.extra_rdoc_files = [ "LICENSE", @@ -22,41 +22,52 @@ ".gitignore", "LICENSE", "README.md", "Rakefile", "VERSION", + "bin/pdfkit.rb", + "bin/wkhtmltopdf-linux-i386-0-9-9", + "bin/wkhtmltopdf-osx-i386-0-9-9", + "bin/wkhtmltopdf-proxy", "lib/pdfkit.rb", "lib/pdfkit/middleware.rb", "lib/pdfkit/pdfkit.rb", + "lib/pdfkit/source.rb", "pdfkit.gemspec", "spec/fixtures/example.css", + "spec/fixtures/example.html", "spec/pdfkit_spec.rb", + "spec/source_spec.rb", "spec/spec.opts", "spec/spec_helper.rb" ] s.homepage = %q{http://github.com/jdpace/PDFKit} s.rdoc_options = ["--charset=UTF-8"] s.require_paths = ["lib"] s.rubygems_version = %q{1.3.6} s.summary = %q{HTML+CSS -> PDF} s.test_files = [ "spec/pdfkit_spec.rb", + "spec/source_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::RubyGemsVersion) >= Gem::Version.new('1.2.0') then s.add_runtime_dependency(%q<activesupport>, [">= 0"]) s.add_development_dependency(%q<rspec>, ["~> 2.0.0.beta.8"]) + s.add_development_dependency(%q<mocha>, [">= 0"]) else s.add_dependency(%q<activesupport>, [">= 0"]) s.add_dependency(%q<rspec>, ["~> 2.0.0.beta.8"]) + s.add_dependency(%q<mocha>, [">= 0"]) end else s.add_dependency(%q<activesupport>, [">= 0"]) s.add_dependency(%q<rspec>, ["~> 2.0.0.beta.8"]) + s.add_dependency(%q<mocha>, [">= 0"]) end end