Skip to content

Commit bab3064

Browse files
committed
Transfer to ruby-go-gem org
1 parent 00199a9 commit bab3064

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

.github/workflows/rbs-collection-updater.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,16 @@ jobs:
2222
- uses: actions/create-github-app-token@v1
2323
id: app-token
2424
with:
25-
app-id: ${{ secrets.GH_APP_ID }}
26-
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
25+
app-id: ${{ secrets.RUBY_GO_GEM_BOT_APP_ID }}
26+
private-key: ${{ secrets.RUBY_GO_GEM_BOT_PRIVATE_KEY }}
2727

2828
- uses: peter-evans/create-pull-request@v7
2929
with:
3030
token: ${{ steps.app-token.outputs.token }}
3131
committer: GitHub <noreply@github.com>
3232
title: "Update rbs_collection.lock.yaml"
3333
commit-message: "Run `bundle exe rbs collection update`"
34+
labels: rbs-collection-updater
3435

3536
- name: Slack Notification
3637
uses: act10ns/slack@v2

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## [Unreleased]
2-
[full changelog](http://github.com/sue445/ruby_header_parser/compare/v0.1.0...main)
2+
[full changelog](http://github.com/ruby-go-gem/ruby_header_parser/compare/v0.1.0...main)
33

4-
## [0.1.0](https://github.com/sue445/ruby_header_parser/releases/tag/v0.1.0) - 2024-10-14
4+
## [0.1.0](https://github.com/ruby-go-gem/ruby_header_parser/releases/tag/v0.1.0) - 2024-10-14
55

66
- Initial release

CONFIG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ enum:
4545
```
4646
4747
## Full configuration file
48-
[config/default.yml](config/default.yml) is used by https://github.com/sue445/go-gem-wrapper to generate bindings for Go.
48+
[config/default.yml](config/default.yml) is used by https://github.com/ruby-go-gem/go-gem-wrapper to generate bindings for Go.
4949
5050
## `function.include_name`, `struct.include_name`, `type.include_name`, `enum.include_name`
5151
Return functions and structures that match the condition with a [RubyHeaderParser::Parser](lib/ruby_header_parser/parser.rb)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Parser for `ruby.h`
33

44
[![Gem Version](https://badge.fury.io/rb/ruby_header_parser.svg)](https://badge.fury.io/rb/ruby_header_parser)
5-
[![test](https://github.com/sue445/ruby_header_parser/actions/workflows/test.yml/badge.svg)](https://github.com/sue445/ruby_header_parser/actions/workflows/test.yml)
5+
[![test](https://github.com/ruby-go-gem/ruby_header_parser/actions/workflows/test.yml/badge.svg)](https://github.com/ruby-go-gem/ruby_header_parser/actions/workflows/test.yml)
66

77
## Installation
88

@@ -49,7 +49,7 @@ enum_definitions = parser.extract_enum_definitions
4949

5050
See below for details.
5151

52-
https://sue445.github.io/ruby_header_parser/RubyHeaderParser/Parser.html
52+
https://ruby-go-gem.github.io/ruby_header_parser/RubyHeaderParser/Parser.html
5353

5454
See [CONFIG.md](CONFIG.md) for config file details
5555

@@ -61,7 +61,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
6161

6262
## Contributing
6363

64-
Bug reports and pull requests are welcome on GitHub at https://github.com/sue445/ruby_header_parser.
64+
Bug reports and pull requests are welcome on GitHub at https://github.com/ruby-go-gem/ruby_header_parser.
6565

6666
## License
6767

ruby_header_parser.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ Gem::Specification.new do |spec|
1010

1111
spec.summary = "Parser for ruby.h"
1212
spec.description = "Parser for ruby.h"
13-
spec.homepage = "https://github.com/sue445/ruby_header_parser"
13+
spec.homepage = "https://github.com/ruby-go-gem/ruby_header_parser"
1414
spec.license = "MIT"
1515
spec.required_ruby_version = ">= 3.3.0"
1616

1717
spec.metadata["homepage_uri"] = spec.homepage
1818
spec.metadata["source_code_uri"] = spec.homepage
1919
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
20-
spec.metadata["documentation_uri"] = "https://sue445.github.io/ruby_header_parser/"
20+
spec.metadata["documentation_uri"] = "https://ruby-go-gem.github.io/ruby_header_parser/"
2121
spec.metadata["rubygems_mfa_required"] = "true"
2222

2323
# Specify which files should be added to the gem when it is released.

0 commit comments

Comments
 (0)