sonixlabs-eventmachine-java 1.0.0.rc.5-java → 1.0.0.rc.7-java

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.
data/lib/em/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module EventMachine
2
- VERSION = "1.0.0.rc.5"
2
+ VERSION = "1.0.0.rc.7"
3
3
  end
Binary file
data/rakelib/package.rake CHANGED
@@ -1,4 +1,5 @@
1
- require 'rake/gempackagetask'
1
+ require 'rubygems/package_task'
2
+
2
3
  begin
3
4
  require 'rake/extensiontask'
4
5
  require 'rake/javaextensiontask'
@@ -12,7 +13,7 @@ rake-compiler gem seems to be missing. Please install it with
12
13
  MSG
13
14
  end
14
15
 
15
- Rake::GemPackageTask.new(GEMSPEC) do |pkg|
16
+ Gem::PackageTask.new(GEMSPEC) do |pkg|
16
17
  end
17
18
 
18
19
  if RUBY_PLATFORM =~ /java/
metadata CHANGED
@@ -1,84 +1,67 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sonixlabs-eventmachine-java
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: 6
5
- version: 1.0.0.rc.5
4
+ version: 1.0.0.rc.7
6
5
  platform: java
7
6
  authors:
8
7
  - Kazuhiro Yamada
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-10-25 00:00:00.000000000 Z
11
+ date: 2013-11-18 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: rake-compiler
16
15
  version_requirements: !ruby/object:Gem::Requirement
17
16
  requirements:
18
- - - ~>
17
+ - - "~>"
19
18
  - !ruby/object:Gem::Version
20
19
  version: 0.8.1
21
- none: false
22
20
  requirement: !ruby/object:Gem::Requirement
23
21
  requirements:
24
- - - ~>
22
+ - - "~>"
25
23
  - !ruby/object:Gem::Version
26
24
  version: 0.8.1
27
- none: false
28
25
  prerelease: false
29
26
  type: :development
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: yard
32
29
  version_requirements: !ruby/object:Gem::Requirement
33
30
  requirements:
34
- - - ! '>='
31
+ - - ">="
35
32
  - !ruby/object:Gem::Version
36
33
  version: 0.7.2
37
- none: false
38
34
  requirement: !ruby/object:Gem::Requirement
39
35
  requirements:
40
- - - ! '>='
36
+ - - ">="
41
37
  - !ruby/object:Gem::Version
42
38
  version: 0.7.2
43
- none: false
44
39
  prerelease: false
45
40
  type: :development
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: bluecloth
48
43
  version_requirements: !ruby/object:Gem::Requirement
49
44
  requirements:
50
- - - ! '>='
45
+ - - ">="
51
46
  - !ruby/object:Gem::Version
52
- version: !binary |-
53
- MA==
54
- none: false
47
+ version: '0'
55
48
  requirement: !ruby/object:Gem::Requirement
56
49
  requirements:
57
- - - ! '>='
50
+ - - ">="
58
51
  - !ruby/object:Gem::Version
59
- version: !binary |-
60
- MA==
61
- none: false
52
+ version: '0'
62
53
  prerelease: false
63
54
  type: :development
64
- description: EventMachine implements a fast, single-threaded engine for arbitrary network
65
-
55
+ description: |-
56
+ EventMachine implements a fast, single-threaded engine for arbitrary network
66
57
  communications. It's extremely easy to use in Ruby. EventMachine wraps all
67
-
68
58
  interactions with IP sockets, allowing programs to concentrate on the
69
-
70
59
  implementation of network protocols. It can be used to create both network
71
-
72
60
  servers and clients. To create a server or client, a Ruby program only needs
73
-
74
61
  to specify the IP address and port, and provide a Module that implements the
75
-
76
62
  communications protocol. Implementations of several standard network protocols
77
-
78
63
  are provided with the package, primarily to serve as examples. The real goal
79
-
80
64
  of EventMachine is to enable programs to easily interface with other programs
81
-
82
65
  using TCP/IP, especially if custom protocols are required.
83
66
  email:
84
67
  - sonixlabs@sonix.asia
@@ -102,12 +85,13 @@ extra_rdoc_files:
102
85
  - docs/old/SPAWNED_PROCESSES
103
86
  - docs/old/TODO
104
87
  files:
105
- - .gitignore
106
- - .yardopts
88
+ - ".gitignore"
89
+ - ".yardopts"
107
90
  - GNU
108
91
  - Gemfile
109
92
  - LICENSE
110
93
  - README.md
94
+ - README_JP.md
111
95
  - Rakefile
112
96
  - docs/DocumentationGuidesIndex.md
113
97
  - docs/GettingStarted.md
@@ -266,36 +250,34 @@ files:
266
250
  - lib/rubyeventmachine.jar
267
251
  homepage: https://github.com/sonixlabs/eventmachine
268
252
  licenses: []
253
+ metadata: {}
269
254
  post_install_message:
270
255
  rdoc_options:
271
- - --title
256
+ - "--title"
272
257
  - EventMachine
273
- - --main
258
+ - "--main"
274
259
  - README.md
275
- - -x
260
+ - "-x"
276
261
  - lib/em/version
277
- - -x
262
+ - "-x"
278
263
  - lib/jeventmachine
279
264
  require_paths:
280
265
  - lib
281
266
  required_ruby_version: !ruby/object:Gem::Requirement
282
267
  requirements:
283
- - - ! '>='
268
+ - - ">="
284
269
  - !ruby/object:Gem::Version
285
- version: !binary |-
286
- MA==
287
- none: false
270
+ version: '0'
288
271
  required_rubygems_version: !ruby/object:Gem::Requirement
289
272
  requirements:
290
273
  - - !binary |-
291
274
  Pg==
292
275
  - !ruby/object:Gem::Version
293
276
  version: 1.3.1
294
- none: false
295
277
  requirements: []
296
278
  rubyforge_project: eventmachine
297
- rubygems_version: 1.8.24
279
+ rubygems_version: 2.1.11
298
280
  signing_key:
299
- specification_version: 3
281
+ specification_version: 4
300
282
  summary: Ruby/EventMachine library
301
283
  test_files: []