gitgit 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/gitgit.rb +6 -0
- data/lib/gitgit/version.rb +1 -1
- metadata +1 -1
data/lib/gitgit.rb
CHANGED
|
@@ -79,6 +79,12 @@ module Gitgit
|
|
|
79
79
|
say "Site pushed to the gh-pages branch on github!", :green
|
|
80
80
|
end
|
|
81
81
|
|
|
82
|
+
desc "version", "Show which version of gitgit you're running"
|
|
83
|
+
def version
|
|
84
|
+
say "You're running gitgit version #{Gitgit::VERSION}!"
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
|
|
82
88
|
|
|
83
89
|
no_commands do
|
|
84
90
|
def show_status(g)
|
data/lib/gitgit/version.rb
CHANGED