Module: DevDev
- Defined in:
- lib/devdev.rb,
lib/devdev/version.rb
Constant Summary collapse
- VERSION =
'0.0.9'
Class Method Summary collapse
-
.build_all ⇒ Object
build all commands.
-
.info ⇒ Object
view command documentation.
-
.next ⇒ Object
view next command.
-
.skip ⇒ Object
skip command.
Class Method Details
.build_all ⇒ Object
build all commands
6 7 8 9 10 11 12 13 14 15 16 |
# File 'lib/devdev.rb', line 6 def build_all i = 0 commands = cmd_array commands.each do |cmd| puts blue <<~TEXT #{i += 1}. #{cmd[:title]} TEXT puts " #{cmd[:cmd]}\n\n" end end |
.info ⇒ Object
view command documentation
25 |
# File 'lib/devdev.rb', line 25 def info; end |
.next ⇒ Object
view next command
19 |
# File 'lib/devdev.rb', line 19 def next; end |
.skip ⇒ Object
skip command
22 |
# File 'lib/devdev.rb', line 22 def skip; end |