File: newb.rb

package info (click to toggle)
ruby-hoe 3.22.1%2Bdfsg1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 512 kB
  • sloc: ruby: 2,379; makefile: 5
file content (21 lines) | stat: -rw-r--r-- 460 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
##
# Newb plugin for hoe.
#
# === Tasks Provided:
#
# newb:: Get a new developer up to speed.

module Hoe::Newb
  # define tasks for the newb plugin
  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
end