rakefile.rb in gem-patch-0.1.1 vs rakefile.rb in gem-patch-0.1.2
- old
+ new
@@ -2,24 +2,25 @@
require 'rake/testtask'
require 'rdoc/task'
gemspec = Gem::Specification.new do |s|
s.name = "gem-patch"
- s.version = "0.1.1"
+ s.version = "0.1.2"
s.platform = Gem::Platform::RUBY
s.summary = "RubyGems plugin for patching gems."
s.description = <<-EOF
`gem-patch` is a RubyGems plugin that helps to patch gems without manually opening and rebuilding them.
It opens a given .gem file, extracts it, patches it with system `patch` command,
clones its spec, updates the file list and builds the patched gem.
EOF
+ s.homepage = "http://github.com/strzibny/gem-patch"
s.licenses = ["MIT"]
s.author = "Josef Stribny"
s.email = "jstribny@redhat.com"
s.required_ruby_version = ">= 1.8.7"
s.required_rubygems_version = ">= 1.8.0"
- s.files = FileList["README.md", "README.rdoc", "rakefile.rb",
+ s.files = FileList["README.md", "README.rdoc", "LICENCE", "rakefile.rb",
"lib/**/*.rb", "test/**/test*.rb"]
end
Gem::PackageTask.new gemspec do |pkg|
end
@@ -33,6 +34,6 @@
t.libs << 'test'
t.pattern = 'test/**/test*.rb'
t.verbose = true
end
-task :default => [:test]
+task :default => [:test]
\ No newline at end of file