Sha256: 6c6c8343684cc2570ac7b8cc0cb3454317b800813a7cb1ab56136a6d0dc8057a

Contents?: true

Size: 382 Bytes

Versions: 1

Compression:

Stored size: 382 Bytes

Contents

require "snowman-io/version"
require "snowman-io/api"
require "snowman-io/options"

module SnowmanIO
  def self.start
    # parse options
    options = Options.new.parse!(ARGV)

    case options[:command]
    when "server"
      API.start(options)
    else
      abort "Unreacheable point. Please report the bug to https://github.com/snowman-io/snowman-io/issues"
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
snowman-io-0.0.3 lib/snowman-io.rb