katamari 0.2.1

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.
@@ -0,0 +1,8 @@
1
+ # Katamari Ruby
2
+
3
+ Requires JRuby 1.7+
4
+
5
+ Run:
6
+
7
+ rake bootstrap
8
+ ruby examples/hello_world.rb
@@ -0,0 +1,17 @@
1
+ $:.unshift File.expand_path('../', __FILE__)
2
+ require 'java'
3
+ require File.expand_path('../../javalib/netty-all-4.0.0.CR1.jar', __FILE__)
4
+ require File.expand_path('../../javalib/katamari-0.2.1.jar', __FILE__)
5
+
6
+ module Katamari
7
+ module Handler
8
+ java_import 'io.katamari.handler.BodyDecoder'
9
+ java_import 'io.katamari.handler.UriDecoder'
10
+ java_import 'io.katamari.handler.InboundMessageHandler'
11
+
12
+ class Inbound < InboundMessageHandler
13
+ end
14
+ end
15
+
16
+ java_import 'io.katamari.Server'
17
+ end
@@ -0,0 +1,3 @@
1
+ module Katamari
2
+ VERSION = '0.2.1'
3
+ end
metadata ADDED
@@ -0,0 +1,54 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: katamari
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Nicolas Mérouze
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-04-21 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: Create great web apps.
15
+ email: nicolas@merouze.me
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files:
19
+ - README.md
20
+ files:
21
+ - lib/katamari.rb
22
+ - lib/katamari/version.rb
23
+ - javalib/katamari-0.2.1.jar
24
+ - javalib/netty-all-4.0.0.CR1.jar
25
+ - README.md
26
+ homepage: http://www.github.com/nmerouze/katamari-ruby
27
+ licenses: []
28
+ post_install_message:
29
+ rdoc_options:
30
+ - "--main"
31
+ - README.md
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: !binary |-
39
+ MA==
40
+ none: false
41
+ required_rubygems_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: !binary |-
46
+ MA==
47
+ none: false
48
+ requirements: []
49
+ rubyforge_project: katamari
50
+ rubygems_version: 1.8.24
51
+ signing_key:
52
+ specification_version: 3
53
+ summary: A web server based on Netty.
54
+ test_files: []