lib/skunk/cli/commands/version.rb in skunk-0.5.1 vs lib/skunk/cli/commands/version.rb in skunk-0.5.2

- old
+ new

@@ -2,15 +2,21 @@ require "rubycritic/commands/version" # nodoc # module Skunk - module Command - # Shows skunk version - class Version < RubyCritic::Command::Version - def execute - print Skunk::VERSION - status_reporter + module Cli + module Command + # Shows skunk version + class Version < RubyCritic::Command::Version + def execute + print Skunk::VERSION + status_reporter + end + + def sharing? + false + end end end end end