boxed-geminabox 1.0.0-java → 1.1.0-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/History.rdoc +6 -0
- data/README.rdoc +26 -15
- data/bin/boxed-geminabox-fg +1 -1
- data/init/boxed-geminabox +2 -2
- data/lib/boxed-geminabox.rb +1 -1
- data/lib/boxed-geminabox/base.rb +2 -2
- data/test/test_server.rb +1 -1
- metadata +202 -138
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: a2f30a8b1dbdfb86f3c19fe71ed2db86790e81ff
|
4
|
+
data.tar.gz: bd5c1dd35aef1747014dcf3bee1e246cbe913262
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 529004c88d8a2352324ca6adbc781214ffa02bdb067748c0d4d848ba9f07944bba71c66247fcc2b6b45e61aa3db4b9c4ce44ff314ce1fcdebae4c23a552e3a82
|
7
|
+
data.tar.gz: 250451b2e323eb4d444d09e005eda0a66bed4077a1ba3b00142f8ab2f60935cad115dd1cce26020a50c6e43c511795835f49d0bca3bc45083e021b1e419552c0
|
data/History.rdoc
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
=== 1.1.0 (2014-2-5)
|
2
|
+
* Upgrade to geminabox ~> 0.12.2 (with constrained dependencies)
|
3
|
+
* Upgrade to fishwife ~> 1.5.2, rjack-jetty ~> 9.1.1, hooker ~> 1.1.0,
|
4
|
+
rjack-logback ~> 1.6
|
5
|
+
* Update license details in README
|
6
|
+
|
1
7
|
=== 1.0.0 (2012-9-2)
|
2
8
|
* Update/narrow to rjack-jetty ~> 7.6.5
|
3
9
|
|
data/README.rdoc
CHANGED
@@ -12,7 +12,7 @@ via {Iyyov}[https://github.com/dekellum/iyyov#readme].
|
|
12
12
|
|
13
13
|
== License
|
14
14
|
|
15
|
-
Copyright (c) 2012 David Kellum
|
15
|
+
Copyright (c) 2012-2014 David Kellum
|
16
16
|
|
17
17
|
Licensed under the Apache License, Version 2.0 (the "License"); you
|
18
18
|
may not use this file except in compliance with the License. You
|
@@ -29,17 +29,28 @@ permissions and limitations under the License.
|
|
29
29
|
=== Geminabox
|
30
30
|
|
31
31
|
* http://tomlea.co.uk/p/gem-in-a-box
|
32
|
-
* https://github.com/
|
33
|
-
*
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
32
|
+
* https://github.com/geminabox/geminabox
|
33
|
+
* https://github.com/geminabox/geminabox/blob/3988ba8b90ecbb542f1b6146bd0f627834aa4b93/MIT-LICENSE
|
34
|
+
|
35
|
+
(The MIT License)
|
36
|
+
|
37
|
+
Copyright (c) 2012 Tom Lea, Jack Foy, and Rob Nichols
|
38
|
+
|
39
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
40
|
+
a copy of this software and associated documentation files (the
|
41
|
+
"Software"), to deal in the Software without restriction, including
|
42
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
43
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
44
|
+
permit persons to whom the Software is furnished to do so, subject to
|
45
|
+
the following conditions:
|
46
|
+
|
47
|
+
The above copyright notice and this permission notice shall be
|
48
|
+
included in all copies or substantial portions of the Software.
|
49
|
+
|
50
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
51
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
52
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
53
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
54
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
55
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
56
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/bin/boxed-geminabox-fg
CHANGED
data/init/boxed-geminabox
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
#. hashdot.vm.options += -XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled
|
8
8
|
|
9
9
|
#--
|
10
|
-
# Copyright (c) 2012 David Kellum
|
10
|
+
# Copyright (c) 2012-2014 David Kellum
|
11
11
|
#
|
12
12
|
# Licensed under the Apache License, Version 2.0 (the "License"); you
|
13
13
|
# may not use this file except in compliance with the License. You may
|
@@ -23,7 +23,7 @@
|
|
23
23
|
#++
|
24
24
|
|
25
25
|
require 'rubygems'
|
26
|
-
gem( 'boxed-geminabox', '= 1.
|
26
|
+
gem( 'boxed-geminabox', '= 1.1.0' )
|
27
27
|
|
28
28
|
module BinScript
|
29
29
|
|
data/lib/boxed-geminabox.rb
CHANGED
data/lib/boxed-geminabox/base.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
#--
|
2
|
-
# Copyright (c) 2012 David Kellum
|
2
|
+
# Copyright (c) 2012-2014 David Kellum
|
3
3
|
#
|
4
4
|
# Licensed under the Apache License, Version 2.0 (the "License"); you
|
5
5
|
# may not use this file except in compliance with the License. You may
|
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
module Boxed
|
18
18
|
module Geminabox
|
19
|
-
VERSION = '1.
|
19
|
+
VERSION = '1.1.0'
|
20
20
|
LIB_DIR = File.dirname( __FILE__ )
|
21
21
|
end
|
22
22
|
end
|
data/test/test_server.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
#.hashdot.profile += jruby-shortlived
|
3
3
|
|
4
4
|
#--
|
5
|
-
# Copyright (c) 2012 David Kellum
|
5
|
+
# Copyright (c) 2012-2014 David Kellum
|
6
6
|
#
|
7
7
|
# Licensed under the Apache License, Version 2.0 (the "License"); you
|
8
8
|
# may not use this file except in compliance with the License. You may
|
metadata
CHANGED
@@ -1,149 +1,213 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: boxed-geminabox
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
version: 1.0.0
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.1.0
|
6
5
|
platform: java
|
7
|
-
authors:
|
8
|
-
|
9
|
-
autorequire:
|
6
|
+
authors:
|
7
|
+
- David Kellum
|
8
|
+
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
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
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
11
|
+
date: 2014-02-05 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: fishwife
|
15
|
+
version_requirements: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 1.5.2
|
20
|
+
requirement: !ruby/object:Gem::Requirement
|
21
|
+
requirements:
|
22
|
+
- - ~>
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 1.5.2
|
25
|
+
prerelease: false
|
26
|
+
type: :runtime
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rjack-jetty
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 9.1.1
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
35
|
+
requirements:
|
36
|
+
- - ~>
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
version: 9.1.1
|
39
|
+
prerelease: false
|
40
|
+
type: :runtime
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: hooker
|
43
|
+
version_requirements: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 1.1.0
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - ~>
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 1.1.0
|
53
|
+
prerelease: false
|
54
|
+
type: :runtime
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rjack-logback
|
57
|
+
version_requirements: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '1.6'
|
62
|
+
requirement: !ruby/object:Gem::Requirement
|
63
|
+
requirements:
|
64
|
+
- - ~>
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: '1.6'
|
67
|
+
prerelease: false
|
68
|
+
type: :runtime
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: geminabox
|
71
|
+
version_requirements: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ~>
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 0.12.2
|
76
|
+
requirement: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - ~>
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: 0.12.2
|
81
|
+
prerelease: false
|
82
|
+
type: :runtime
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: builder
|
85
|
+
version_requirements: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ~>
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 3.2.2
|
90
|
+
requirement: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - ~>
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: 3.2.2
|
95
|
+
prerelease: false
|
96
|
+
type: :runtime
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: nesty
|
99
|
+
version_requirements: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ~>
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 1.0.2
|
104
|
+
requirement: !ruby/object:Gem::Requirement
|
105
|
+
requirements:
|
106
|
+
- - ~>
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
version: 1.0.2
|
109
|
+
prerelease: false
|
110
|
+
type: :runtime
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: httpclient
|
113
|
+
version_requirements: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ~>
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 2.3.4
|
118
|
+
requirement: !ruby/object:Gem::Requirement
|
119
|
+
requirements:
|
120
|
+
- - ~>
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: 2.3.4
|
123
|
+
prerelease: false
|
124
|
+
type: :runtime
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: sinatra
|
127
|
+
version_requirements: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ~>
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: 1.4.1
|
132
|
+
requirement: !ruby/object:Gem::Requirement
|
133
|
+
requirements:
|
134
|
+
- - ~>
|
135
|
+
- !ruby/object:Gem::Version
|
136
|
+
version: 1.4.1
|
137
|
+
prerelease: false
|
138
|
+
type: :runtime
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: minitest
|
141
|
+
version_requirements: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ~>
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: 4.7.4
|
146
|
+
requirement: !ruby/object:Gem::Requirement
|
147
|
+
requirements:
|
148
|
+
- - ~>
|
149
|
+
- !ruby/object:Gem::Version
|
150
|
+
version: 4.7.4
|
151
|
+
prerelease: false
|
152
|
+
type: :development
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: rjack-tarpit
|
155
|
+
version_requirements: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - ~>
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '2.1'
|
160
|
+
requirement: !ruby/object:Gem::Requirement
|
161
|
+
requirements:
|
162
|
+
- - ~>
|
163
|
+
- !ruby/object:Gem::Version
|
164
|
+
version: '2.1'
|
165
|
+
prerelease: false
|
166
|
+
type: :development
|
92
167
|
description: A complete, boxed, and ready to run geminabox deamon on fishwife, jetty, jruby. Install via `gem`, then launch via command line or, with monitoring, via Iyyov.
|
93
|
-
email:
|
94
|
-
|
95
|
-
executables:
|
96
|
-
|
168
|
+
email:
|
169
|
+
- dek-oss@gravitext.com
|
170
|
+
executables:
|
171
|
+
- boxed-geminabox-fg
|
97
172
|
extensions: []
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
- test/test_server.rb
|
173
|
+
extra_rdoc_files:
|
174
|
+
- History.rdoc
|
175
|
+
- README.rdoc
|
176
|
+
files:
|
177
|
+
- History.rdoc
|
178
|
+
- Manifest.txt
|
179
|
+
- README.rdoc
|
180
|
+
- Rakefile
|
181
|
+
- bin/boxed-geminabox-fg
|
182
|
+
- config/config.rb
|
183
|
+
- config/jobs.rb
|
184
|
+
- init/boxed-geminabox
|
185
|
+
- lib/boxed-geminabox/base.rb
|
186
|
+
- lib/boxed-geminabox.rb
|
187
|
+
- test/test_server.rb
|
114
188
|
homepage: http://github.com/dekellum/boxed-geminabox
|
115
189
|
licenses: []
|
116
|
-
|
117
|
-
post_install_message:
|
118
|
-
rdoc_options:
|
119
|
-
|
120
|
-
|
121
|
-
require_paths:
|
122
|
-
|
123
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
124
|
-
|
125
|
-
|
126
|
-
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
none: false
|
134
|
-
requirements:
|
135
|
-
- - ">="
|
136
|
-
- !ruby/object:Gem::Version
|
137
|
-
hash: 2
|
138
|
-
segments:
|
139
|
-
- 0
|
140
|
-
version: "0"
|
190
|
+
metadata: {}
|
191
|
+
post_install_message:
|
192
|
+
rdoc_options:
|
193
|
+
- --main
|
194
|
+
- README.rdoc
|
195
|
+
require_paths:
|
196
|
+
- lib
|
197
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
198
|
+
requirements:
|
199
|
+
- - '>='
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: '0'
|
202
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
203
|
+
requirements:
|
204
|
+
- - '>='
|
205
|
+
- !ruby/object:Gem::Version
|
206
|
+
version: '0'
|
141
207
|
requirements: []
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
specification_version: 3
|
208
|
+
rubyforge_project:
|
209
|
+
rubygems_version: 2.1.9
|
210
|
+
signing_key:
|
211
|
+
specification_version: 4
|
147
212
|
summary: A complete, boxed, and ready to run geminabox deamon on fishwife, jetty, jruby.
|
148
213
|
test_files: []
|
149
|
-
|