Update Ansible documentation (2.4.3)

Fixes #752.
This commit is contained in:
Thibaut Courouble 2018-03-24 14:49:36 -04:00
parent ed4507cf4f
commit 1be7a8f37d
2 changed files with 8 additions and 5 deletions

View file

@ -92,7 +92,7 @@ credits = [
'https://creativecommons.org/licenses/by/4.0/' 'https://creativecommons.org/licenses/by/4.0/'
], [ ], [
'Ansible', 'Ansible',
'2012-2017 Michael DeHaan<br>&copy; 2017 Red Hat, Inc.', '2012-2018 Michael DeHaan<br>&copy; 2018 Red Hat, Inc.',
'GPLv3', 'GPLv3',
'https://raw.githubusercontent.com/ansible/ansible/devel/COPYING' 'https://raw.githubusercontent.com/ansible/ansible/devel/COPYING'
], [ ], [

View file

@ -2,8 +2,6 @@ module Docs
class Ansible < UrlScraper class Ansible < UrlScraper
self.name = 'Ansible' self.name = 'Ansible'
self.type = 'sphinx' self.type = 'sphinx'
self.release = '2.4.0'
self.base_url = 'https://docs.ansible.com/ansible/latest/'
self.links = { self.links = {
home: 'https://www.ansible.com/', home: 'https://www.ansible.com/',
code: 'https://github.com/ansible/ansible' code: 'https://github.com/ansible/ansible'
@ -20,9 +18,14 @@ module Docs
list_of_all_modules.html) list_of_all_modules.html)
options[:attribution] = <<-HTML options[:attribution] = <<-HTML
&copy; 2012&ndash;2017 Michael DeHaan<br> &copy; 2012&ndash;2018 Michael DeHaan<br>
&copy; 2017 Red Hat, Inc.<br> &copy; 2018 Red Hat, Inc.<br>
Licensed under the GNU General Public License version 3. Licensed under the GNU General Public License version 3.
HTML HTML
version '2.4' do
self.release = '2.4.3'
self.base_url = 'https://docs.ansible.com/ansible/2.4/'
end
end end
end end