Sha256: 4664312da1804d9a868811ce1f5125d6abc4b3165ee802b38e22cb7dc79896aa

Contents?: true

Size: 398 Bytes

Versions: 8

Compression:

Stored size: 398 Bytes

Contents

#! /bin/bash

set -e

function run () {
  echo "+ ruby ./examples/$@"
  ruby -e "puts '=' * 79"
  ruby ./examples/$@
  ruby -e "puts '=' * 79"
}

run logging.rb
run logging.rb -v
run help_dialogue.rb -h
run help_dialogue.rb some_subcommand -h
run help_dialogue.rb another_subcommand -h
run help_dialogue.rb some_subcommand yet_another_sub -h
run help_dialogue.rb some_subcommand yet_another_sub -b

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
mercenary-0.4.0 script/examples
pedrozath-mercenary-0.3.8 script/examples
pedrozath-mercenary-0.3.7 script/examples
pedrozath-mercenary-0.3.6 script/examples
mercenary-0.3.6 script/examples
mercenary-0.3.5 script/examples
mercenary-0.3.4 script/examples
mercenary-0.3.3 script/examples