radiant-event_map-extension 1.4.0 → 1.4.1
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/lib/mappable.rb +1 -1
- data/lib/radiant-event_map-extension.rb +1 -1
- metadata +6 -8
data/lib/mappable.rb
CHANGED
|
@@ -52,7 +52,7 @@ private
|
|
|
52
52
|
if geocode_basis.is_gridref? && gr = GridRef.new(geocode_basis, :datum => :wgs84, :accuracy => 8) # for gps and site compatibility wgs84 is better than osgb36
|
|
53
53
|
self.lat = gr.lat
|
|
54
54
|
self.lng = gr.lng
|
|
55
|
-
elsif geocode_basis.
|
|
55
|
+
elsif geocode_basis.is_latlng?
|
|
56
56
|
self.lat, self.lng = geocode_basis.split(/, */)
|
|
57
57
|
else
|
|
58
58
|
bias = Radiant::Config['event_map.zone'] || 'uk'
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
module RadiantEventMapExtension
|
|
2
|
-
VERSION = '1.4.
|
|
2
|
+
VERSION = '1.4.1'
|
|
3
3
|
SUMMARY = %Q{Event geocoding and map extension for Radiant CMS}
|
|
4
4
|
DESCRIPTION = "Small additions to the event_calendar that geocode calendar events and display on a google map. Separated here because perhaps only of interest to a few."
|
|
5
5
|
URL = "http://github.com/radiant/radiant-event_calendar-extension"
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: radiant-event_map-extension
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 5
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 4
|
|
9
|
-
-
|
|
10
|
-
version: 1.4.
|
|
9
|
+
- 1
|
|
10
|
+
version: 1.4.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- William Ross
|
|
@@ -15,8 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-
|
|
19
|
-
default_executable:
|
|
18
|
+
date: 2011-10-12 00:00:00 Z
|
|
20
19
|
dependencies:
|
|
21
20
|
- !ruby/object:Gem::Dependency
|
|
22
21
|
name: geokit
|
|
@@ -90,11 +89,10 @@ files:
|
|
|
90
89
|
- spec/spec.opts
|
|
91
90
|
- spec/spec_helper.rb
|
|
92
91
|
- VERSION
|
|
93
|
-
has_rdoc: true
|
|
94
92
|
homepage: http://github.com/radiant/radiant-event_calendar-extension
|
|
95
93
|
licenses: []
|
|
96
94
|
|
|
97
|
-
post_install_message: "\n Add this to your radiant project with:\n\n config.gem 'radiant-event_map-extension', :version => '~> 1.4.
|
|
95
|
+
post_install_message: "\n Add this to your radiant project with:\n\n config.gem 'radiant-event_map-extension', :version => '~> 1.4.1'\n\n "
|
|
98
96
|
rdoc_options: []
|
|
99
97
|
|
|
100
98
|
require_paths:
|
|
@@ -120,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
120
118
|
requirements: []
|
|
121
119
|
|
|
122
120
|
rubyforge_project:
|
|
123
|
-
rubygems_version: 1.
|
|
121
|
+
rubygems_version: 1.8.10
|
|
124
122
|
signing_key:
|
|
125
123
|
specification_version: 3
|
|
126
124
|
summary: Event geocoding and map extension for Radiant CMS
|