Skip to content

Commit cdfffd6

Browse files
authored
Merge pull request #1 from freeCodeCamp/main
pull from upstream
2 parents 55b4b0a + 052cc9f commit cdfffd6

File tree

7 files changed

+16
-11
lines changed

7 files changed

+16
-11
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
1515
- name: Set up Ruby
16-
uses: ruby/setup-ruby@f26937343756480a8cb3ae1f623b9c8d89ed6984 # v1.196.0
16+
uses: ruby/setup-ruby@7bae1d00b5db9166f4f0fc47985a3a5702cb58f0 # v1.197.0
1717
with:
1818
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
1919
- name: Run tests

.github/workflows/schedule-doc-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
1313
- name: Set up Ruby
14-
uses: ruby/setup-ruby@f26937343756480a8cb3ae1f623b9c8d89ed6984 # v1.196.0
14+
uses: ruby/setup-ruby@7bae1d00b5db9166f4f0fc47985a3a5702cb58f0 # v1.197.0
1515
with:
1616
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
1717
- name: Generate report

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
test:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
12+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1313
- name: Set up Ruby
14-
uses: ruby/setup-ruby@f26937343756480a8cb3ae1f623b9c8d89ed6984 # v1.196.0
14+
uses: ruby/setup-ruby@7bae1d00b5db9166f4f0fc47985a3a5702cb58f0 # v1.197.0
1515
with:
1616
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
1717
- name: Run tests

Gemfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
activesupport (7.2.1)
4+
activesupport (7.2.1.2)
55
base64
66
bigdecimal
77
concurrent-ruby (~> 1.0, >= 1.3.1)
@@ -38,7 +38,7 @@ GEM
3838
html-pipeline (2.14.3)
3939
activesupport (>= 2)
4040
nokogiri (>= 1.4)
41-
i18n (1.14.5)
41+
i18n (1.14.6)
4242
concurrent-ruby (~> 1.0)
4343
image_optim (0.31.3)
4444
exifr (~> 1.2, >= 1.2.2)
@@ -51,7 +51,7 @@ GEM
5151
image_optim (~> 0.19)
5252
image_size (3.3.0)
5353
in_threads (1.6.0)
54-
logger (1.6.0)
54+
logger (1.6.1)
5555
method_source (1.0.0)
5656
mini_portile2 (2.8.7)
5757
minitest (5.25.1)
@@ -74,7 +74,7 @@ GEM
7474
byebug (~> 11.0)
7575
pry (>= 0.13, < 0.15)
7676
racc (1.7.3)
77-
rack (2.2.9)
77+
rack (2.2.10)
7878
rack-protection (3.2.0)
7979
base64 (>= 0.1.0)
8080
rack (~> 2.2, >= 2.2.4)

lib/docs/scrapers/ansible.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Ansible < UrlScraper
1111

1212
options[:attribution] = <<-HTML
1313
&copy; 2012&ndash;2018 Michael DeHaan<br>
14-
&copy; 2018&ndash;2021 Red Hat, Inc.<br>
14+
&copy; 2018&ndash;2024 Red Hat, Inc.<br>
1515
Licensed under the GNU General Public License version 3.
1616
HTML
1717

lib/docs/scrapers/crystal.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module Docs
22
class Crystal < UrlScraper
33
include MultipleBaseUrls
44
self.type = 'crystal'
5-
self.release = '1.13.1'
5+
self.release = '1.14.0'
66
self.base_urls = [
77
"https://crystal-lang.org/api/#{release}/",
88
"https://crystal-lang.org/reference/#{release[0..2]}/",

lib/docs/scrapers/haproxy.rb

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,15 @@ class Haproxy < UrlScraper
1616
options[:follow_links] = false
1717

1818
options[:attribution] = <<-HTML
19-
&copy; 2023 Willy Tarreau, HAProxy contributors<br>
19+
&copy; 2024 Willy Tarreau, HAProxy contributors<br>
2020
Licensed under the GNU General Public License version 2.
2121
HTML
2222

23+
version '3.0' do
24+
self.release = '3.0.0'
25+
self.base_url = "https://docs.haproxy.org/#{self.version}/"
26+
end
27+
2328
version '2.9' do
2429
self.release = '2.9.0'
2530
self.base_url = "https://docs.haproxy.org/#{self.version}/"

0 commit comments

Comments
 (0)