Sha256: 967acabe2b16362947a54a077fb628f35a8946fedf1d5e643dd5975c3b558dab

Contents?: true

Size: 420 Bytes

Versions: 7

Compression:

Stored size: 420 Bytes

Contents

#!/usr/bin/env ruby

require "pathname"

case command = ARGV.first
when "sample-data"
  system(Pathname(__dir__).join("flex-station-sample-data").to_path, *ARGV.drop(1))
when "linear-regression"
  system(Pathname(__dir__).join("flex-station-linear-regression").to_path, *ARGV.drop(1))
when nil
  $stderr.puts "USAGE: flex-station <command>"
  exit(1)
else
  $stderr.puts "Unrecognised command: #{command}"
  exit(1)
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
flex-station-data-1.0.0 bin/flex-station
flex-station-data-0.3.2 bin/flex-station
flex-station-data-0.3.1 bin/flex-station
flex-station-data-0.3.0 bin/flex-station
flex-station-data-0.2.0 bin/flex-station
flex-station-data-0.1.1 bin/flex-station
flex-station-data-0.1.0 bin/flex-station