trinidad_sandbox_extension 1.0.0 → 1.0.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
+ == 1.0.1 (2011-03-27)
2
+
3
+ * Fix error rendering xml format
4
+
1
5
  == 1.0.0 (2011-03-17)
2
6
 
3
7
  * New design
@@ -6,7 +6,7 @@ require File.expand_path('../../trinidad-libs/trinidad-sandbox-extension', __FIL
6
6
  module Trinidad
7
7
  module Extensions
8
8
  class SandboxServerExtension < ServerExtension
9
- VERSION = '1.0.0'
9
+ VERSION = '1.0.1'
10
10
 
11
11
  def configure(tomcat)
12
12
  opts = prepare_options
@@ -9,5 +9,5 @@
9
9
  %link(rel = "#{action[:rel]}" href = "#{action[:href]}.xml")
10
10
  - if app.parameters
11
11
  %context-parameters
12
- - app.parameters.each do |param_name|
13
- %parameter(name = "#{param_name}" value = "#{app.find_parameter(param_name)}")
12
+ - app.parameters.each do |key, value|
13
+ %parameter(name = "#{key}" value = "#{value}")
@@ -13,8 +13,8 @@ Gem::Specification.new do |s|
13
13
  ## If your rubyforge_project name is different, then edit it and comment out
14
14
  ## the sub! line in the Rakefile
15
15
  s.name = 'trinidad_sandbox_extension'
16
- s.version = '1.0.0'
17
- s.date = '2011-03-17'
16
+ s.version = '1.0.1'
17
+ s.date = '2011-03-27'
18
18
  s.rubyforge_project = 'trinidad_sandbox_extension'
19
19
 
20
20
  ## Make sure your summary is short. The description may be as long
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: trinidad_sandbox_extension
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.0.0
5
+ version: 1.0.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-17 00:00:00 -07:00
13
+ date: 2011-03-27 00:00:00 -07:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency