Created
November 16, 2008 23:38
-
-
Save mattknox/25596 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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{[email protected]} | |
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