Sha256: 542ec037349a694474c66fc4c74623bf83c8b9be903647cdae475221dbf25469

Contents?: true

Size: 1.27 KB

Versions: 2

Compression:

Stored size: 1.27 KB

Contents

# Copyright (c) 2009 Denis Defreyne, 2010-2011 David Love
#
# Permission to use, copy, modify, and/or distribute this software for 
# any purpose with or without fee is hereby granted, provided that the 
# above copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

# @author David Love
#
# The +Commands+ module acts as the gathering place for all the sub-commands 
# which the +mercury+ command can deal with. Each sub-command defines both 
# the command action, options, and associated help text.
#
# All commands should live under +lib/mercury/cli/commands+, with the 
# file-name named after the sub-command defined within it. 
module Mercury::CLI::Commands
end

require 'mercury/cli/commands/help'

require 'mercury/cli/commands/bootstrap'
require 'mercury/cli/commands/show'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
BlueAdmiral-0.0.3 lib/mercury/cli/commands.rb
BlueAdmiral-0.0.2 lib/mercury/cli/commands.rb