rinda 0.1.1 → 0.2.0

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: 6883f440dc1bf28aa616b1f3a904a622a9fdc6403650aab81a2ce58306e8222f
4
- data.tar.gz: ec3053bda138ab84b5ee5a239e0f127d69cee23324873c412e6e6828747d0f47
3
+ metadata.gz: ffd48798a0bc94e0d4dc1b65ec030427546890500459c4192b7012fd20ba2650
4
+ data.tar.gz: bce0aefb3d1fa182d6986ef13d24adb2799de650697b6c9293f912c2b74c909b
5
5
  SHA512:
6
- metadata.gz: c9195b4987d9caff6903d684559fbbee54beeec1b199743810f7e72e3e138afb59f0b74acb5ef3e7434c1223a62a563e3e1c69a6a26b7a50b05ce326b5f69eaa
7
- data.tar.gz: 1b343bbf62e1c4b0596016d28968d35c303c569219347198f8d5fc321fbf0d7c7970d5087c9603838f1d7b5de3ab940cdcc24aea6c553a02f5ddcc4d49a3e482
6
+ metadata.gz: d3814de40e682453ebc9ce3e32bfc9812fa42865e69f1ceb51aba88d1a6e9943769db1fdec48b7a63ef9d01e72cea76f77508755b2ae6efe9cda900b19c88ceb
7
+ data.tar.gz: ab59c329caf403e1b7069455b386e964f020ed722b5cefae371c1fccdd1912f9c2167d9e4ce84e6e5032a1e3c42166e08002d3b796e32e482fb5103226ff1afa
@@ -0,0 +1,6 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: 'github-actions'
4
+ directory: '/'
5
+ schedule:
6
+ interval: 'weekly'
@@ -3,20 +3,26 @@ 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
+ engine: cruby
10
+ min_version: 2.7
11
+
12
+ test:
13
+ needs: ruby-versions
7
14
  name: build (${{ matrix.ruby }} / ${{ matrix.os }})
8
15
  strategy:
9
16
  matrix:
10
- ruby: [ 2.7, 2.6, 2.5, head ]
17
+ ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
11
18
  os: [ ubuntu-latest, macos-latest ]
12
19
  runs-on: ${{ matrix.os }}
13
20
  steps:
14
- - uses: actions/checkout@v2
21
+ - uses: actions/checkout@v4
15
22
  - name: Set up Ruby
16
23
  uses: ruby/setup-ruby@v1
17
24
  with:
18
25
  ruby-version: ${{ matrix.ruby }}
19
- - name: Install dependencies
20
- run: bundle install
26
+ bundler-cache: true
21
27
  - name: Run test
22
28
  run: rake test
data/.gitignore CHANGED
@@ -6,3 +6,4 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /tmp/
9
+ /Gemfile.lock
data/Gemfile CHANGED
@@ -1,4 +1,6 @@
1
1
  source "https://rubygems.org"
2
2
 
3
+ gemspec
4
+
3
5
  gem "rake"
4
6
  gem "test-unit"
data/lib/rinda/rinda.rb CHANGED
@@ -18,6 +18,8 @@ require 'drb/drb'
18
18
 
19
19
  module Rinda
20
20
 
21
+ VERSION = "0.2.0"
22
+
21
23
  ##
22
24
  # Rinda error base class
23
25
 
data/rinda.gemspec CHANGED
@@ -1,6 +1,13 @@
1
+ name = File.basename(__FILE__, ".gemspec")
2
+ version = ["lib/rinda", "."].find do |dir|
3
+ break File.foreach(File.join(__dir__, dir, "#{name}.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 = "rinda"
3
- spec.version = "0.1.1"
9
+ spec.name = name
10
+ spec.version = version
4
11
  spec.authors = ["Masatoshi SEKI"]
5
12
  spec.email = ["seki@ruby-lang.org"]
6
13
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rinda
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Masatoshi SEKI
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-10-21 00:00:00.000000000 Z
11
+ date: 2023-11-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: drb
@@ -59,6 +59,7 @@ executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
+ - ".github/dependabot.yml"
62
63
  - ".github/workflows/test.yml"
63
64
  - ".gitignore"
64
65
  - Gemfile
@@ -93,7 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
93
94
  - !ruby/object:Gem::Version
94
95
  version: '0'
95
96
  requirements: []
96
- rubygems_version: 3.3.0.dev
97
+ rubygems_version: 3.5.0.dev
97
98
  signing_key:
98
99
  specification_version: 4
99
100
  summary: The Linda distributed computing paradigm in Ruby.