async 0.17.1 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -0
- data/lib/async/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f8c36a30a6a813cd7d78f7b5c57b71d64e98c3e
|
4
|
+
data.tar.gz: 1fa65e044d64e738663a6a520dfc0db2ef3f4925
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3be27ddd34dc5b9e3f8c98f7fbca94e0da93568825ef115901fb1c0d788fdaeb42e4a573c81bbc301e19d4a8cab02eee787bae733fac23bf2744154c2614e36e
|
7
|
+
data.tar.gz: 4470d6a3ae90d02cdcb6c2a21a9a1dbe35c377a7aff97df78561037dbd6ad41bfce49e21064594da7ae11ec24aa16024a30015dfe4708e457fb8aa24f5dd69d6
|
data/README.md
CHANGED
@@ -15,6 +15,8 @@ Several years ago, I was hosting websites on a server in my garage. Back then, m
|
|
15
15
|
|
16
16
|
Moving forward, I refactored the internals of RubyDNS into [Celluloid::DNS]. This rewrite helped solidify the design of RubyDNS and to a certain extent it works. However, [unfixed bugs and design problems](https://github.com/celluloid/celluloid/pull/710) in Celluloid meant that RubyDNS 2.0 was delayed by almost 2 years. I wasn't happy releasing things with known bugs and problems. Anyway, a lot of discussion and thinking, I decided to build a small event reactor using [nio4r] and [timers], the core parts of [Celluloid::IO] which made it work so well.
|
17
17
|
|
18
|
+
In addition, there is a [similarly designed C++ library of the same name](https://github.com/kurocha/async). These two libraries share similar design principles, but are different in some areas due to the underlying semantic differences of the languages.
|
19
|
+
|
18
20
|
[Celluloid]: https://github.com/celluloid/celluloid
|
19
21
|
[Celluloid::IO]: https://github.com/celluloid/celluloid-io
|
20
22
|
[Celluloid::DNS]: https://github.com/celluloid/celluloid-dns
|
data/lib/async/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: async
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
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-
|
11
|
+
date: 2017-07-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nio4r
|