abbrev 0.1.0 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '0936bf5184cb0038579110215a1980ca424ce611181642b825afae1b7a937d89'
4
- data.tar.gz: a93e2ed249fbad84108fda61af9cf7589b68e1a8aa0311503aea924a3b3dd21a
3
+ metadata.gz: e5a8f3a9bd5684a193b45c77f1120d28088d9b0fd0bfe750326de395d9f93a9b
4
+ data.tar.gz: b4a9e47c146a95e6d17e6c5450373f3f383704dd8113b435a7b9572162c36654
5
5
  SHA512:
6
- metadata.gz: 192634a1378245585dbcc486d720d9b70dc0adad3b8acbaa74793f0312e15c263b27dd63461ae727ac7dfa4d4b0a758f13251cb6b4f9c335358b11d079d6016b
7
- data.tar.gz: 85cefa2b2abc2e86bb62a90492ae38eeedf4bdb5481d24261943efc7da11b759a532683d2204d68db81a2a3db8d425557834e0f01414e08089a177ada5982cb8
6
+ metadata.gz: 8f52850c6cc2dbda0b8def03c9af52be320ba0324facbdbc6331d38c2d54560a3f65c88a323f5973a64eac2e3d66dcb76ded8147336bea1b922534b2f24615c7
7
+ data.tar.gz: 06b9d0ab20955f7f5256d8eae8925676c06e9fdcf20eee4acfd9cad30f06d05300976f1c7a8a49d7f2b3bae7612976066aca788ad04eabb62ed4d9d2f7ad1952
@@ -0,0 +1,6 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: 'github-actions'
4
+ directory: '/'
5
+ schedule:
6
+ interval: 'weekly'
@@ -3,22 +3,29 @@ name: test
3
3
  on: [push, pull_request]
4
4
 
5
5
  jobs:
6
- build:
6
+ ruby-versions:
7
+ uses: ruby/actions/.github/workflows/ruby_versions.yml@master
8
+ with:
9
+ min_version: 2.5
10
+
11
+ test:
12
+ needs: ruby-versions
7
13
  name: build (${{ matrix.ruby }} / ${{ matrix.os }})
8
14
  strategy:
9
15
  matrix:
10
- ruby: [ 2.7, 2.6, 2.5, head ]
11
- os: [ ubuntu-latest, macos-latest ]
16
+ ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
17
+ os: [ ubuntu-latest, macos-latest, windows-latest ]
18
+ exclude:
19
+ - { os: windows-latest, ruby: truffleruby-head }
20
+ - { os: windows-latest, ruby: truffleruby }
12
21
  runs-on: ${{ matrix.os }}
13
22
  steps:
14
- - uses: actions/checkout@master
23
+ - uses: actions/checkout@v4
15
24
  - name: Set up Ruby
16
25
  uses: ruby/setup-ruby@v1
17
26
  with:
18
27
  ruby-version: ${{ matrix.ruby }}
19
28
  - name: Install dependencies
20
- run: |
21
- gem install bundler --no-document
22
- bundle install
29
+ run: bundle install
23
30
  - name: Run test
24
31
  run: rake test
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 = "abbrev"
3
- spec.version = "0.1.0"
9
+ spec.name = name
10
+ spec.version = version
4
11
  spec.authors = ["Akinori MUSHA"]
5
12
  spec.email = ["knu@idaemons.org"]
6
13
 
@@ -17,6 +24,6 @@ Gem::Specification.new do |spec|
17
24
  `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
25
  end
19
26
  spec.bindir = "exe"
20
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
27
+ spec.executables = []
21
28
  spec.require_paths = ["lib"]
22
29
  end
data/lib/abbrev.rb CHANGED
@@ -47,6 +47,7 @@
47
47
  # "w" => "winter" }
48
48
 
49
49
  module Abbrev
50
+ VERSION = "0.1.2"
50
51
 
51
52
  # Given a set of strings, calculate the set of unambiguous abbreviations for
52
53
  # those strings, and return a hash where the keys are all the possible
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.0
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: 2020-09-18 00:00:00.000000000 Z
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:
@@ -17,6 +17,7 @@ executables: []
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
+ - ".github/dependabot.yml"
20
21
  - ".github/workflows/test.yml"
21
22
  - ".gitignore"
22
23
  - Gemfile
@@ -49,7 +50,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
49
50
  - !ruby/object:Gem::Version
50
51
  version: '0'
51
52
  requirements: []
52
- rubygems_version: 3.2.0.rc.1
53
+ rubygems_version: 3.5.0.dev
53
54
  signing_key:
54
55
  specification_version: 4
55
56
  summary: Calculates a set of unique abbreviations for a given set of strings