Sha256: 02bfc9cdf62b53e0f99796de20109d59a397d6565e4b34dcb531ac090c8f5e27

Contents?: true

Size: 194 Bytes

Versions: 6

Compression:

Stored size: 194 Bytes

Contents

class HelloWorld < Thor
  default_task :say_hi

  desc "hello", "Say hello"
  def say_hi
    puts "Hello World"
  end
end

Middleman::Cli::Base.register(HelloWorld, :hello, "hello", "Say hello")

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
middleman-core-3.0.0.beta.1 fixtures/3rd-party-command/config.rb
middleman-core-3.0.0.alpha.9 fixtures/3rd-party-command/config.rb
middleman-core-3.0.0.alpha.8 fixtures/3rd-party-command/config.rb
middleman-core-3.0.0.alpha.7 fixtures/3rd-party-command/config.rb
middleman-3.0.0.alpha.6 fixtures/3rd-party-command/config.rb
middleman-3.0.0.alpha.5 fixtures/3rd-party-command/config.rb