rinda 0.1.0 → 0.1.1

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: 2e451398199be205b7e5de56d4764525709c6a0f7e68c67989bd3b792b5fd8ce
4
- data.tar.gz: 68eb2f17f82fbc9dc2bee6f2770b81a05cb16133965166b821c54da90df575cf
3
+ metadata.gz: 6883f440dc1bf28aa616b1f3a904a622a9fdc6403650aab81a2ce58306e8222f
4
+ data.tar.gz: ec3053bda138ab84b5ee5a239e0f127d69cee23324873c412e6e6828747d0f47
5
5
  SHA512:
6
- metadata.gz: 9aace6a91d22a4aca501ca02390c0b2da349154e19e819b68c2b7d977f33318fac199d07b13dca7b07195de75843dd7af67b9070d04ab923ed7717d92772d74d
7
- data.tar.gz: 3ab9372edeab86fcb407cf281a1276f72d0236e9b25c6b811b2edfc99d617194db9f9e2fe8f0cfbda5e891eebc0dbec6aa748abd31710c6776a1f17c4684aa9a
6
+ metadata.gz: c9195b4987d9caff6903d684559fbbee54beeec1b199743810f7e72e3e138afb59f0b74acb5ef3e7434c1223a62a563e3e1c69a6a26b7a50b05ce326b5f69eaa
7
+ data.tar.gz: 1b343bbf62e1c4b0596016d28968d35c303c569219347198f8d5fc321fbf0d7c7970d5087c9603838f1d7b5de3ab940cdcc24aea6c553a02f5ddcc4d49a3e482
@@ -11,14 +11,12 @@ jobs:
11
11
  os: [ ubuntu-latest, macos-latest ]
12
12
  runs-on: ${{ matrix.os }}
13
13
  steps:
14
- - uses: actions/checkout@master
14
+ - uses: actions/checkout@v2
15
15
  - name: Set up Ruby
16
16
  uses: ruby/setup-ruby@v1
17
17
  with:
18
18
  ruby-version: ${{ matrix.ruby }}
19
19
  - name: Install dependencies
20
- run: |
21
- gem install bundler --no-document
22
- bundle install
20
+ run: bundle install
23
21
  - name: Run test
24
22
  run: rake test
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Rinda
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/rinda`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ A module to implement the Linda distributed computing paradigm in Ruby.
4
4
 
5
- TODO: Delete this and the text above, and describe your gem
5
+ Rinda is part of DRb (dRuby).
6
6
 
7
7
  ## Installation
8
8
 
@@ -20,10 +20,6 @@ Or install it yourself as:
20
20
 
21
21
  $ gem install rinda
22
22
 
23
- ## Usage
24
-
25
- TODO: Write usage instructions here
26
-
27
23
  ## Development
28
24
 
29
25
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
@@ -32,5 +28,5 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
32
28
 
33
29
  ## Contributing
34
30
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/hsbt/rinda.
31
+ Bug reports and pull requests are welcome on GitHub at https://github.com/ruby/rinda.
36
32
 
data/rinda.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "rinda"
3
- spec.version = "0.1.0"
3
+ spec.version = "0.1.1"
4
4
  spec.authors = ["Masatoshi SEKI"]
5
5
  spec.email = ["seki@ruby-lang.org"]
6
6
 
@@ -21,4 +21,8 @@ Gem::Specification.new do |spec|
21
21
  spec.bindir = "exe"
22
22
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
23
23
  spec.require_paths = ["lib"]
24
+
25
+ spec.add_dependency "drb"
26
+ spec.add_dependency "ipaddr"
27
+ spec.add_dependency "forwardable"
24
28
  end
metadata CHANGED
@@ -1,15 +1,57 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rinda
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Masatoshi SEKI
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-09-18 00:00:00.000000000 Z
12
- dependencies: []
11
+ date: 2021-10-21 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: drb
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: ipaddr
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: forwardable
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
13
55
  description: The Linda distributed computing paradigm in Ruby.
14
56
  email:
15
57
  - seki@ruby-lang.org
@@ -51,7 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
51
93
  - !ruby/object:Gem::Version
52
94
  version: '0'
53
95
  requirements: []
54
- rubygems_version: 3.2.0.rc.1
96
+ rubygems_version: 3.3.0.dev
55
97
  signing_key:
56
98
  specification_version: 4
57
99
  summary: The Linda distributed computing paradigm in Ruby.