kamel 0.1.1 → 0.1.2
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/HISTORY +2 -0
- data/README.textile +4 -3
- data/Rakefile +2 -1
- data/VERSION +1 -1
- data/spec/kamel/overlay_spec.rb +1 -1
- metadata +47 -13
- data/.gitignore +0 -2
data/HISTORY
ADDED
data/README.textile
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
h1. Kamel
|
|
2
2
|
|
|
3
|
-
<pre><code>gem install
|
|
3
|
+
<pre><code>gem install schleyfox-ruby_kml --source http://gems.github.com
|
|
4
|
+
gem install kamel --source http://gemcutter.org/</code></pre>
|
|
4
5
|
|
|
5
6
|
Create KML files for tasty overlays on google earth and google maps. Provides a cleaner interface than ruby_kml (which it uses internally).
|
|
6
7
|
|
|
@@ -26,6 +27,6 @@ overlay.name = 'Melbourne Train Stations'
|
|
|
26
27
|
end
|
|
27
28
|
puts overlay.to_kml</code></pre>
|
|
28
29
|
|
|
29
|
-
h2.
|
|
30
|
+
h2. Maturity
|
|
30
31
|
|
|
31
|
-
|
|
32
|
+
As far as I know this code is not being used in production, certainly not by me. It depends on a fork of kmlr which is no longer maintained and is not even published to rubygems. So, use at your own risk.
|
data/Rakefile
CHANGED
|
@@ -5,10 +5,11 @@ begin
|
|
|
5
5
|
gemspec.summary = "Create KML files for tasty overlays on google earth and google maps"
|
|
6
6
|
gemspec.description = "Create KML files for tasty overlays on google earth and google maps"
|
|
7
7
|
gemspec.email = "contact@rhnh.net"
|
|
8
|
-
gemspec.homepage = "http://github.com/xaviershay/
|
|
8
|
+
gemspec.homepage = "http://github.com/xaviershay/kamel"
|
|
9
9
|
gemspec.authors = ["Xavier Shay"]
|
|
10
10
|
gemspec.test_files = Dir["spec/**/*_spec.rb"]
|
|
11
11
|
gemspec.add_dependency("schleyfox-ruby_kml", [">= 0.1.4"])
|
|
12
|
+
gemspec.add_development_dependency("rspec", ["~> 1.3.0"])
|
|
12
13
|
end
|
|
13
14
|
rescue LoadError
|
|
14
15
|
puts "Jeweler not available. Install it with: sudo gem install jeweler"
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.2
|
data/spec/kamel/overlay_spec.rb
CHANGED
|
@@ -2,7 +2,7 @@ $LOAD_PATH.unshift(File.dirname(__FILE__) + '/../../lib')
|
|
|
2
2
|
require 'rubygems'
|
|
3
3
|
require 'spec'
|
|
4
4
|
require 'kamel'
|
|
5
|
-
require File.dirname(__FILE__) + '/../xpath_matchers'
|
|
5
|
+
require File.expand_path(File.dirname(__FILE__) + '/../xpath_matchers')
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
require 'rexml/document'
|
metadata
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kamel
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
4
|
+
hash: 31
|
|
5
|
+
prerelease: false
|
|
6
|
+
segments:
|
|
7
|
+
- 0
|
|
8
|
+
- 1
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.1.2
|
|
5
11
|
platform: ruby
|
|
6
12
|
authors:
|
|
7
13
|
- Xavier Shay
|
|
@@ -9,19 +15,41 @@ autorequire:
|
|
|
9
15
|
bindir: bin
|
|
10
16
|
cert_chain: []
|
|
11
17
|
|
|
12
|
-
date:
|
|
18
|
+
date: 2011-05-01 00:00:00 +10:00
|
|
13
19
|
default_executable:
|
|
14
20
|
dependencies:
|
|
15
21
|
- !ruby/object:Gem::Dependency
|
|
16
22
|
name: schleyfox-ruby_kml
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
23
|
+
prerelease: false
|
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
20
26
|
requirements:
|
|
21
27
|
- - ">="
|
|
22
28
|
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 19
|
|
30
|
+
segments:
|
|
31
|
+
- 0
|
|
32
|
+
- 1
|
|
33
|
+
- 4
|
|
23
34
|
version: 0.1.4
|
|
24
|
-
|
|
35
|
+
type: :runtime
|
|
36
|
+
version_requirements: *id001
|
|
37
|
+
- !ruby/object:Gem::Dependency
|
|
38
|
+
name: rspec
|
|
39
|
+
prerelease: false
|
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
42
|
+
requirements:
|
|
43
|
+
- - ~>
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
hash: 27
|
|
46
|
+
segments:
|
|
47
|
+
- 1
|
|
48
|
+
- 3
|
|
49
|
+
- 0
|
|
50
|
+
version: 1.3.0
|
|
51
|
+
type: :development
|
|
52
|
+
version_requirements: *id002
|
|
25
53
|
description: Create KML files for tasty overlays on google earth and google maps
|
|
26
54
|
email: contact@rhnh.net
|
|
27
55
|
executables: []
|
|
@@ -32,7 +60,7 @@ extra_rdoc_files:
|
|
|
32
60
|
- LICENSE
|
|
33
61
|
- README.textile
|
|
34
62
|
files:
|
|
35
|
-
-
|
|
63
|
+
- HISTORY
|
|
36
64
|
- LICENSE
|
|
37
65
|
- README.textile
|
|
38
66
|
- Rakefile
|
|
@@ -42,30 +70,36 @@ files:
|
|
|
42
70
|
- spec/kamel/overlay_spec.rb
|
|
43
71
|
- spec/xpath_matchers.rb
|
|
44
72
|
has_rdoc: true
|
|
45
|
-
homepage: http://github.com/xaviershay/
|
|
73
|
+
homepage: http://github.com/xaviershay/kamel
|
|
46
74
|
licenses: []
|
|
47
75
|
|
|
48
76
|
post_install_message:
|
|
49
|
-
rdoc_options:
|
|
50
|
-
|
|
77
|
+
rdoc_options: []
|
|
78
|
+
|
|
51
79
|
require_paths:
|
|
52
80
|
- lib
|
|
53
81
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
82
|
+
none: false
|
|
54
83
|
requirements:
|
|
55
84
|
- - ">="
|
|
56
85
|
- !ruby/object:Gem::Version
|
|
86
|
+
hash: 3
|
|
87
|
+
segments:
|
|
88
|
+
- 0
|
|
57
89
|
version: "0"
|
|
58
|
-
version:
|
|
59
90
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
91
|
+
none: false
|
|
60
92
|
requirements:
|
|
61
93
|
- - ">="
|
|
62
94
|
- !ruby/object:Gem::Version
|
|
95
|
+
hash: 3
|
|
96
|
+
segments:
|
|
97
|
+
- 0
|
|
63
98
|
version: "0"
|
|
64
|
-
version:
|
|
65
99
|
requirements: []
|
|
66
100
|
|
|
67
101
|
rubyforge_project:
|
|
68
|
-
rubygems_version: 1.3.
|
|
102
|
+
rubygems_version: 1.3.7
|
|
69
103
|
signing_key:
|
|
70
104
|
specification_version: 3
|
|
71
105
|
summary: Create KML files for tasty overlays on google earth and google maps
|
data/.gitignore
DELETED