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 +4 -4
- data/README.md +1 -1
- data/lib/codeowners_rs/version.rb +1 -1
- metadata +1 -4
- data/.ruby-version +0 -1
- data/Rakefile +0 -20
- data/sig/codeowners_rs.rbs +0 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e332bbb6f15942d0f1f8a6cfdd2258fb084b05f97a3e6cb1a7a7710ade721d8d
|
|
4
|
+
data.tar.gz: '0644873d9a0afccf3c563c6522ec518b92ecb8db902507a6f31e22c1e7ec008d'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
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
|
|
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.
|
|
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]
|
data/sig/codeowners_rs.rbs
DELETED