Sha256: 1c11d400b4a1e2588bb1fb6452265c305a82090b251ec911c037023ad65b775f

Contents?: true

Size: 481 Bytes

Versions: 1

Compression:

Stored size: 481 Bytes

Contents

require 'reap/task'

#  ___       __       _____        _
# |_ _|_ _  / _|___  |_   _|_ _ __| |__
#  | || ' \|  _/ _ \   | |/ _` (_-< / /
# |___|_||_|_| \___/   |_|\__,_/__/_\_\
#

# = Info Task
#
# Displays the ProjectInfo file.

class Reap::Info < Reap::Task

  task_desc "Display ProjectInfo file."

  task_help %{

    reap info

    Display ProjectInfo file.

  }

  def init( na )
    # no initialization
  end

  def run( na )
    puts $PROJECT_INFO.info_stream
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
reap-4.3.3 lib/reap/task/info.rb