tasks/github-gem.rake in wvanbergen-scoped_search-1.1.0 vs tasks/github-gem.rake in wvanbergen-scoped_search-1.2.0
- old
+ new
@@ -230,13 +230,13 @@
sh "gem uninstall #{name}"
end
def create_version_tag!
# commit the gemspec file
- git_commit_file(gemspec_file, "Updated #{gemspec_file} for release of version #{@specification.version}") if git_modified?(gemspec_file)
+ git_commit_file(gemspec_file, "Released #{@name} version #{@specification.version}") if git_modified?(gemspec_file)
# create tag and push changes
- git_create_tag("#{@name}-#{@specification.version}", "Tagged version #{@specification.version}")
+ git_create_tag("#{@name}-#{@specification.version}", "Tagged #{@name} version #{@specification.version}")
git_push('origin', 'master', [:tags])
end
def release_task
puts
\ No newline at end of file