mormon 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -22,7 +22,7 @@ module Mormon
22
22
  end
23
23
 
24
24
  def find_route(node_start, node_end, transport)
25
- result, nodes = route(node_start, node_end, transport)
25
+ result, nodes = route(node_start.to_i, node_end.to_i, transport.to_sym)
26
26
 
27
27
  return [result,[]] if result != 'success'
28
28
 
@@ -1,3 +1,3 @@
1
1
  module Mormon
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
data/spec/mormon_spec.rb CHANGED
@@ -1,6 +1,5 @@
1
1
  require 'spec_helper'
2
2
  require 'mormon'
3
- require 'benchmark'
4
3
 
5
4
  describe Mormon::Weight do
6
5
  it "get (transport, way type) must to return a value" do
@@ -75,6 +74,14 @@ describe Mormon::OSM::Loader do
75
74
  File.zero?(@loader.cache_filename).should eq false
76
75
  end
77
76
 
77
+ it "should let change the cache dir" do
78
+ cache_dir = File.join File.dirname(__FILE__), "..", "cache"
79
+ Mormon::OSM::Loader.cache_dir = cache_dir
80
+ @loader = Mormon::OSM::Loader.new spec_osm_file, :cache => true
81
+ cache_filename = File.join Mormon::OSM::Loader.cache_dir, File.basename(spec_osm_file) + ".pstore"
82
+ @loader.cache_filename.should eq cache_filename
83
+ end
84
+
78
85
  it "should have stored the same data" do
79
86
  @without_cache = Mormon::OSM::Loader.new spec_osm_file
80
87
  @with_cache = Mormon::OSM::Loader.new spec_osm_file, :cache => true
@@ -93,6 +100,20 @@ describe Mormon::OSM::Loader do
93
100
  end
94
101
 
95
102
  describe Mormon::OSM::Router do
103
+ it "should find the route if the params are strings" do
104
+ @loader = Mormon::OSM::Loader.new spec_osm_file
105
+ @router = Mormon::OSM::Router.new @loader
106
+
107
+ response, route = @router.find_route "448193278", 448193334, "car"
108
+ response.should eq "success"
109
+ route.should eq [
110
+ [-37.3211676, -59.1269871],
111
+ [-37.3223495, -59.1262886],
112
+ [-37.3229002, -59.1277355],
113
+ [-37.3234584, -59.1292045],
114
+ [-37.3246275, -59.1285124]
115
+ ]
116
+ end
96
117
 
97
118
  it "should do the routing without problems" do
98
119
  @loader = Mormon::OSM::Loader.new spec_osm_file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mormon
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-09-29 00:00:00.000000000 Z
12
+ date: 2012-10-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: nokogiri