Sha256: 7d84fa1cc9a4432e6b89542ddfd52c795c70faa7842f20fd22225e03e27f189b

Contents?: true

Size: 340 Bytes

Versions: 6

Compression:

Stored size: 340 Bytes

Contents

require 'thor'

module Renote
  module Cli
    class Application < Thor

      desc 'thru INFILE OUTFILE', 'Pass-through note taking records keyboard input to <OUTFILE> while synchronously displaying contents of <INFILE>.'
      def thru(infile,outfile)
        puts "IN #{infile}"
        puts "OUT #{outfile}"
      end

    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
renote-0.0.7 lib/renote/cli/application.rb
renote-0.0.6 lib/renote/cli/application.rb
renote-0.0.5 lib/renote/cli/application.rb
renote-0.0.4 lib/renote/cli/application.rb
renote-0.0.3 lib/renote/cli/application.rb
renote-0.0.2 lib/renote/cli/application.rb