aboutsummaryrefslogtreecommitdiffstats
path: root/railties/bin/console
blob: f381c7e9645a21044e431cc906859629aa20e3db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/local/bin/ruby

if ARGV[0]
  ENV['RAILS_ENV'] = ARGV[0]
  puts "Loading environment..."
  if RUBY_PLATFORM =~ /mswin32/
    irb_name = "irb.bat"
  else
    irb_name = 'irb'
  end
  exec "#{irb_name} -r config/environment.rb -r irb/completion --noinspect"
else
  puts <<-HELP

NAME
     console - interact with the domain model through a environment console (on IRB)

SYNOPSIS
     console [environment]

DESCRIPTION
     Starts an environment console using IRB that lets you manipulate and interrogate
     the domain model or even trigger controller actions. The database connection and
     configuration available to the web application is already setup.
     
     Tab completion is available to see classes and methods on individual objects.
     
EXAMPLE
     console production
     
     This will initialize the production environment (as setup in config/database.yml
     and config/environments/production.rb). You would now be ready to start requiring
     models using require_dependency.
HELP
end