trinidad 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == Trinidad 1.1.1 (2011-03-27)
2
+
3
+ * Remove shared runtime initialization
4
+
1
5
  == Trinidad 1.1.0 (2011-03-18)
2
6
 
3
7
  * Hot deployment integrated in the core gem
@@ -18,16 +18,9 @@ module Trinidad
18
18
 
19
19
  def configure_defaults(context)
20
20
  remove_defaults(context)
21
- configure_context_runtime(context)
22
21
  configure_logging
23
22
  end
24
23
 
25
- def configure_context_runtime(context)
26
- if @webapp.solo? && @webapp.threadsafe?
27
- context.servlet_context.set_attribute('jruby.runtime', JRuby.runtime)
28
- end
29
- end
30
-
31
24
  def remove_defaults(context)
32
25
  context.remove_welcome_file('index.jsp')
33
26
  context.remove_welcome_file('index.htm')
@@ -205,8 +205,7 @@ module Trinidad
205
205
  default_app = {
206
206
  :context_path => config[:context_path],
207
207
  :web_app_dir => config[:web_app_dir] || Dir.pwd,
208
- :log => config[:log],
209
- :solo => true
208
+ :log => config[:log]
210
209
  }
211
210
  default_app[:rackup] = config[:rackup] if (config.has_key?(:rackup))
212
211
 
data/lib/trinidad.rb CHANGED
@@ -21,5 +21,5 @@ require 'trinidad/rackup_web_app'
21
21
  require 'trinidad/war_web_app'
22
22
 
23
23
  module Trinidad
24
- VERSION = '1.1.0'
24
+ VERSION = '1.1.1'
25
25
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: trinidad
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.1.0
5
+ version: 1.1.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - David Calavera
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-03-18 00:00:00 -07:00
13
+ date: 2011-03-27 00:00:00 -07:00
14
14
  default_executable: trinidad
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency