rakefile.rb in buildar-1.1.0.2 vs rakefile.rb in buildar-1.2.0.1
- old
+ new
@@ -4,19 +4,19 @@
Buildar.conf(__FILE__) do |b|
b.use_version_file = true
b.version_filename = 'VERSION'
b.use_manifest_file = true
b.manifest_filename = 'MANIFEST.txt'
- b.gemspec.name = 'buildar'
- b.gemspec.summary = 'Buildar crept inside your rakefile and scratched upon the tasking post'
- b.gemspec.description = <<EOF
-Buildar helps automate the release process with versioning, building, packaging, and publishing. Optional git integration.
-EOF
+ b.use_git = true
+ b.publish[:rubygems] = true
+ b.gemspec.name = 'buildar'
+ b.gemspec.summary = 'Buildar crept inside your rakefile and scratched upon the tasking post'
b.gemspec.author = 'Rick Hull'
b.gemspec.homepage = 'https://github.com/rickhull/buildar'
b.gemspec.license = 'MIT'
b.gemspec.has_rdoc = true
- b.gemspec.add_runtime_dependency "rake", ">= 5" # guess?
+ b.gemspec.description = 'Buildar helps automate the release process with versioning, building, packaging, and publishing. Optional git integration.'
+ b.gemspec.add_runtime_dependency "rake", ">= 8" # guess?
b.gemspec.add_development_dependency "buildar", "~> 1.0"
end
Rake::TestTask.new :test do |t|
t.pattern = 'test/*.rb'