Module: Hoe::Newb
- Defined in:
- lib/hoe/newb.rb
Overview
Newb plugin for hoe.
Tasks Provided:
- newb
-
Get a new developer up to speed.
Instance Method Summary collapse
-
#define_newb_tasks ⇒ Object
define tasks for the newb plugin.
Instance Method Details
#define_newb_tasks ⇒ Object
define tasks for the newb plugin
10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/hoe/newb.rb', line 10 def define_newb_tasks desc "Install deps, generate docs, run tests/specs." task :newb => %w[check_extra_deps install_plugins docs default] do puts <<-END GOOD TO GO! Tests are passing, docs are generated, dependencies are installed. Get to hacking. END end end |