Sha256: 472009933b0ceac77907a59e2f5351ebb861d6462e9c8bf430bf3ad4907ba924

Contents?: true

Size: 302 Bytes

Versions: 23

Compression:

Stored size: 302 Bytes

Contents

# -*- encoding : utf-8 -*-

class Phrase::Tool::Commands::ShowVersion < Phrase::Tool::Commands::Base
  def initialize(options, args)
    super(options, args)
  end
  
  def execute!
    show_version
  end
  
private
  
  def show_version
    print_message "phrase version #{Phrase::VERSION}"
  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
phrase-0.3.2 lib/phrase/tool/commands/show_version.rb
phrase-0.3.1 lib/phrase/tool/commands/show_version.rb
phrase-0.3.0 lib/phrase/tool/commands/show_version.rb