Sha256: 2d6555c421f7f651def6c7dbd64f1a3bcacedf625a421402115b5f7a58b4a1c4

Contents?: true

Size: 449 Bytes

Versions: 12

Compression:

Stored size: 449 Bytes

Contents

module Keystorage
  module Command
    class Base

      def initialize(options)
        @file = options[:file]
      end

      class << self
        def run(argv,options)
          begin
            self.new(options).execute(argv)
          rescue =>e
            puts "Error: \n    %s\n\n" % e
            puts help
          end
        end

        def help
          "TODO: HELP IS NOT DESCRIBED YET."
        end

      end
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
keystorage-0.4.13 lib/keystorage/command/base.rb
keystorage-0.4.11 lib/keystorage/command/base.rb
keystorage-0.4.8 lib/keystorage/command/base.rb
keystorage-0.4.7 lib/keystorage/command/base.rb
keystorage-0.4.5 lib/keystorage/command/base.rb
keystorage-0.4.3 lib/keystorage/command/base.rb
keystorage-0.4.2 lib/keystorage/command/base.rb
keystorage-0.4.1 lib/keystorage/command/base.rb
keystorage-0.3.0 lib/keystorage/command/base.rb
keystorage-0.2.0 lib/keystorage/command/base.rb
keystorage-0.1.1 lib/keystorage/command/base.rb
keystorage-0.1.0 lib/keystorage/command/base.rb