codeowners_rs 0.1.0-x86_64-linux → 0.1.1-x86_64-linux

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8454e75ac7b037322a9a9e67c22d41834f4d13ecb2e2e1bf08b2f9d422ca5b52
4
- data.tar.gz: 9d033c1f05ebf708ccca4c2c2926b3ffa99878e513708f98b8967ebd1b5733e0
3
+ metadata.gz: e332bbb6f15942d0f1f8a6cfdd2258fb084b05f97a3e6cb1a7a7710ade721d8d
4
+ data.tar.gz: '0644873d9a0afccf3c563c6522ec518b92ecb8db902507a6f31e22c1e7ec008d'
5
5
  SHA512:
6
- metadata.gz: bab61737da5c2eca2024404749c8413e25561488090955cb98b8c2336c771c7dc75f478cefb60a5a47f7f3d8b7bf34e3f2da7a65507832af0235adc279fcdcd7
7
- data.tar.gz: 127c9c970cfe2c8f93051a495a5144ae3d395b4d979b7aa725a8356e1469f7c044aaa86c97aa18ce5387c5f7a1dae78d898a2301f466c6bb6b2fcaec7c4f806c
6
+ metadata.gz: 80e3eef73726c44cd75988854b8ea21174a512c14ea433029ec3dd6c1510d264725543bfe1963739bcc78ba9ea3c63eda001aa65defddebcdee30de545770f91
7
+ data.tar.gz: 6d06166bb2343d87b6b7163a5226ff731d0f8b3afe7ccb6d1202e05456c98a4c5781cea7f3595b3fb10d46a30f44595fdfc7f9ad8363f0f08bc5d99356cde385
data/README.md CHANGED
@@ -21,7 +21,7 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
21
21
 
22
22
  ## Releasing
23
23
 
24
- To create a new release, push a new version tag to GitHub, like v0.1.0. The `release.yml` workflow takes care of cross compilation and pushing to RubyGems.
24
+ To create a new release, push a new version tag to GitHub. The `release.yml` workflow takes care of cross compilation and pushing to RubyGems.
25
25
 
26
26
  ## Contributing
27
27
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CodeownersRs
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: codeowners_rs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Reid Lynch
@@ -17,10 +17,8 @@ executables: []
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
- - ".ruby-version"
21
20
  - LICENSE.txt
22
21
  - README.md
23
- - Rakefile
24
22
  - lib/codeowners_rs.rb
25
23
  - lib/codeowners_rs/3.0/codeowners_rs.so
26
24
  - lib/codeowners_rs/3.1/codeowners_rs.so
@@ -31,7 +29,6 @@ files:
31
29
  - lib/codeowners_rs/rule.rb
32
30
  - lib/codeowners_rs/ruleset.rb
33
31
  - lib/codeowners_rs/version.rb
34
- - sig/codeowners_rs.rbs
35
32
  homepage: https://github.com/wrapbook/codeowners_rs
36
33
  licenses:
37
34
  - MIT
data/.ruby-version DELETED
@@ -1 +0,0 @@
1
- 3.4.8
data/Rakefile DELETED
@@ -1,20 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require "bundler/gem_tasks"
4
- require "rspec/core/rake_task"
5
- require "rubocop/rake_task"
6
- require "rb_sys/extensiontask"
7
-
8
- GEMSPEC = Gem::Specification.load("codeowners_rs.gemspec")
9
-
10
- RSpec::Core::RakeTask.new(:spec)
11
- RuboCop::RakeTask.new
12
-
13
- RbSys::ExtensionTask.new("codeowners_rs", GEMSPEC) do |ext|
14
- ext.lib_dir = "lib/codeowners_rs"
15
- end
16
-
17
- desc "Build the native extension and the gem"
18
- task build: :compile
19
-
20
- task default: %i[compile spec rubocop]
@@ -1,4 +0,0 @@
1
- module CodeownersRs
2
- VERSION: String
3
- # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
- end