Module: Gem::InstallUpdateOptions

Included in:
InstallCommand, UpdateCommand
Defined in:
lib/rubygems/gem_commands.rb

Overview

Mixin methods and OptionParser options specific to the gem install command.

Instance Method Summary collapse

Instance Method Details

#add_install_update_optionsObject

Add the install/update options to the option parser.



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
157
158
159
160
161
162
163
164
165
166
# File 'lib/rubygems/gem_commands.rb', line 105

def add_install_update_options
  add_option('-i', '--install-dir DIR',
             'Gem repository directory to get installed',
             'gems.') do |value, options|
    options[:install_dir] = File.expand_path(value)
  end

  add_option('-d', '--[no-]rdoc', 
             'Generate RDoc documentation for the gem on',
             'install') do |value, options|
    options[:generate_rdoc] = value
  end

  add_option('--[no-]ri', 
             'Generate RI documentation for the gem on',
             'install') do |value, options|
    options[:generate_ri] = value
  end

  add_option('-E', '--env-shebang',
             "Rewrite the shebang line on installed",
             "scripts to use /usr/bin/env") do |value, options|
    options[:env_shebang] = value
  end

  add_option('-f', '--[no-]force', 
             'Force gem to install, bypassing dependency',
             'checks') do |value, options|
    options[:force] = value
  end

  add_option('-t', '--[no-]test', 
    'Run unit tests prior to installation') do 
    |value, options|
    options[:test] = value
  end

  add_option('-w', '--[no-]wrappers', 
    'Use bin wrappers for executables',
    'Not available on dosish platforms') do 
    |value, options|
    options[:wrappers] = value
  end

  add_option('-P', '--trust-policy POLICY', 
    'Specify gem trust policy.') do 
    |value, options|
    options[:security_policy] = value
  end

  add_option('--ignore-dependencies',
    'Do not install any required dependent gems') do 
    |value, options|
    options[:ignore_dependencies] = value
  end

  add_option('-y', '--include-dependencies',
             'Unconditionally install the required',
             'dependent gems') do |value, options|
    options[:include_dependencies] = value
  end
end

#install_update_defaults_strObject

Default options for the gem install command.



169
170
171
# File 'lib/rubygems/gem_commands.rb', line 169

def install_update_defaults_str
  '--rdoc --no-force --no-test --wrappers'
end