Module: Rib::Rails

Defined in:
lib/rib/app/rails.rb

Class Method Summary collapse

Class Method Details

.loadObject



5
6
7
8
9
# File 'lib/rib/app/rails.rb', line 5

def load
  load_rails
rescue LoadError => e
  Rib.abort("Error: #{e}", "Is this a Rails app?")
end

.load_railsObject



11
12
13
14
15
16
17
18
19
# File 'lib/rib/app/rails.rb', line 11

def load_rails
  require './config/boot'

  if File.exist?('./config/application.rb')
    Rib::Rails.load_rails3
  else
    Rib::Rails.load_rails2
  end
end

.load_rails2Object



21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/rib/app/rails.rb', line 21

def load_rails2
  optparse_env
  Rib.silence{
    # rails 2 is so badly written
    require 'stringio'
     stderr = $stderr
    $stderr = StringIO.new
    Object.const_set('RAILS_ENV', ENV['RAILS_ENV'] || 'development')
    $stderr = stderr
  }

  # copied from commands/console
  ['./config/environment',
   'console_app'         ,
   'console_with_helpers'].each{ |f| require f }

  optparse_rails
end

.load_rails3Object



40
41
42
43
44
45
46
47
48
# File 'lib/rib/app/rails.rb', line 40

def load_rails3
  optparse_env

  # copied from rails/commands
  require './config/application'
  ::Rails.application.require_environment!

  optparse_rails
end

.optparse_envObject

copied from rails/commands/console



51
52
53
54
55
56
# File 'lib/rib/app/rails.rb', line 51

def optparse_env
  # Has to set the RAILS_ENV before config/application is required
  if ARGV.first && !ARGV.first.index("-") && env = ARGV.shift # has to shift the env ARGV so IRB doesn't freak
    ENV['RAILS_ENV'] = %w(production development test).detect {|e| e =~ /^#{env}/} || env
  end
end

.optparse_railsObject

copied from rails/commands/console



59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# File 'lib/rib/app/rails.rb', line 59

def optparse_rails
  require 'optparse'
  options = {}

  OptionParser.new do |opt|
    opt.banner = "Usage: rib rails [environment] [options]"
    opt.on('-s', '--sandbox', 'Rollback database modifications on exit.') { |v| options[:sandbox] = v }
    opt.on("--debugger", 'Enable ruby-debugging for the console.') { |v| options[:debugger] = v }
    opt.parse!(ARGV)
  end

    # rails 3
  if ::Rails.respond_to?(:application) && (app = ::Rails.application)
    # rails 3.1
    if app.respond_to?(:sandbox)
      app.sandbox = options[:sandbox]
      app.load_console
    # rails 3.0
    else
      app.load_console(options[:sandbox])
    end
  else
    # rails 2
    require 'console_sandbox' if options[:sandbox]
  end

  if options[:debugger]
    begin
      require 'ruby-debug'
      puts "=> Debugger enabled"
    rescue Exception
      puts "You need to install ruby-debug to run the console in debugging mode. With gems, use 'gem install ruby-debug'"
      exit
    end
  end

  if options[:sandbox]
    puts "Loading #{::Rails.env} environment in sandbox (Rails #{::Rails.version})"
    puts "Any modifications you make will be rolled back on exit"
  else
    puts "Loading #{::Rails.env} environment (Rails #{::Rails.version})"
  end

  # rails 3.2
  if ::Rails.const_defined?(:ConsoleMethods)
    Rib.shell.eval_binding.eval('extend ::Rails::ConsoleMethods')
  end
end

.rails?Boolean

Returns:

  • (Boolean)


108
109
110
111
# File 'lib/rib/app/rails.rb', line 108

def rails?
  File.exist?('./config/boot.rb')    &&
  File.exist?('./config/environment.rb')
end