Sha256: 7ffc19343bf0ed00fa3617baa86faaf1c82b06e8994a5dee2677469ed10f1133

Contents?: true

Size: 406 Bytes

Versions: 4

Compression:

Stored size: 406 Bytes

Contents

require 'thor'
require 'nakor/generators/app'

module Nakor
  class CLI < Thor
    desc "generate APP_NAME", "generates an application"
    def generate(app_name)
      Nakor::Generators::App.start([app_name])
    end

    desc "update_radlib APP_DIR", "updates radlib inside an existing application"
    def update_radlib(app_dir)
      Nakor::Utilities::UpdateRadLib.execute([app_dir])
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
nakor-0.0.12 lib/nakor/cli.rb
nakor-0.0.10 lib/nakor/cli.rb
nakor-0.0.9 lib/nakor/cli.rb
nakor-0.0.8 lib/nakor/cli.rb