kamel 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,2 @@
1
+ *.gemspec
2
+ pkg
@@ -1,6 +1,6 @@
1
1
  h1. Kamel
2
2
 
3
- <pre><code>gem install kamel --source http://gems.github.com/</code></pre>
3
+ <pre><code>gem install kamel --source http://gemcutter.org/</code></pre>
4
4
 
5
5
  Create KML files for tasty overlays on google earth and google maps. Provides a cleaner interface than ruby_kml (which it uses internally).
6
6
 
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.1
@@ -2,7 +2,7 @@ begin
2
2
  require 'kml'
3
3
  rescue LoadError
4
4
  puts "You must have ruby_kml either installed to use Kamel - either as a gem or available in your path"
5
- puts "gem install xaviershay-ruby_kml --source http://gems.github.com"
5
+ puts "gem install schleyfox-ruby_kml --source http://gems.github.com"
6
6
  exit
7
7
  end
8
8
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kamel
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Xavier Shay
@@ -32,10 +32,11 @@ extra_rdoc_files:
32
32
  - LICENSE
33
33
  - README.textile
34
34
  files:
35
+ - .gitignore
35
36
  - LICENSE
36
37
  - README.textile
37
38
  - Rakefile
38
- - kamel.gemspec
39
+ - VERSION
39
40
  - lib/kamel.rb
40
41
  - lib/kamel/overlay.rb
41
42
  - spec/kamel/overlay_spec.rb
@@ -1,50 +0,0 @@
1
- # Generated by jeweler
2
- # DO NOT EDIT THIS FILE
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
4
- # -*- encoding: utf-8 -*-
5
-
6
- Gem::Specification.new do |s|
7
- s.name = %q{kamel}
8
- s.version = "0.1.0"
9
-
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["Xavier Shay"]
12
- s.date = %q{2009-10-28}
13
- s.description = %q{Create KML files for tasty overlays on google earth and google maps}
14
- s.email = %q{contact@rhnh.net}
15
- s.extra_rdoc_files = [
16
- "LICENSE",
17
- "README.textile"
18
- ]
19
- s.files = [
20
- "LICENSE",
21
- "README.textile",
22
- "Rakefile",
23
- "kamel.gemspec",
24
- "lib/kamel.rb",
25
- "lib/kamel/overlay.rb",
26
- "spec/kamel/overlay_spec.rb",
27
- "spec/xpath_matchers.rb"
28
- ]
29
- s.homepage = %q{http://github.com/xaviershay/lesstile}
30
- s.rdoc_options = ["--charset=UTF-8"]
31
- s.require_paths = ["lib"]
32
- s.rubygems_version = %q{1.3.4}
33
- s.summary = %q{Create KML files for tasty overlays on google earth and google maps}
34
- s.test_files = [
35
- "spec/kamel/overlay_spec.rb"
36
- ]
37
-
38
- if s.respond_to? :specification_version then
39
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
40
- s.specification_version = 3
41
-
42
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
43
- s.add_runtime_dependency(%q<schleyfox-ruby_kml>, [">= 0.1.4"])
44
- else
45
- s.add_dependency(%q<schleyfox-ruby_kml>, [">= 0.1.4"])
46
- end
47
- else
48
- s.add_dependency(%q<schleyfox-ruby_kml>, [">= 0.1.4"])
49
- end
50
- end