Skip to content

Commit 23ec4c1

Browse files
committed
Move commands around
1 parent 5cbc595 commit 23ec4c1

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
module Nutella
2+
3+
# Nutella command
4+
class Command
5+
6+
class << self;
7+
attr_accessor :description
8+
end
9+
10+
# Commands overload this method to execute
11+
def run( args=nil )
12+
console.error 'Running the generic command!!! WAT? https://www.destroyallsoftware.com/talks/wat'
13+
end
14+
15+
end
16+
17+
end

0 commit comments

Comments
 (0)