Explorar el Código

Update Ansible documentation ()

Simon Legner hace 4 años
padre
commit
2fa27c3404
Se han modificado 2 ficheros con 7 adiciones y 2 borrados
  1. 3 2
      lib/docs/filters/ansible/entries.rb
  2. 4 0
      lib/docs/scrapers/ansible.rb

+ 3 - 2
lib/docs/filters/ansible/entries.rb

@@ -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

+ 4 - 0
lib/docs/scrapers/ansible.rb

@@ -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}/"