mapfish 1.3.4 → 1.3.5

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.3.4
1
+ 1.3.5
@@ -15,9 +15,9 @@ module Mapfish
15
15
  end
16
16
 
17
17
  def add_routes
18
- route %{match '#{file_name}/info.:format' => "#{file_name}#info", :via => :get}
19
- route %{match '#{file_name}/create.:format' => "#{file_name}#create", :via => :post}
20
18
  route %{match '#{file_name}/:id.:format' => "#{file_name}#show", :via => :get}
19
+ route %{match '#{file_name}/create.:format' => "#{file_name}#create", :via => :post}
20
+ route %{match '#{file_name}/info.:format' => "#{file_name}#info", :via => :get}
21
21
  end
22
22
 
23
23
  hook_for :helper, :as => :controller, :in => :rails
@@ -1,5 +1,3 @@
1
- require 'print'
2
-
3
1
  class <%= class_name %>Controller < ApplicationController
4
2
  include MapFish::Print::Controller
5
3
 
@@ -2,3 +2,4 @@ require 'spatial_adapter'
2
2
  require 'geojson'
3
3
  require 'mapfish_core_extensions/array.rb'
4
4
  require 'mapfish_core_extensions/active_record/base.rb'
5
+ require 'print'
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{mapfish}
8
- s.version = "1.3.4"
8
+ s.version = "1.3.5"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Pirmin Kalberer"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 3
8
- - 4
9
- version: 1.3.4
8
+ - 5
9
+ version: 1.3.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - Pirmin Kalberer