Update Ansible documentation ()

pull/1663/head
Simon Legner 3 years ago
parent 0b8f7c6057
commit 2fa27c3404

@ -4,11 +4,12 @@ module Docs
def get_name
name = at_css('h1').content.strip
name.remove! "\u{00B6}"
name.remove! "\u{f0c1}"
name.remove! %r{ \- .*}
name.remove! 'Introduction To '
name.remove! %r{ Guide\z}
if version == "2.10"
if version >= "2.10" || version == ""
if slug =~ /\Acollections\// and slug !~ /index$/
name = name.split('.')[2]
end
@ -28,7 +29,7 @@ module Docs
end
end
if version >= "2.10"
if version >= "2.10" || version == ""
if slug =~ /\Acollections\//
return "Collection #{slug.split('/')[1..-2].join(".")}"
end

@ -32,6 +32,10 @@ module Docs
/\Aroadmap.*/i,
]
version do
self.base_url = "https://docs.ansible.com/ansible/latest/"
end
version '2.11' do
self.release = '2.11.0'
self.base_url = "https://docs.ansible.com/ansible/#{version}/"

Loading…
Cancel
Save