Skip to content

Instantly share code, notes, and snippets.

@mattknox
Created November 16, 2008 23:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattknox/25596 to your computer and use it in GitHub Desktop.
Save mattknox/25596 to your computer and use it in GitHub Desktop.
bash-3.2$ rake version
(in /Users/mknox/hack/ruby/goaloc)
Current version: 0.2.3
bash-3.2$ rake version:bump:patch
(in /Users/mknox/hack/ruby/goaloc)
Current version: 0.2.3
Wrote to VERSION.yml: 0.2.4
bash-3.2$ git status
# On branch master
nothing to commit (working directory clean)
bash-3.2$ rake release --trace
(in /Users/mknox/hack/ruby/goaloc)
** Invoke release (first_time)
** Execute release
Generated: goaloc.gemspec
bash-3.2$ cat goaloc.gemspec
Gem::Specification.new do |s|
s.name = %q{goaloc}
s.version = "0.2.4"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["matt knox"]
s.date = %q{2008-11-16}
s.description = %q{TODO}
s.email = %q{matthewknox@gmail.com}
s.homepage = %q{http://github.com/mattknox/goaloc}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.2.0}
s.summary = %q{TODO}
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
if current_version >= 3 then
else
end
else
end
end
bash-3.2$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment