abbrev 0.1.1 → 0.1.2
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/.github/workflows/test.yml +9 -10
- data/abbrev.gemspec +9 -2
- data/lib/abbrev.rb +1 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e5a8f3a9bd5684a193b45c77f1120d28088d9b0fd0bfe750326de395d9f93a9b
|
4
|
+
data.tar.gz: b4a9e47c146a95e6d17e6c5450373f3f383704dd8113b435a7b9572162c36654
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f52850c6cc2dbda0b8def03c9af52be320ba0324facbdbc6331d38c2d54560a3f65c88a323f5973a64eac2e3d66dcb76ded8147336bea1b922534b2f24615c7
|
7
|
+
data.tar.gz: 06b9d0ab20955f7f5256d8eae8925676c06e9fdcf20eee4acfd9cad30f06d05300976f1c7a8a49d7f2b3bae7612976066aca788ad04eabb62ed4d9d2f7ad1952
|
data/.github/workflows/test.yml
CHANGED
@@ -4,24 +4,23 @@ on: [push, pull_request]
|
|
4
4
|
|
5
5
|
jobs:
|
6
6
|
ruby-versions:
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
- id: versions
|
12
|
-
run: |
|
13
|
-
versions=$(curl -s 'https://cache.ruby-lang.org/pub/misc/ci_versions/all.json' | jq -c '. + ["2.5"]')
|
14
|
-
echo "::set-output name=value::${versions}"
|
7
|
+
uses: ruby/actions/.github/workflows/ruby_versions.yml@master
|
8
|
+
with:
|
9
|
+
min_version: 2.5
|
10
|
+
|
15
11
|
test:
|
16
12
|
needs: ruby-versions
|
17
13
|
name: build (${{ matrix.ruby }} / ${{ matrix.os }})
|
18
14
|
strategy:
|
19
15
|
matrix:
|
20
16
|
ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
|
21
|
-
os: [ ubuntu-latest, macos-latest ]
|
17
|
+
os: [ ubuntu-latest, macos-latest, windows-latest ]
|
18
|
+
exclude:
|
19
|
+
- { os: windows-latest, ruby: truffleruby-head }
|
20
|
+
- { os: windows-latest, ruby: truffleruby }
|
22
21
|
runs-on: ${{ matrix.os }}
|
23
22
|
steps:
|
24
|
-
- uses: actions/checkout@
|
23
|
+
- uses: actions/checkout@v4
|
25
24
|
- name: Set up Ruby
|
26
25
|
uses: ruby/setup-ruby@v1
|
27
26
|
with:
|
data/abbrev.gemspec
CHANGED
@@ -1,6 +1,13 @@
|
|
1
|
+
name = File.basename(__FILE__, ".gemspec")
|
2
|
+
version = ["lib", Array.new(name.count("-")+1, ".").join("/")].find do |dir|
|
3
|
+
break File.foreach(File.join(__dir__, dir, "#{name.tr('-', '/')}.rb")) do |line|
|
4
|
+
/^\s*VERSION\s*=\s*"(.*)"/ =~ line and break $1
|
5
|
+
end rescue nil
|
6
|
+
end
|
7
|
+
|
1
8
|
Gem::Specification.new do |spec|
|
2
|
-
spec.name =
|
3
|
-
spec.version =
|
9
|
+
spec.name = name
|
10
|
+
spec.version = version
|
4
11
|
spec.authors = ["Akinori MUSHA"]
|
5
12
|
spec.email = ["knu@idaemons.org"]
|
6
13
|
|
data/lib/abbrev.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: abbrev
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Akinori MUSHA
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-12-16 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Calculates a set of unique abbreviations for a given set of strings
|
14
14
|
email:
|
@@ -50,7 +50,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
50
50
|
- !ruby/object:Gem::Version
|
51
51
|
version: '0'
|
52
52
|
requirements: []
|
53
|
-
rubygems_version: 3.
|
53
|
+
rubygems_version: 3.5.0.dev
|
54
54
|
signing_key:
|
55
55
|
specification_version: 4
|
56
56
|
summary: Calculates a set of unique abbreviations for a given set of strings
|