focus_actor 0.1.0 → 0.1.1

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: d829a31144bf0acd271fe344c811c7c2a9ebbf87032c8ff161207c590a36bdf3
4
- data.tar.gz: cefdfe56ecb66e63680c84c1c0020e655ca0f3c12b1dda9dff6370b054143198
3
+ metadata.gz: 3fc32f4f3d065a518519fa9dacff6a74584b7d6e49888f3a07591e800827b04f
4
+ data.tar.gz: 0e9ea01825b45977d1ba1f7ceeaa2e1605a714959765ea1a3b0287b8c66fd28a
5
5
  SHA512:
6
- metadata.gz: b21356bcd44f228fa626cb2257a6cbcf6e4fcd0c494f5d60b3f1d224cc8379b3eb2c2c9e45798e2d3badfc4de97bbae253bb847dd263f9c3af85b680dc9bddbc
7
- data.tar.gz: a78c8beae8dbf4a1a4470305d0e758269a4e4467048352bdd768e62dde617d15a821131ab37ae83f0ecbb73fcba39a2d791f4db4866bc30c7f8a6ff1a1127e3d
6
+ metadata.gz: e2241e4fd2e4e15c9be4323f92f7b0e1d4c2df52dce87bce4ba2bfa76e36c348e6f04b324ea1c19023991384a5d433f87f8873ec2cb36866511ea5376077ec21
7
+ data.tar.gz: effe459db448632d1ead3f0d65b2787d3a134feb366d9ad1374a32c56e2b18151425a573f3722c7fb3cfc5a7c06342b9f195f95e7460b08c3888e794d5206529
data/Gemfile CHANGED
@@ -4,5 +4,5 @@ source "https://rubygems.org"
4
4
  gemspec
5
5
 
6
6
  gem 'byebug'
7
- gem "rake", "~> 12.0"
7
+ gem "rake", ">= 12.3.3"
8
8
  gem "rspec", "~> 3.0"
@@ -1,14 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- focus_actor (0.1.0)
4
+ focus_actor (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
9
  byebug (11.1.3)
10
10
  diff-lcs (1.3)
11
- rake (12.3.2)
11
+ rake (13.0.1)
12
12
  rspec (3.8.0)
13
13
  rspec-core (~> 3.8.0)
14
14
  rspec-expectations (~> 3.8.0)
@@ -29,7 +29,7 @@ PLATFORMS
29
29
  DEPENDENCIES
30
30
  byebug
31
31
  focus_actor!
32
- rake (~> 12.0)
32
+ rake (>= 12.3.3)
33
33
  rspec (~> 3.0)
34
34
 
35
35
  BUNDLED WITH
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2020 Baodong
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -21,6 +21,8 @@ Or install it yourself as:
21
21
  ## Usage
22
22
 
23
23
  ```ruby
24
+ require 'focus_actor'
25
+
24
26
  class User
25
27
  include FocusActor::Async
26
28
  include FocusActor::Future
@@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
7
7
  spec.email = ["wwwicbd@gmail.com"]
8
8
 
9
9
  spec.summary = %q{Actor Tools}
10
- spec.description = %q{Actor Tools}
10
+ spec.description = %q{This is a toy tool to extend concurrency for objects.}
11
11
  spec.homepage = 'https://github.com/icbd/focus_actor'
12
12
  spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
13
13
 
@@ -16,6 +16,7 @@ Gem::Specification.new do |spec|
16
16
  spec.metadata["homepage_uri"] = spec.homepage
17
17
  spec.metadata["source_code_uri"] = "#{spec.homepage}.git"
18
18
  spec.metadata["changelog_uri"] = "#{spec.homepage}/tags"
19
+ spec.license = "MIT"
19
20
 
20
21
  # Specify which files should be added to the gem when it is released.
21
22
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -1,3 +1,3 @@
1
1
  module FocusActor
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: focus_actor
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
  - Baodong
@@ -10,7 +10,7 @@ bindir: exe
10
10
  cert_chain: []
11
11
  date: 2020-07-30 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: Actor Tools
13
+ description: This is a toy tool to extend concurrency for objects.
14
14
  email:
15
15
  - wwwicbd@gmail.com
16
16
  executables: []
@@ -23,6 +23,7 @@ files:
23
23
  - ".travis.yml"
24
24
  - Gemfile
25
25
  - Gemfile.lock
26
+ - LICENSE
26
27
  - README.md
27
28
  - Rakefile
28
29
  - bin/console
@@ -37,7 +38,8 @@ files:
37
38
  - lib/focus_actor/future_processor.rb
38
39
  - lib/focus_actor/version.rb
39
40
  homepage: https://github.com/icbd/focus_actor
40
- licenses: []
41
+ licenses:
42
+ - MIT
41
43
  metadata:
42
44
  homepage_uri: https://github.com/icbd/focus_actor
43
45
  source_code_uri: https://github.com/icbd/focus_actor.git