mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
6 lines
No EOL
91 B
Ruby
6 lines
No EOL
91 B
Ruby
class Hello < Thor
|
|
desc "hello", "Say hello"
|
|
def hello
|
|
puts "Hello World"
|
|
end
|
|
end |