Method: Frank::CLI.bootstrap

Defined in:
lib/frank/cli.rb

.bootstrapObject

bootstrap this project up only if we really need to



156
157
158
159
160
# File 'lib/frank/cli.rb', line 156

def bootstrap
  if %w[server up export out publish upgrade s e p].include? ARGV.first
    Frank.bootstrap(Dir.pwd)
  end
end