Adding version detection
This commit is contained in:
parent
04add7409e
commit
9ffde6c048
1 changed files with 6 additions and 3 deletions
|
@ -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'] ])
|
||||||
|
|
Loading…
Reference in a new issue