jetty-rackup 0.1.0 → 0.2.0
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/.gitignore +1 -0
- data/Rakefile +3 -3
- data/VERSION +1 -1
- metadata +60 -51
data/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.DS_Store
|
data/Rakefile
CHANGED
|
@@ -7,9 +7,9 @@ begin
|
|
|
7
7
|
gem.name = "jetty-rackup"
|
|
8
8
|
gem.summary = %Q{Rack + Jetty = Retty}
|
|
9
9
|
gem.description = %Q{Runs a rack conform application inside jetty web server}
|
|
10
|
-
gem.email = "
|
|
11
|
-
gem.homepage = "http://github.com/
|
|
12
|
-
gem.authors = ["Jason Rogers"]
|
|
10
|
+
gem.email = "vladimir@geekq.net"
|
|
11
|
+
gem.homepage = "http://github.com/geekq/jetty-rackup"
|
|
12
|
+
gem.authors = ["Vladimir Dobriakov", "Leandro Silva", "Jason Rogers"]
|
|
13
13
|
# gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
|
|
14
14
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
|
15
15
|
end
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.2.0
|
metadata
CHANGED
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jetty-rackup
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
prerelease:
|
|
5
|
-
|
|
4
|
+
prerelease: false
|
|
5
|
+
segments:
|
|
6
|
+
- 0
|
|
7
|
+
- 2
|
|
8
|
+
- 0
|
|
9
|
+
version: 0.2.0
|
|
6
10
|
platform: ruby
|
|
7
11
|
authors:
|
|
8
|
-
|
|
12
|
+
- Vladimir Dobriakov
|
|
13
|
+
- Leandro Silva
|
|
14
|
+
- Jason Rogers
|
|
9
15
|
autorequire:
|
|
10
16
|
bindir: bin
|
|
11
17
|
cert_chain: []
|
|
@@ -15,72 +21,75 @@ default_executable: jetty-rackup
|
|
|
15
21
|
dependencies: []
|
|
16
22
|
|
|
17
23
|
description: Runs a rack conform application inside jetty web server
|
|
18
|
-
email:
|
|
24
|
+
email: vladimir@geekq.net
|
|
19
25
|
executables:
|
|
20
|
-
|
|
26
|
+
- jetty-rackup
|
|
21
27
|
extensions: []
|
|
22
28
|
|
|
23
29
|
extra_rdoc_files:
|
|
24
|
-
|
|
25
|
-
|
|
30
|
+
- LICENSE
|
|
31
|
+
- README.markdown
|
|
26
32
|
files:
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
33
|
+
- .gitignore
|
|
34
|
+
- LICENSE
|
|
35
|
+
- README.markdown
|
|
36
|
+
- Rakefile
|
|
37
|
+
- VERSION
|
|
38
|
+
- bin/jetty-rackup
|
|
39
|
+
- examples/just_ruby/app.rb
|
|
40
|
+
- examples/just_ruby/config.ru
|
|
41
|
+
- examples/just_ruby/public/hello.html
|
|
42
|
+
- examples/using_java/WEB-INF/classes/Some.class
|
|
43
|
+
- examples/using_java/WEB-INF/lib/other.jar
|
|
44
|
+
- examples/using_java/app.rb
|
|
45
|
+
- examples/using_java/config.ru
|
|
46
|
+
- examples/using_java/java/Other.java
|
|
47
|
+
- examples/using_java/java/Some.java
|
|
48
|
+
- jars/core-3.1.1.jar
|
|
49
|
+
- jars/jetty-6.1.14.jar
|
|
50
|
+
- jars/jetty-plus-6.1.14.jar
|
|
51
|
+
- jars/jetty-util-6.1.14.jar
|
|
52
|
+
- jars/jruby-rack-0.9.5.jar
|
|
53
|
+
- jars/jsp-2.1.jar
|
|
54
|
+
- jars/jsp-api-2.1.jar
|
|
55
|
+
- jars/servlet-api-2.5-6.1.14.jar
|
|
56
|
+
- lib/jetty-rackup.rb
|
|
57
|
+
- lib/jetty-rackup/bootstrap.rb
|
|
58
|
+
- lib/jetty-rackup/server.rb
|
|
59
|
+
- test/helper.rb
|
|
60
|
+
- test/test_jetty-rackup.rb
|
|
54
61
|
has_rdoc: true
|
|
55
|
-
homepage: http://github.com/
|
|
62
|
+
homepage: http://github.com/geekq/jetty-rackup
|
|
56
63
|
licenses: []
|
|
57
64
|
|
|
58
65
|
post_install_message:
|
|
59
|
-
rdoc_options:
|
|
60
|
-
|
|
66
|
+
rdoc_options:
|
|
67
|
+
- --charset=UTF-8
|
|
61
68
|
require_paths:
|
|
62
|
-
|
|
69
|
+
- lib
|
|
63
70
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
64
|
-
none: false
|
|
65
71
|
requirements:
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
72
|
+
- - ">="
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
segments:
|
|
75
|
+
- 0
|
|
76
|
+
version: "0"
|
|
69
77
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
70
|
-
none: false
|
|
71
78
|
requirements:
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
79
|
+
- - ">="
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
segments:
|
|
82
|
+
- 0
|
|
83
|
+
version: "0"
|
|
75
84
|
requirements: []
|
|
76
85
|
|
|
77
86
|
rubyforge_project:
|
|
78
|
-
rubygems_version: 1.
|
|
87
|
+
rubygems_version: 1.3.6
|
|
79
88
|
signing_key:
|
|
80
89
|
specification_version: 3
|
|
81
90
|
summary: Rack + Jetty = Retty
|
|
82
91
|
test_files:
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
92
|
+
- test/test_jetty-rackup.rb
|
|
93
|
+
- test/helper.rb
|
|
94
|
+
- examples/just_ruby/app.rb
|
|
95
|
+
- examples/using_java/app.rb
|