Skip to content

Commit b164d85

Browse files
authored
[rb][js] Add funding information to package.json and gemspec files (#14774)
1 parent a169e1a commit b164d85

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

javascript/node/selenium-webdriver/package.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,15 @@
6161
},
6262
"publishConfig": {
6363
"registry": "https://registry.npmjs.org/"
64-
}
64+
},
65+
"funding": [
66+
{
67+
"type": "github",
68+
"url": "https://github.com/sponsors/SeleniumHQ"
69+
},
70+
{
71+
"type": "opencollective",
72+
"url": "https://opencollective.com/selenium"
73+
}
74+
]
6575
}

rb/selenium-devtools.gemspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ Gem::Specification.new do |s|
2323
'changelog_uri' => 'https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES',
2424
'github_repo' => 'ssh://github.com/SeleniumHQ/selenium',
2525
'source_code_uri' => 'https://github.com/SeleniumHQ/selenium/tree/trunk/rb',
26-
'rubygems_mfa_required' => 'true'
26+
'rubygems_mfa_required' => 'true',
27+
'funding_uri' => 'https://github.com/sponsors/SeleniumHQ'
2728
}
2829

2930
s.required_rubygems_version = Gem::Requirement.new('> 1.3.1') if s.respond_to? :required_rubygems_version=

rb/selenium-webdriver.gemspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ Gem::Specification.new do |s|
2424
'changelog_uri' => 'https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES',
2525
'github_repo' => 'ssh://github.com/SeleniumHQ/selenium',
2626
'source_code_uri' => 'https://github.com/SeleniumHQ/selenium/tree/trunk/rb',
27-
'rubygems_mfa_required' => 'true'
27+
'rubygems_mfa_required' => 'true',
28+
'funding_uri' => 'https://github.com/sponsors/SeleniumHQ'
2829
}
2930

3031
s.required_rubygems_version = Gem::Requirement.new('> 1.3.1') if s.respond_to? :required_rubygems_version=

0 commit comments

Comments
 (0)