Skip to content

Commit

Permalink
Created a gemspec for github
Browse files Browse the repository at this point in the history
  • Loading branch information
wycats committed Sep 17, 2008
1 parent 8b55e1b commit d47d779
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions ufo.gemspec
@@ -0,0 +1,33 @@
Gem::Specification.new do |s|
s.name = %q{ufo}
s.version = "0.5.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Yehuda Katz"]
s.autorequire = %q{ufo}
s.date = %q{2008-09-17}
s.default_executable = %q{make_pdf}
s.description = %q{A gem that provides a Ruby binding to the Java flying saucer library}
s.email = %q{wycats@gmail.com}
s.executables = ["make_pdf"]
s.extra_rdoc_files = ["README", "LICENSE", "TODO"]
s.files = ["LICENSE", "README", "Rakefile", "lib/flying_saucer", "lib/flying_saucer/core-renderer.jar", "lib/flying_saucer/itext-paulo-155.jar", "lib/flying_saucer/itext_renderer.rb", "lib/flying_saucer.rb", "bin/make_pdf", "TODO"]
s.has_rdoc = true
s.homepage = %q{http://yehudakatz.com}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.2.0}
s.summary = %q{A gem that provides a Ruby binding to the Java flying saucer library}

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2

if current_version >= 3 then
s.add_runtime_dependency(%q<thor>, [">= 0"])
else
s.add_dependency(%q<thor>, [">= 0"])
end
else
s.add_dependency(%q<thor>, [">= 0"])
end
end

0 comments on commit d47d779

Please sign in to comment.