Sha256: 0e4b40f88ed91aa615861ce7265b2aa5f51945eef78950266dbc8474d7d93439
Contents?: true
Size: 433 Bytes
Versions: 12
Compression:
Stored size: 433 Bytes
Contents
require File.join(File.dirname(File.dirname(File.dirname(File.expand_path(__FILE__)))), 'reek') module Reek module Cli # # A command to report the application's current version number. # class VersionCommand def initialize(progname) @progname = progname end def execute(view) view.output("#{@progname} #{Reek::VERSION}\n") view.report_success end end end end
Version data entries
12 entries across 12 versions & 1 rubygems