File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ module Docs
2
2
class Phpunit
3
3
class CleanHtmlFilter < Filter
4
4
def call
5
- @doc = at_css ( '. section' ) if not root_page?
5
+ @doc = at_css ( 'section' ) if not root_page?
6
6
7
7
css ( 'pre' ) . each do |node |
8
8
node [ 'class' ] = 'highlight'
Original file line number Diff line number Diff line change @@ -17,12 +17,21 @@ class Phpunit < UrlScraper
17
17
options [ :title ] = false
18
18
19
19
options [ :attribution ] = <<-HTML
20
- © 2005–2020 Sebastian Bergmann< br >
20
+ © 2005–2025 Sebastian Bergmann< br >
21
21
Licensed under the Creative Commons Attribution 3.0 Unported License.
22
22
HTML
23
23
24
24
FILTERS = %w( phpunit/clean_html phpunit/entries title )
25
25
26
+ version do
27
+ self . release = '12.0'
28
+ self . base_url = "https://docs.phpunit.de/en/#{ release } /"
29
+
30
+ html_filters . push FILTERS
31
+
32
+ options [ :container ] = '.document'
33
+ end
34
+
26
35
version '9' do
27
36
self . release = '9.5'
28
37
self . base_url = "https://phpunit.readthedocs.io/en/#{ release } /"
You can’t perform that action at this time.
0 commit comments