trinidad 0.4.1 → 0.5.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/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.4.1 (2009-07-26)
2
+
3
+ * using jruby-rack development version to solve some bugs related with it.
4
+
1
5
  == 0.4.0 (2009-07-16)
2
6
 
3
7
  * support for ssl connections
data/Rakefile CHANGED
@@ -13,6 +13,7 @@ begin
13
13
 
14
14
  gem.files = FileList['bin/*', 'lib/**/*.rb', 'trinidad-libs/*.jar', 'History.txt', 'LICENSE', 'Rakefile', 'README.rdoc', 'VERSION']
15
15
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
16
+ gem.add_dependency 'rack', '>=1.0'
16
17
  end
17
18
 
18
19
  rescue LoadError
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.1
1
+ 0.5.0
data/lib/trinidad/jars.rb CHANGED
@@ -7,7 +7,7 @@ module Trinidad
7
7
  require 'tomcat-core'
8
8
  require 'jetty-util-6.1.14'
9
9
 
10
- require "jruby-rack-0.9.5-SNAPSHOT"
10
+ require "jruby-rack-0.9.5"
11
11
 
12
12
  module Tomcat
13
13
  include_package 'org.apache.catalina'
@@ -26,4 +26,4 @@ module Trinidad
26
26
  include_package "org.jruby.rack"
27
27
  include_package "org.jruby.rack.rails"
28
28
  end
29
- end
29
+ end
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trinidad
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Calavera
@@ -9,10 +9,19 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-07-26 00:00:00 +02:00
12
+ date: 2009-10-26 00:00:00 +01:00
13
13
  default_executable: trinidad
14
- dependencies: []
15
-
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rack
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "1.0"
24
+ version:
16
25
  description:
17
26
  email: calavera@apache.org
18
27
  executables:
@@ -40,7 +49,7 @@ files:
40
49
  - trinidad-libs/jasper-jdt.jar
41
50
  - trinidad-libs/jasper.jar
42
51
  - trinidad-libs/jetty-util-6.1.14.jar
43
- - trinidad-libs/jruby-rack-0.9.5-SNAPSHOT.jar
52
+ - trinidad-libs/jruby-rack-0.9.5.jar
44
53
  - trinidad-libs/jsp-2.1.jar
45
54
  - trinidad-libs/jsp-api-2.1.jar
46
55
  - trinidad-libs/servlet-api-2.5-6.1.14.jar
@@ -71,12 +80,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
71
80
  requirements: []
72
81
 
73
82
  rubyforge_project: trinidad
74
- rubygems_version: 1.3.2
83
+ rubygems_version: 1.3.5
75
84
  signing_key:
76
85
  specification_version: 3
77
86
  summary: Simple library to run rails applications into an embedded Tomcat
78
87
  test_files:
79
88
  - spec/spec_helper.rb
80
- - spec/trinidad/command_line_parser_spec.rb
81
89
  - spec/trinidad/server_spec.rb
90
+ - spec/trinidad/command_line_parser_spec.rb
82
91
  - spec/trinidad/web_app_spec.rb