ione 1.0.0.pre0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.yardopts +4 -0
- data/lib/ione.rb +8 -0
- data/lib/ione/byte_buffer.rb +279 -0
- data/lib/ione/future.rb +509 -0
- data/lib/ione/io.rb +15 -0
- data/lib/ione/io/connection.rb +215 -0
- data/lib/ione/io/io_reactor.rb +321 -0
- data/lib/ione/version.rb +5 -0
- data/spec/integration/io_spec.rb +283 -0
- data/spec/ione/byte_buffer_spec.rb +342 -0
- data/spec/ione/future_spec.rb +737 -0
- data/spec/ione/io/connection_spec.rb +484 -0
- data/spec/ione/io/io_reactor_spec.rb +360 -0
- data/spec/spec_helper.rb +8 -0
- data/spec/support/await_helper.rb +20 -0
- data/spec/support/fake_server.rb +106 -0
- metadata +70 -0
metadata
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ione
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0.pre0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Theo Hultberg
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-03-01 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Reactive programming framework for Ruby, painless evented IO, futures
|
14
|
+
and an efficient byte buffer
|
15
|
+
email:
|
16
|
+
- theo@iconara.net
|
17
|
+
executables: []
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- .yardopts
|
22
|
+
- lib/ione.rb
|
23
|
+
- lib/ione/byte_buffer.rb
|
24
|
+
- lib/ione/future.rb
|
25
|
+
- lib/ione/io.rb
|
26
|
+
- lib/ione/io/connection.rb
|
27
|
+
- lib/ione/io/io_reactor.rb
|
28
|
+
- lib/ione/version.rb
|
29
|
+
- spec/integration/io_spec.rb
|
30
|
+
- spec/ione/byte_buffer_spec.rb
|
31
|
+
- spec/ione/future_spec.rb
|
32
|
+
- spec/ione/io/connection_spec.rb
|
33
|
+
- spec/ione/io/io_reactor_spec.rb
|
34
|
+
- spec/spec_helper.rb
|
35
|
+
- spec/support/await_helper.rb
|
36
|
+
- spec/support/fake_server.rb
|
37
|
+
homepage: http://github.com/iconara/ione
|
38
|
+
licenses:
|
39
|
+
- Apache License 2.0
|
40
|
+
metadata: {}
|
41
|
+
post_install_message:
|
42
|
+
rdoc_options: []
|
43
|
+
require_paths:
|
44
|
+
- lib
|
45
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - '>='
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: 1.9.3
|
50
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>'
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 1.3.1
|
55
|
+
requirements: []
|
56
|
+
rubyforge_project:
|
57
|
+
rubygems_version: 2.2.1
|
58
|
+
signing_key:
|
59
|
+
specification_version: 4
|
60
|
+
summary: Reactive programming framework for Ruby
|
61
|
+
test_files:
|
62
|
+
- spec/integration/io_spec.rb
|
63
|
+
- spec/ione/byte_buffer_spec.rb
|
64
|
+
- spec/ione/future_spec.rb
|
65
|
+
- spec/ione/io/connection_spec.rb
|
66
|
+
- spec/ione/io/io_reactor_spec.rb
|
67
|
+
- spec/spec_helper.rb
|
68
|
+
- spec/support/await_helper.rb
|
69
|
+
- spec/support/fake_server.rb
|
70
|
+
has_rdoc:
|