trinidad_jars 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +2 -1
- data/spec/trinidad/command_line_parser_spec.rb +5 -0
- data/trinidad-libs/tomcat-core.jar +0 -0
- metadata +44 -47
data/README.rdoc
CHANGED
@@ -2,7 +2,8 @@
|
|
2
2
|
|
3
3
|
Trinidad allows you to run a rails or rackup applications within an embedded Apache Tomcat container.
|
4
4
|
|
5
|
-
|
5
|
+
Mail list: http://groups.google.com/group/rails-trinidad
|
6
|
+
Bug tracker: http://github.com/calavera/trinidad/issues
|
6
7
|
|
7
8
|
== INSTALL:
|
8
9
|
|
@@ -116,4 +116,9 @@ describe Trinidad::CommandLineParser do
|
|
116
116
|
options = subject.parse(args)
|
117
117
|
options.has_key?(:bar).should be_true
|
118
118
|
end
|
119
|
+
|
120
|
+
it "adds the application directory path with the option --dir" do
|
121
|
+
args = "--dir #{MOCK_WEB_APP_DIR}".split
|
122
|
+
subject.parse(args)[:web_app_dir].should == MOCK_WEB_APP_DIR
|
123
|
+
end
|
119
124
|
end
|
Binary file
|
metadata
CHANGED
@@ -1,75 +1,72 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: trinidad_jars
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash: 17
|
5
4
|
prerelease: false
|
6
5
|
segments:
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
version: 0.3.
|
6
|
+
- 0
|
7
|
+
- 3
|
8
|
+
- 2
|
9
|
+
version: 0.3.2
|
11
10
|
platform: ruby
|
12
11
|
authors:
|
13
|
-
- David Calavera
|
12
|
+
- David Calavera
|
14
13
|
autorequire:
|
15
14
|
bindir: bin
|
16
15
|
cert_chain: []
|
17
16
|
|
18
|
-
date: 2010-09-
|
17
|
+
date: 2010-09-26 00:00:00 +02:00
|
19
18
|
default_executable: trinidad
|
20
19
|
dependencies: []
|
21
20
|
|
22
21
|
description:
|
23
22
|
email: calavera@apache.org
|
24
23
|
executables:
|
25
|
-
- trinidad
|
24
|
+
- trinidad
|
26
25
|
extensions: []
|
27
26
|
|
28
27
|
extra_rdoc_files:
|
29
|
-
- LICENSE
|
30
|
-
- README.rdoc
|
28
|
+
- LICENSE
|
29
|
+
- README.rdoc
|
31
30
|
files:
|
32
|
-
- lib/trinidad/jars.rb
|
33
|
-
- trinidad-libs/tomcat-core.jar
|
34
|
-
- LICENSE
|
35
|
-
- README.rdoc
|
36
|
-
- spec/
|
37
|
-
- spec/fixtures/
|
38
|
-
- spec/
|
39
|
-
- spec/trinidad/command_line_parser_spec.rb
|
40
|
-
- spec/trinidad/extensions_spec.rb
|
41
|
-
- spec/trinidad/fakeapp.rb
|
42
|
-
- spec/trinidad/server_spec.rb
|
43
|
-
- spec/trinidad/web_app_lifecycle_listener_spec.rb
|
44
|
-
- spec/trinidad/web_app_spec.rb
|
45
|
-
- bin/trinidad
|
31
|
+
- lib/trinidad/jars.rb
|
32
|
+
- trinidad-libs/tomcat-core.jar
|
33
|
+
- LICENSE
|
34
|
+
- README.rdoc
|
35
|
+
- spec/spec_helper.rb
|
36
|
+
- spec/fixtures/trinidad_foo_extension.rb
|
37
|
+
- spec/fixtures/trinidad_override_tomcat_extension.rb
|
38
|
+
- spec/trinidad/command_line_parser_spec.rb
|
39
|
+
- spec/trinidad/extensions_spec.rb
|
40
|
+
- spec/trinidad/fakeapp.rb
|
41
|
+
- spec/trinidad/server_spec.rb
|
42
|
+
- spec/trinidad/web_app_lifecycle_listener_spec.rb
|
43
|
+
- spec/trinidad/web_app_spec.rb
|
44
|
+
- bin/trinidad
|
46
45
|
has_rdoc: true
|
47
46
|
homepage: http://calavera.github.com/trinidad
|
48
47
|
licenses: []
|
49
48
|
|
50
49
|
post_install_message:
|
51
50
|
rdoc_options:
|
52
|
-
- --charset=UTF-8
|
51
|
+
- --charset=UTF-8
|
53
52
|
require_paths:
|
54
|
-
- lib
|
53
|
+
- lib
|
55
54
|
required_ruby_version: !ruby/object:Gem::Requirement
|
56
55
|
none: false
|
57
56
|
requirements:
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
version: "0"
|
57
|
+
- - ">="
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
segments:
|
60
|
+
- 0
|
61
|
+
version: "0"
|
64
62
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
65
63
|
none: false
|
66
64
|
requirements:
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
version: "0"
|
65
|
+
- - ">="
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
segments:
|
68
|
+
- 0
|
69
|
+
version: "0"
|
73
70
|
requirements: []
|
74
71
|
|
75
72
|
rubyforge_project: trinidad_jars
|
@@ -78,12 +75,12 @@ signing_key:
|
|
78
75
|
specification_version: 3
|
79
76
|
summary: Common jars for Trinidad
|
80
77
|
test_files:
|
81
|
-
- spec/
|
82
|
-
- spec/fixtures/
|
83
|
-
- spec/
|
84
|
-
- spec/trinidad/command_line_parser_spec.rb
|
85
|
-
- spec/trinidad/extensions_spec.rb
|
86
|
-
- spec/trinidad/fakeapp.rb
|
87
|
-
- spec/trinidad/server_spec.rb
|
88
|
-
- spec/trinidad/web_app_lifecycle_listener_spec.rb
|
89
|
-
- spec/trinidad/web_app_spec.rb
|
78
|
+
- spec/spec_helper.rb
|
79
|
+
- spec/fixtures/trinidad_foo_extension.rb
|
80
|
+
- spec/fixtures/trinidad_override_tomcat_extension.rb
|
81
|
+
- spec/trinidad/command_line_parser_spec.rb
|
82
|
+
- spec/trinidad/extensions_spec.rb
|
83
|
+
- spec/trinidad/fakeapp.rb
|
84
|
+
- spec/trinidad/server_spec.rb
|
85
|
+
- spec/trinidad/web_app_lifecycle_listener_spec.rb
|
86
|
+
- spec/trinidad/web_app_spec.rb
|