async-container 0.2.1 → 0.2.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
  SHA1:
3
- metadata.gz: c8f2cb6e2389358777a7c4b34fe185ca837d98ef
4
- data.tar.gz: d59a058d15ee523adc6c352e77769fdb883fb080
3
+ metadata.gz: 9a545d6e534a06578b5a79cdda51e266c8f2757d
4
+ data.tar.gz: b2b7227a1597f3f877d6a94058419c7ebca517e4
5
5
  SHA512:
6
- metadata.gz: 0bf1dbd7bfba060b4b13d2408abe532f1ec5d26c0c47289d46ebc106cd675cec906cf7f019eb9c54a5b1b22bf1f67acab0928f066c90ed547aeaebd40a0ac632
7
- data.tar.gz: f66f8c5812071810c7c8e5df0cf6b33e0b330bdec8cf28a551ef9383e31739f33f9f7c16a958d667f585084212f2228eaf473c7dac2b3807c02568230761718c
6
+ metadata.gz: 464481abc1e5ab4ee1db48dce359719d5aa7b2b6c8462ec20876c291ca2121efa5157fc8645500016c4dcde7c78437477219b3965683400e5008017fe50bec46
7
+ data.tar.gz: 2a533fa0a81fe738f471e6e4cf0dc27da075eb2c0c4a70bfd0454d2e3ad1bde82498fe1d5fb312822aa58a3821a3ce6f69c1b3f837c8d2c4d313904dfbdeea75
@@ -20,6 +20,6 @@
20
20
 
21
21
  module Async
22
22
  module Container
23
- VERSION = "0.2.1"
23
+ VERSION = "0.2.2"
24
24
  end
25
25
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: async-container
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-08-04 00:00:00.000000000 Z
11
+ date: 2017-11-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: async
@@ -98,7 +98,6 @@ files:
98
98
  - README.md
99
99
  - Rakefile
100
100
  - async-container.gemspec
101
- - lib/async.rb
102
101
  - lib/async/container.rb
103
102
  - lib/async/container/forked.rb
104
103
  - lib/async/container/threaded.rb
@@ -125,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
125
124
  version: '0'
126
125
  requirements: []
127
126
  rubyforge_project:
128
- rubygems_version: 2.6.12
127
+ rubygems_version: 2.6.14
129
128
  signing_key:
130
129
  specification_version: 4
131
130
  summary: Async is an asynchronous I/O framework based on nio4r.
@@ -1,23 +0,0 @@
1
- # Copyright, 2017, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
- #
3
- # Permission is hereby granted, free of charge, to any person obtaining a copy
4
- # of this software and associated documentation files (the "Software"), to deal
5
- # in the Software without restriction, including without limitation the rights
6
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
- # copies of the Software, and to permit persons to whom the Software is
8
- # furnished to do so, subject to the following conditions:
9
- #
10
- # The above copyright notice and this permission notice shall be included in
11
- # all copies or substantial portions of the Software.
12
- #
13
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
- # THE SOFTWARE.
20
-
21
- require_relative "async/version"
22
- require_relative "async/logger"
23
- require_relative "async/reactor"