Sha256: 0dbe223beff8d2a8f46101f3c6233b3044460cc5e52696a61213be630e2b612b

Contents?: true

Size: 265 Bytes

Versions: 1

Compression:

Stored size: 265 Bytes

Contents

require 'thor'

module Rubygb
  class CLI < Thor
    desc 'build FILENAME', 'attempt to assemble, link and fix FILENAME and create a gb rom from it'
    option :no_fix, :type => :boolean
    def build filename
      Rubygb.build filename, options
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rubygb-0.1.0 lib/rubygb/cli.rb