Sha256: 47e4ee773ed4204f47f0f03bee606cbac19d9ca27a17d6bb2890c711f4addd5c

Contents?: true

Size: 430 Bytes

Versions: 1

Compression:

Stored size: 430 Bytes

Contents

#!/usr/bin/env ruby

command = ARGV[0]

error(%%
No command specified, please use one of the following
  project: start a new project
  update:  update mvp inside current project
%) unless command

case ARGV[1].downcase
when 'project'
  `curl -s https://raw.githubusercontent.com/ian/product-validation-mvp/master/install.rb | ruby`
when 'update'
  puts "TBD"
end

BEGIN {
  def error(message)
    puts message
    exit 1
  end
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
minimum-viable-product-0.0.2 bin/mvp