Skip to content

Commit e2336a1

Browse files
committed
Update PHPUnit documentation (12.0)
1 parent 94a161a commit e2336a1

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

lib/docs/filters/phpunit/clean_html.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module Docs
22
class Phpunit
33
class CleanHtmlFilter < Filter
44
def call
5-
@doc = at_css('.section') if not root_page?
5+
@doc = at_css('section') if not root_page?
66

77
css('pre').each do |node|
88
node['class'] = 'highlight'

lib/docs/scrapers/phpunit.rb

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,21 @@ class Phpunit < UrlScraper
1717
options[:title] = false
1818

1919
options[:attribution] = <<-HTML
20-
&copy; 2005&ndash;2020 Sebastian Bergmann<br>
20+
&copy; 2005&ndash;2025 Sebastian Bergmann<br>
2121
Licensed under the Creative Commons Attribution 3.0 Unported License.
2222
HTML
2323

2424
FILTERS = %w(phpunit/clean_html phpunit/entries title)
2525

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+
2635
version '9' do
2736
self.release = '9.5'
2837
self.base_url = "https://phpunit.readthedocs.io/en/#{release}/"

0 commit comments

Comments
 (0)