Class: Inferno::CLI::Main

Inherits:
Thor
  • Object
show all
Defined in:
lib/inferno/apps/cli/main.rb

Instance Method Summary collapse

Instance Method Details

#consoleObject



13
14
15
# File 'lib/inferno/apps/cli/main.rb', line 13

def console
  Console.new.run
end

#migrateObject



18
19
20
# File 'lib/inferno/apps/cli/main.rb', line 18

def migrate
  Migration.new.run
end

#startObject



27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/inferno/apps/cli/main.rb', line 27

def start
  command = 'foreman start --env=/dev/null'
  if `gem list -i foreman`.chomp == 'false'
    puts "You must install foreman with 'gem install foreman' prior to running Inferno."
  end

  if options[:watch]
    if `gem list -i rerun`.chomp == 'false'
      puts "You must install 'rerun' with 'gem install rerun' to restart on file changes."
    end

    command = "rerun \"#{command}\" --background"
  end

  exec command
end

#suitesObject



45
46
47
# File 'lib/inferno/apps/cli/main.rb', line 45

def suites
  Suites.new.run
end

#versionObject



58
59
60
# File 'lib/inferno/apps/cli/main.rb', line 58

def version
  puts "Inferno Core v#{Inferno::VERSION}"
end