Skip to content

Commit 613ff0d

Browse files
committed
Migrate to bangseongbeom/ruby-urlpattern
1 parent ad96992 commit 613ff0d

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Ruby Style Guide](https://img.shields.io/badge/code_style-rubocop-brightgreen.svg)](https://github.com/rubocop/rubocop)
44
[![Gem Version](https://badge.fury.io/rb/urlpattern.svg)](https://badge.fury.io/rb/urlpattern)
5-
[![Ruby](https://github.com/urlpattern/ruby-urlpattern/actions/workflows/main.yml/badge.svg)](https://github.com/urlpattern/ruby-urlpattern/actions/workflows/main.yml)
5+
[![Ruby](https://github.com/bangseongbeom/ruby-urlpattern/actions/workflows/main.yml/badge.svg)](https://github.com/bangseongbeom/ruby-urlpattern/actions/workflows/main.yml)
66

77
An implementation of [the URL Pattern Standard](https://urlpattern.spec.whatwg.org/) for Ruby written in Rust.
88

@@ -28,7 +28,7 @@ gem install urlpattern
2828

2929
## Usage
3030

31-
This library aims to expose an interface as close as possible to the URL Pattern Standard, but some differences are unavoidable because it is designed for Ruby, not JavaScript. For the exact details, please refer to [urlpattern.rbs](https://github.com/urlpattern/ruby-urlpattern/blob/main/sig/urlpattern.rbs).
31+
This library aims to expose an interface as close as possible to the URL Pattern Standard, but some differences are unavoidable because it is designed for Ruby, not JavaScript. For the exact details, please refer to [urlpattern.rbs](https://github.com/bangseongbeom/ruby-urlpattern/blob/main/sig/urlpattern.rbs).
3232

3333
Most JavaScript examples from [Chrome for Developers](https://developer.chrome.com/docs/web-platform/urlpattern) and [MDN](https://developer.mozilla.org/en-US/docs/Web/API/URL_Pattern_API) can be adapted to Ruby without much difficulty.
3434

@@ -81,7 +81,7 @@ pattern.test? "https://example.com/TeST" #=> true
8181

8282
Due to limitations in the dependency [denoland/rust-urlpattern](https://github.com/denoland/rust-urlpattern), it may not support all features specified in [the standard](https://urlpattern.spec.whatwg.org/).
8383

84-
Check `skip` in [`test/test_urlpattern.rb`](https://github.com/urlpattern/ruby-urlpattern/blob/main/test/test_urlpattern.rb).
84+
Check `skip` in [`test/test_urlpattern.rb`](https://github.com/bangseongbeom/ruby-urlpattern/blob/main/test/test_urlpattern.rb).
8585

8686
## Development
8787

@@ -91,12 +91,12 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
9191

9292
## Contributing
9393

94-
Bug reports and pull requests are welcome on GitHub at https://github.com/urlpattern/ruby-urlpattern. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/urlpattern/ruby-urlpattern/blob/main/CODE_OF_CONDUCT.md).
94+
Bug reports and pull requests are welcome on GitHub at https://github.com/bangseongbeom/ruby-urlpattern. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/bangseongbeom/ruby-urlpattern/blob/main/CODE_OF_CONDUCT.md).
9595

9696
## License
9797

9898
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
9999

100100
## Code of Conduct
101101

102-
Everyone interacting in the Urlpattern project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/urlpattern/ruby-urlpattern/blob/main/CODE_OF_CONDUCT.md).
102+
Everyone interacting in the Urlpattern project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/bangseongbeom/ruby-urlpattern/blob/main/CODE_OF_CONDUCT.md).

urlpattern.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ Gem::Specification.new do |spec|
1414
1515
It is useful on the server side when serving different pages based on the URL (a.k.a. routing). It provides pattern matching syntax like /users/:id, similar to route parameters in Express or Path-to-RegExp. You can use it as a foundation to build your own web server or framework.
1616
DESCRIPTION
17-
spec.homepage = "https://github.com/urlpattern/ruby-urlpattern"
17+
spec.homepage = "https://github.com/bangseongbeom/ruby-urlpattern"
1818
spec.license = "MIT"
1919
spec.required_ruby_version = ">= 3.2.0"
2020
spec.metadata["homepage_uri"] = spec.homepage
21-
spec.metadata["source_code_uri"] = "https://github.com/urlpattern/ruby-urlpattern"
21+
spec.metadata["source_code_uri"] = "https://github.com/bangseongbeom/ruby-urlpattern"
2222

2323
# Specify which files should be added to the gem when it is released.
2424
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.

0 commit comments

Comments
 (0)