wildsonet-netty 3.2.3.1-java

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile ADDED
@@ -0,0 +1,2 @@
1
+ source "http://rubygems.org"
2
+
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2010 Marek Jelen
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,37 @@
1
+ = Wildsonet::Netty
2
+
3
+ JBoss Netty library embeded for use with jRuby. Primarily for used in WildSoNet, but useful for any project.
4
+
5
+ The Netty project is an effort to provide an asynchronous event-driven network application framework and tools
6
+ for rapid development of maintainable high performance & high scalability protocol servers & clients.
7
+
8
+ http://www.jboss.org/netty
9
+
10
+ == Versioning
11
+
12
+ Version of the gem reflects version of embeded Netty library plus internal patchset.
13
+
14
+ Version 3.2.3.1 means Netty version 3.2.3 with internal patchset 1.
15
+
16
+ == Changelog
17
+
18
+ === 3.2.3.1
19
+
20
+ * Add internal patchset
21
+ * Rename module to Wildsonet
22
+ * Dejewelerize
23
+
24
+ == Contributing to wildsonet-netty
25
+
26
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
27
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
28
+ * Fork the project
29
+ * Start a feature/bugfix branch
30
+ * Commit and push until you are happy with your contribution
31
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
32
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
33
+
34
+ == Copyright
35
+
36
+ Copyright (c) 2010 Marek Jelen. See LICENSE.txt for further details.
37
+
Binary file
@@ -0,0 +1,5 @@
1
+ module Wildsonet
2
+ module Netty
3
+ VERSION = "3.2.3.1" unless defined?(::Wildsonet::Netty::VERSION)
4
+ end
5
+ end
@@ -0,0 +1,3 @@
1
+ require "java"
2
+
3
+ require File.join(File.dirname(__FILE__), "..", "jars", "netty.jar")
@@ -0,0 +1,41 @@
1
+ lib = File.join(File.dirname(__FILE__), "lib")
2
+ $: << lib unless $:.include?(lib)
3
+
4
+ require "wildsonet-netty-version"
5
+
6
+ Gem::Specification.new do |s|
7
+
8
+ s.name = "wildsonet-netty"
9
+ s.version = Wildsonet::Netty::VERSION
10
+ s.authors = ["Marek Jelen"]
11
+ s.summary = "Netty library packed as gem"
12
+ s.description = "The Netty project is an effort to provide an asynchronous event-driven network application framework and tools for rapid development of maintainable high performance & high scalability protocol servers & clients."
13
+ s.email = "marek@jelen.biz"
14
+ s.homepage = "http://github.com/marekjelen/wildsonet-netty"
15
+ s.licenses = ["MIT"]
16
+
17
+ s.platform = "java"
18
+ s.required_rubygems_version = ">= 1.3.6"
19
+
20
+ s.extra_rdoc_files = [
21
+ "LICENSE.txt",
22
+ "README.rdoc"
23
+ ]
24
+
25
+ s.files = [
26
+ "Gemfile",
27
+ "LICENSE.txt",
28
+ "README.rdoc",
29
+ "jars/netty.jar",
30
+ "lib/wildsonet-netty.rb",
31
+ "lib/wildsonet-netty-version.rb",
32
+ "wildsonet-netty.gemspec"
33
+ ]
34
+
35
+ s.require_paths = ["lib"]
36
+
37
+ s.test_files = [
38
+ ]
39
+
40
+ end
41
+
metadata ADDED
@@ -0,0 +1,74 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: wildsonet-netty
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 3
7
+ - 2
8
+ - 3
9
+ - 1
10
+ version: 3.2.3.1
11
+ platform: java
12
+ authors:
13
+ - Marek Jelen
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-01-17 00:00:00 +01:00
19
+ default_executable:
20
+ dependencies: []
21
+
22
+ description: The Netty project is an effort to provide an asynchronous event-driven network application framework and tools for rapid development of maintainable high performance & high scalability protocol servers & clients.
23
+ email: marek@jelen.biz
24
+ executables: []
25
+
26
+ extensions: []
27
+
28
+ extra_rdoc_files:
29
+ - LICENSE.txt
30
+ - README.rdoc
31
+ files:
32
+ - Gemfile
33
+ - LICENSE.txt
34
+ - README.rdoc
35
+ - jars/netty.jar
36
+ - lib/wildsonet-netty.rb
37
+ - lib/wildsonet-netty-version.rb
38
+ - wildsonet-netty.gemspec
39
+ has_rdoc: true
40
+ homepage: http://github.com/marekjelen/wildsonet-netty
41
+ licenses:
42
+ - MIT
43
+ post_install_message:
44
+ rdoc_options: []
45
+
46
+ require_paths:
47
+ - lib
48
+ required_ruby_version: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ segments:
54
+ - 0
55
+ version: "0"
56
+ required_rubygems_version: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ segments:
62
+ - 1
63
+ - 3
64
+ - 6
65
+ version: 1.3.6
66
+ requirements: []
67
+
68
+ rubyforge_project:
69
+ rubygems_version: 1.3.7
70
+ signing_key:
71
+ specification_version: 3
72
+ summary: Netty library packed as gem
73
+ test_files: []
74
+