Sha256: c0d52e965337a641fb1cb8702cc0091278518562c1693c8e373227970a7e34ca

Contents?: true

Size: 155 Bytes

Versions: 3

Compression:

Stored size: 155 Bytes

Contents

#! /usr/bin/env ruby

def main()
  if (ARGV.length == 0)
    stream = STDIN.gets.chomp
    puts stream + "s"
  else
    puts ARGV[0] + "s"
  end
end

main

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
uttk-0.3.1.2 test/fixtures/demo/command-tutorial/steps/4/pluralizer.rb
uttk-0.3.6.1 test/fixtures/demo/command-tutorial/steps/4/pluralizer.rb
uttk-0.3.5.0 test/fixtures/demo/command-tutorial/steps/4/pluralizer.rb