Sha256: 3050619862ab2f456b614c42f7fa65e771ac3deae3b28734d0ee7ebaf4d8a4f2
Contents?: true
Size: 291 Bytes
Versions: 4
Compression:
Stored size: 291 Bytes
Contents
#!/usr/bin/env ruby require 'optparse' require 'pico_api' options = {} OptionParser.new do |opts| opts.banner = "Usage: pico_api [options]" opts.on('-n', '--new project_name') { |o| options[:project_name] = o } end.parse! PicoApi::Generators::Generator.call(options[:project_name])
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
pico_api-0.0.4 | bin/pico_api |
pico_api-0.0.3 | bin/pico_api |
pico_api-0.0.2 | bin/pico_api |
pico_api-0.0.1 | bin/pico_api |