Class: Rails::GemBoot

Inherits:
Boot show all
Defined in:
lib/six-updater-web/config/boot.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Boot

#run

Class Method Details

.gem_versionObject



76
77
78
79
80
81
82
83
84
# File 'lib/six-updater-web/config/boot.rb', line 76

def gem_version
  if defined? RAILS_GEM_VERSION
    RAILS_GEM_VERSION
  elsif ENV.include?('RAILS_GEM_VERSION')
    ENV['RAILS_GEM_VERSION']
  else
    parse_gem_version(read_environment_rb)
  end
end

.load_rubygemsObject



86
87
88
89
90
91
92
93
94
95
96
97
# File 'lib/six-updater-web/config/boot.rb', line 86

def load_rubygems
  require 'rubygems'
  min_version = '1.3.1'
  unless rubygems_version >= min_version
    $stderr.puts %Q(Rails requires RubyGems >= #{min_version} (you have #{rubygems_version}). Please `gem update --system` and try again.)
    exit 1
  end

rescue LoadError
  $stderr.puts %Q(Rails requires RubyGems >= #{min_version}. Please install RubyGems and try again: http://rubygems.rubyforge.org)
  exit 1
end

.parse_gem_version(text) ⇒ Object



99
100
101
# File 'lib/six-updater-web/config/boot.rb', line 99

def parse_gem_version(text)
  $1 if text =~ /^[^#]*RAILS_GEM_VERSION\s*=\s*["']([!~<>=]*\s*[\d.]+)["']/
end

.rubygems_versionObject



72
73
74
# File 'lib/six-updater-web/config/boot.rb', line 72

def rubygems_version
  Gem::RubyGemsVersion rescue nil
end

Instance Method Details

#load_initializerObject



54
55
56
57
58
# File 'lib/six-updater-web/config/boot.rb', line 54

def load_initializer
  self.class.load_rubygems
  load_rails_gem
  require 'initializer'
end

#load_rails_gemObject



60
61
62
63
64
65
66
67
68
69
# File 'lib/six-updater-web/config/boot.rb', line 60

def load_rails_gem
  if version = self.class.gem_version
    gem 'rails', version
  else
    gem 'rails'
  end
rescue Gem::LoadError => load_error
  $stderr.puts %(Missing the Rails #{version} gem. Please `gem install -v=#{version} rails`, update your RAILS_GEM_VERSION setting in config/environment.rb for the Rails version you do have installed, or comment out RAILS_GEM_VERSION to use the latest version installed.)
  exit 1
end