Top Level Namespace

Defined Under Namespace

Modules: HireFire

Constant Summary collapse

HIREFIRE_PATH =
File.expand_path("../hirefire", __FILE__)

Instance Method Summary collapse

Instance Method Details

#usageObject



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/hirefire/cli.rb', line 9

def usage
  puts(<<-EOS)

Usage:

  hirefire http://mydomain.com/

Or locally:

  gem install thin
  [bundle exec] thin start -p 3000
  hirefire http://127.0.0.1:3000/

SSL Enabled URLs:

  hirefire https://mydomain.com/

EOS
end