Sha256: 31bb9e95ff33145a226774010812be436af927672a26d2a5b16f79a06f27ba01

Contents?: true

Size: 350 Bytes

Versions: 4

Compression:

Stored size: 350 Bytes

Contents

#!/usr/bin/ruby

# Load table formatter class
require File.join(File.dirname(__FILE__), '../lib/cucumber_table_formatter')

# Check for input
unless input = readlines or (ARGV[0] and input = File.read(ARGV[0]).split("\n"))
  puts "Please specify filename!"
  exit 1
end

# Process input and print it
print CucumberTableFormatter.new(input).formatted

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
colszowka-cucumber_table_formatter-0.2.0 bin/format_cucumber_table
colszowka-cucumber_table_formatter-0.2.1 bin/format_cucumber_table
colszowka-cucumber_table_formatter-0.2.2 bin/format_cucumber_table
colszowka-cucumber_table_formatter-0.2.4 bin/format_cucumber_table