Class: Gem::Commands::SetupCommand

Inherits:
Gem::Command show all
Defined in:
lib/rubygems/commands/setup_command.rb

Overview

Installs RubyGems itself. This command is ordinarily only available from a RubyGems checkout or tarball.

Constant Summary

Constant Summary

Constants inherited from Gem::Command

Gem::Command::HELP

Instance Attribute Summary

Attributes inherited from Gem::Command

#command, #defaults, #options, #program_name, #summary

Instance Method Summary (collapse)

Methods inherited from Gem::Command

add_common_option, #add_extra_args, #add_option, add_specific_extra_args, #arguments, #begins?, build_args, build_args=, common_options, extra_args, extra_args=, #get_all_gem_names, #get_one_gem_name, #get_one_optional_argument, #handle_options, #handles?, #invoke, #merge_options, #remove_option, #show_help, #show_lookup_failure, specific_extra_args, specific_extra_args_hash, #usage, #when_invoked

Methods included from UserInteraction

#methname

Methods included from DefaultUserInteraction

ui, #ui, #ui=, ui=, use_ui, #use_ui

Constructor Details

- (SetupCommand) initialize

A new instance of SetupCommand



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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/rubygems/commands/setup_command.rb', line 9

def initialize
  require 'tmpdir'

  super 'setup', 'Install RubyGems',
        :format_executable => true, :rdoc => true, :ri => true,
        :site_or_vendor => :sitelibdir,
        :destdir => '', :prefix => ''

  add_option '--prefix=PREFIX',
             'Prefix path for installing RubyGems',
             'Will not affect gem repository location' do |prefix, options|
    options[:prefix] = File.expand_path prefix
  end

  add_option '--destdir=DESTDIR',
             'Root directory to install RubyGems into',
             'Mainly used for packaging RubyGems' do |destdir, options|
    options[:destdir] = File.expand_path destdir
  end

  add_option '--[no-]vendor',
             'Install into vendorlibdir not sitelibdir',
             '(Requires Ruby 1.8.7)' do |vendor, options|
    if vendor and Gem.ruby_version < Gem::Version.new('1.8.7') then
      raise OptionParser::InvalidOption,
            "requires ruby 1.8.7+ (you have #{Gem.ruby_version})"
    end

    options[:site_or_vendor] = vendor ? :vendorlibdir : :sitelibdir
  end

  add_option '--[no-]format-executable',
             'Makes `gem` match ruby',
             'If ruby is ruby18, gem will be gem18' do |value, options|
    options[:format_executable] = value
  end

  add_option '--[no-]rdoc',
             'Generate RDoc documentation for RubyGems' do |value, options|
    options[:rdoc] = value
  end

  add_option '--[no-]ri',
             'Generate RI documentation for RubyGems' do |value, options|
    options[:ri] = value
  end
end

Instance Method Details

- (Object) check_ruby_version



57
58
59
60
61
62
63
64
# File 'lib/rubygems/commands/setup_command.rb', line 57

def check_ruby_version
  required_version = Gem::Requirement.new '>= 1.8.6'

  unless required_version.satisfied_by? Gem.ruby_version then
    alert_error "Expected Ruby version #{required_version}, is #{Gem.ruby_version}"
    terminate_interaction 1
  end
end

- (Object) defaults_str

:nodoc:



66
67
68
# File 'lib/rubygems/commands/setup_command.rb', line 66

def defaults_str # :nodoc:
  "--format-executable --rdoc --ri"
end

- (Object) description

:nodoc:



70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# File 'lib/rubygems/commands/setup_command.rb', line 70

def description # :nodoc:
  <<-EOF
Installs RubyGems itself.

RubyGems installs RDoc for itself in GEM_HOME.  By default this is:
#{Gem.dir}

If you prefer a different directory, set the GEM_HOME environment variable.

RubyGems will install the gem command with a name matching ruby's
prefix and suffix.  If ruby was installed as `ruby18`, gem will be
installed as `gem18`.

By default, this RubyGems will install gem as:
#{Gem.default_exec_format % 'gem'}
  EOF
end

- (Object) execute



88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
# File 'lib/rubygems/commands/setup_command.rb', line 88

def execute
  @verbose = Gem.configuration.really_verbose

  install_destdir = options[:destdir]

  unless install_destdir.empty? then
    ENV['GEM_HOME'] ||= File.join(install_destdir,
                                  Gem.default_dir.gsub(/^[a-zA-Z]:/, ''))
  end

  check_ruby_version

  require 'fileutils'
  if Gem.configuration.really_verbose then
    extend FileUtils::Verbose
  else
    extend FileUtils
  end

  lib_dir, bin_dir = make_destination_dirs install_destdir

  install_lib lib_dir

  install_executables bin_dir

  remove_old_bin_files bin_dir

  remove_source_caches install_destdir

  say "RubyGems #{Gem::VERSION} installed"

  uninstall_old_gemcutter

  install_rdoc

  say
  if @verbose then
    say "-" * 78
    say
  end

  release_notes = File.join Dir.pwd, 'History.txt'

  release_notes = if File.exist? release_notes then
                    open release_notes do |io|
                      text = io.gets '==='
                      text << io.gets('===')
                      text[0...-3]
                    end
                  else
                    "Oh-no! Unable to find release notes!"
                  end

  say release_notes

  say
  say "-" * 78
  say

  say "RubyGems installed the following executables:"
  say @bin_file_names.map { |name| "\t#{name}\n" }
  say

  unless @bin_file_names.grep(/#{File::SEPARATOR}gem$/) then
    say "If `gem` was installed by a previous RubyGems installation, you may need"
    say "to remove it by hand."
    say
  end
end

- (Object) install_executables(bin_dir)



158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
# File 'lib/rubygems/commands/setup_command.rb', line 158

def install_executables(bin_dir)
  say "Installing gem executable" if @verbose

  @bin_file_names = []

  Dir.chdir 'bin' do
    bin_files = Dir['*']

    bin_files.delete 'update_rubygems'

    bin_files.each do |bin_file|
      bin_file_formatted = if options[:format_executable] then
                             Gem.default_exec_format % bin_file
                           else
                             bin_file
                           end

      dest_file = File.join bin_dir, bin_file_formatted
      bin_tmp_file = File.join Dir.tmpdir, bin_file

      begin
        bin = File.readlines bin_file
        bin[0] = "#!#{Gem.ruby}\n"

        File.open bin_tmp_file, 'w' do |fp|
          fp.puts bin.join
        end

        install bin_tmp_file, dest_file, :mode => 0755
        @bin_file_names << dest_file
      ensure
        rm bin_tmp_file
      end

      next unless Gem.win_platform?

      begin
        bin_cmd_file = File.join Dir.tmpdir, "#{bin_file}.bat"

        File.open bin_cmd_file, 'w' do |file|
          file.puts <<-TEXT
@ECHO OFF
IF NOT "%~f0" == "~f0" GOTO :WinNT
@"#{File.basename(Gem.ruby).chomp('"')}" "#{dest_file}" %1 %2 %3 %4 %5 %6 %7 %8 %9
GOTO :EOF
:WinNT
@"#{File.basename(Gem.ruby).chomp('"')}" "%~dpn0" %*
TEXT
        end

        install bin_cmd_file, "#{dest_file}.bat", :mode => 0755
      ensure
        rm bin_cmd_file
      end
    end
  end
end

- (Object) install_lib(lib_dir)



216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
# File 'lib/rubygems/commands/setup_command.rb', line 216

def install_lib(lib_dir)
  say "Installing RubyGems" if @verbose

  Dir.chdir 'lib' do
    lib_files = Dir[File.join('**', '*rb')]

    lib_files.each do |lib_file|
      dest_file = File.join lib_dir, lib_file
      dest_dir = File.dirname dest_file
      mkdir_p dest_dir unless File.directory? dest_dir

      install lib_file, dest_file, :mode => 0644
    end
  end
end

- (Object) install_rdoc



232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
# File 'lib/rubygems/commands/setup_command.rb', line 232

def install_rdoc
  gem_doc_dir = File.join Gem.dir, 'doc'
  rubygems_name = "rubygems-#{Gem::VERSION}"
  rubygems_doc_dir = File.join gem_doc_dir, rubygems_name

  if File.writable? gem_doc_dir and
     (not File.exist? rubygems_doc_dir or
      File.writable? rubygems_doc_dir) then
    say "Removing old RubyGems RDoc and ri" if @verbose
    Dir[File.join(Gem.dir, 'doc', 'rubygems-[0-9]*')].each do |dir|
      rm_rf dir
    end

    if options[:ri] then
      ri_dir = File.join rubygems_doc_dir, 'ri'
      say "Installing #{rubygems_name} ri into #{ri_dir}" if @verbose
      run_rdoc '--ri', '--op', ri_dir
    end

    if options[:rdoc] then
      rdoc_dir = File.join rubygems_doc_dir, 'rdoc'
      say "Installing #{rubygems_name} rdoc into #{rdoc_dir}" if @verbose
      run_rdoc '--op', rdoc_dir
    end
  elsif @verbose then
    say "Skipping RDoc generation, #{gem_doc_dir} not writable"
    say "Set the GEM_HOME environment variable if you want RDoc generated"
  end
end

- (Object) make_destination_dirs(install_destdir)



262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
# File 'lib/rubygems/commands/setup_command.rb', line 262

def make_destination_dirs(install_destdir)
  lib_dir = nil
  bin_dir = nil

  prefix = options[:prefix]
  site_or_vendor = options[:site_or_vendor]

  if prefix.empty? then
    lib_dir = Gem::ConfigMap[site_or_vendor]
    bin_dir = Gem::ConfigMap[:bindir]
  else
    # Apple installed RubyGems into libdir, and RubyGems <= 1.1.0 gets
    # confused about installation location, so switch back to
    # sitelibdir/vendorlibdir.
    if defined?(APPLE_GEM_HOME) and
      # just in case Apple and RubyGems don't get this patched up proper.
      (prefix == Gem::ConfigMap[:libdir] or
       # this one is important
       prefix == File.join(Gem::ConfigMap[:libdir], 'ruby')) then
       lib_dir = Gem::ConfigMap[site_or_vendor]
       bin_dir = Gem::ConfigMap[:bindir]
    else
      lib_dir = File.join prefix, 'lib'
      bin_dir = File.join prefix, 'bin'
    end
  end

  unless install_destdir.empty? then
    lib_dir = File.join install_destdir, lib_dir.gsub(/^[a-zA-Z]:/, '')
    bin_dir = File.join install_destdir, bin_dir.gsub(/^[a-zA-Z]:/, '')
  end

  mkdir_p lib_dir
  mkdir_p bin_dir

  return lib_dir, bin_dir
end

- (Object) remove_old_bin_files(bin_dir)



300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
# File 'lib/rubygems/commands/setup_command.rb', line 300

def remove_old_bin_files(bin_dir)
  old_bin_files = {
    'gem_mirror' => 'gem mirror',
    'gem_server' => 'gem server',
    'gemlock' => 'gem lock',
    'gemri' => 'ri',
    'gemwhich' => 'gem which',
    'index_gem_repository.rb' => 'gem generate_index',
  }

  old_bin_files.each do |old_bin_file, new_name|
    old_bin_path = File.join bin_dir, old_bin_file
    next unless File.exist? old_bin_path

    deprecation_message = "`#{old_bin_file}` has been deprecated.  Use `#{new_name}` instead."

    File.open old_bin_path, 'w' do |fp|
      fp.write <<-EOF
#!#{Gem.ruby}

abort "#{deprecation_message}"
  EOF
    end

    next unless Gem.win_platform?

    File.open "#{old_bin_path}.bat", 'w' do |fp|
      fp.puts %{@ECHO.#{deprecation_message}}
    end
  end
end

- (Object) remove_source_caches(install_destdir)



332
333
334
335
336
337
338
339
340
341
342
343
344
345
# File 'lib/rubygems/commands/setup_command.rb', line 332

def remove_source_caches(install_destdir)
  if install_destdir.empty?
    require 'rubygems/source_info_cache'

    user_cache_file = File.join(install_destdir,
                                Gem::SourceInfoCache.user_cache_file)
    system_cache_file = File.join(install_destdir,
                                  Gem::SourceInfoCache.system_cache_file)

    say "Removing old source_cache files" if Gem.configuration.really_verbose
    rm_f user_cache_file if File.writable? File.dirname(user_cache_file)
    rm_f system_cache_file if File.writable? File.dirname(system_cache_file)
  end
end

- (Object) run_rdoc(*args)



347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
# File 'lib/rubygems/commands/setup_command.rb', line 347

def run_rdoc(*args)
  begin
    gem 'rdoc'
  rescue Gem::LoadError
  end

  require 'rdoc/rdoc'

  args << '--quiet'
  args << '--main' << 'README'
  args << '.' << 'README' << 'LICENSE.txt' << 'GPL.txt'

  r = RDoc::RDoc.new
  r.document args
end

- (Object) uninstall_old_gemcutter



363
364
365
366
367
368
369
370
# File 'lib/rubygems/commands/setup_command.rb', line 363

def uninstall_old_gemcutter
  require 'rubygems/uninstaller'

  ui = Gem::Uninstaller.new('gemcutter', :all => true, :ignore => true,
                            :version => '< 0.4')
  ui.uninstall
rescue Gem::InstallError
end