|
|
@ -196,8 +196,11 @@ def install(module):
|
|
|
|
if module.params['pre_release']:
|
|
|
|
if module.params['pre_release']:
|
|
|
|
cmd.append('--pre')
|
|
|
|
cmd.append('--pre')
|
|
|
|
if not module.params['include_doc']:
|
|
|
|
if not module.params['include_doc']:
|
|
|
|
|
|
|
|
if major and major < 2:
|
|
|
|
cmd.append('--no-rdoc')
|
|
|
|
cmd.append('--no-rdoc')
|
|
|
|
cmd.append('--no-ri')
|
|
|
|
cmd.append('--no-ri')
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
cmd.append('--no-document')
|
|
|
|
cmd.append(module.params['gem_source'])
|
|
|
|
cmd.append(module.params['gem_source'])
|
|
|
|
if module.params['build_flags']:
|
|
|
|
if module.params['build_flags']:
|
|
|
|
cmd.extend([ '--', module.params['build_flags'] ])
|
|
|
|
cmd.extend([ '--', module.params['build_flags'] ])
|
|
|
|