mirror of
https://github.com/freeCodeCamp/devdocs
synced 2024-11-16 19:48:10 +01:00
parent
ed4507cf4f
commit
1be7a8f37d
2 changed files with 8 additions and 5 deletions
|
@ -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>© 2017 Red Hat, Inc.',
|
'2012-2018 Michael DeHaan<br>© 2018 Red Hat, Inc.',
|
||||||
'GPLv3',
|
'GPLv3',
|
||||||
'https://raw.githubusercontent.com/ansible/ansible/devel/COPYING'
|
'https://raw.githubusercontent.com/ansible/ansible/devel/COPYING'
|
||||||
], [
|
], [
|
||||||
|
|
|
@ -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
|
||||||
© 2012–2017 Michael DeHaan<br>
|
© 2012–2018 Michael DeHaan<br>
|
||||||
© 2017 Red Hat, Inc.<br>
|
© 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
|
||||||
|
|
Loading…
Reference in a new issue