Sha256: ab440f325d4f02d8e2208916e9cc16f7d27740156ad1388583f95aa5af9a60d7

Contents?: true

Size: 360 Bytes

Versions: 2

Compression:

Stored size: 360 Bytes

Contents

module Luca
  module Cli
    class Watch < Thor
      namespace :watch

      desc "watch", "watch APPLICATION_NAME [options]"
      method_options :name => :string
      method_option :root, :default => Dir.pwd()

      def watch application_name
        watcher = Luca::Watcher.new(application_name, options)
        watcher.start
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
luca-0.9.91 lib/luca/cli/watch.rb
luca-0.9.9 lib/luca/cli/watch.rb