| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- module Docs
- class Ansible < UrlScraper
- self.name = 'Ansible'
- self.type = 'sphinx'
- self.links = {
- home: 'https://www.ansible.com/',
- code: 'https://github.com/ansible/ansible'
- }
- html_filters.push 'ansible/entries', 'sphinx/clean_html', 'ansible/clean_html'
- options[:attribution] = <<-HTML
- © 2012–2018 Michael DeHaan<br>
- © 2018–2019 Red Hat, Inc.<br>
- Licensed under the GNU General Public License version 3.
- HTML
- options[:skip] = %w(
- installation_guide/index.html
- reference_appendices/glossary.html
- reference_appendices/faq.html
- reference_appendices/tower.html
- user_guide/quickstart.html
- modules/modules_by_category.html
- modules/list_of_all_modules.html)
- options[:skip_patterns] = [
- /\Acommunity.*/i,
- /\Adev_guide.*/i,
- /\Aroadmap.*/i,
- ]
- version '2.9' do
- self.release = '2.9.1'
- self.base_url = "https://docs.ansible.com/ansible/#{version}/"
- end
- version '2.8' do
- self.release = '2.8.7'
- self.base_url = "https://docs.ansible.com/ansible/#{version}/"
- end
- version '2.7' do
- self.release = '2.7.15'
- self.base_url = "https://docs.ansible.com/ansible/#{version}/"
- end
- version '2.6' do
- self.release = '2.6.20'
- self.base_url = "https://docs.ansible.com/ansible/#{version}/"
- end
- version '2.5' do
- self.release = '2.5.15'
- self.base_url = "https://docs.ansible.com/ansible/#{version}/"
- end
- version '2.4' do
- self.release = '2.4.6'
- self.base_url = "https://docs.ansible.com/ansible/#{version}/"
- options[:skip] = %w(
- glossary.html
- faq.html
- community.html
- tower.html
- quickstart.html
- list_of_all_modules.html)
- options[:skip_patterns] = []
- end
- def get_latest_version(opts)
- doc = fetch_doc('https://docs.ansible.com/ansible/latest/index.html', opts)
- doc.at_css('.version').content.strip
- end
- end
- end
|