diff --git a/consular.gemspec b/consular.gemspec index 86b8cd7..ae1818b 100644 --- a/consular.gemspec +++ b/consular.gemspec @@ -24,7 +24,17 @@ Gem::Specification.new do |s| s.add_development_dependency 'mocha' s.add_development_dependency 'fakefs' - # specify any dependencies here; for example: - # s.add_development_dependency "rspec" - # s.add_runtime_dependency "rest-client" + s.post_install_message = %q{******************************************************************************** + + Consular has been installed! Please run: + + consular init + + This will create a directory at ~/.config/consular which will hold all your global scripts. + Also a .consularc file will be generated in your HOME directory which you can further configure + Consular. + +******************************************************************************** + } + end diff --git a/lib/consular/cli.rb b/lib/consular/cli.rb index 0b54788..e000b3b 100644 --- a/lib/consular/cli.rb +++ b/lib/consular/cli.rb @@ -1,6 +1,9 @@ require 'thor' module Consular + + # The CLI provides the command line interface for Consular. These are + # interfaced via the consular bin file. class CLI < Thor include Thor::Actions