wms_getcapabilities 0.0.0 → 0.0.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/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in wms_getcapabilities.gemspec
4
+ gemspec
data/README.md ADDED
File without changes
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require 'bundler/gem_tasks'
@@ -0,0 +1,3 @@
1
+ module WmsGetcapabilities
2
+ VERSION = "0.0.1"
3
+ end
@@ -1,7 +1,5 @@
1
- class WmsGetcapabilities
2
-
3
- def self.hi
1
+ require "wms_getcapabilities/version"
4
2
 
5
- end
6
-
7
- end
3
+ module WmsGetcapabilities
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,20 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "wms_getcapabilities/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "wms_getcapabilities"
7
+ s.version = WmsGetcapabilities::VERSION
8
+ s.authors = ["Jerome Chapron"]
9
+ s.email = ["jchapron@dotgee.fr"]
10
+ s.homepage = "https://github.com/imperYaL/wms_getcapabilities"
11
+ s.summary = "Interface between ruby and Geoserver WMS GetCapabilities"
12
+ s.description = "Interface between ruby and Geoserver WMS GetCapabilities"
13
+
14
+ s.rubyforge_project = "wms_getcapabilities"
15
+
16
+ s.files = `git ls-files`.split("\n")
17
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
+ s.require_paths = ["lib"]
20
+ end
metadata CHANGED
@@ -1,26 +1,31 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wms_getcapabilities
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
8
8
  - Jerome Chapron
9
- - Dotgee
10
9
  autorequire:
11
10
  bindir: bin
12
11
  cert_chain: []
13
12
  date: 2012-10-16 00:00:00.000000000 Z
14
13
  dependencies: []
15
- description: WMS_GetCapabilities allows you to parse attributes from a GeoServer for
16
- example to get all the stored layers
17
- email: jchapron@dotgee.fr
14
+ description: Interface between ruby and Geoserver WMS GetCapabilities
15
+ email:
16
+ - jchapron@dotgee.fr
18
17
  executables: []
19
18
  extensions: []
20
19
  extra_rdoc_files: []
21
20
  files:
21
+ - .gitignore
22
+ - Gemfile
23
+ - README.md
24
+ - Rakefile
22
25
  - lib/wms_getcapabilities.rb
23
- homepage: http://rubygems.org/gems/wms_getcapabilites
26
+ - lib/wms_getcapabilities/version.rb
27
+ - wms_getcapabilities.gemspec
28
+ homepage: https://github.com/imperYaL/wms_getcapabilities
24
29
  licenses: []
25
30
  post_install_message:
26
31
  rdoc_options: []
@@ -39,9 +44,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
39
44
  - !ruby/object:Gem::Version
40
45
  version: '0'
41
46
  requirements: []
42
- rubyforge_project:
47
+ rubyforge_project: wms_getcapabilities
43
48
  rubygems_version: 1.8.6.1
44
49
  signing_key:
45
50
  specification_version: 3
46
- summary: Interface to easily parse Geoserver WMS GetCapabilities
51
+ summary: Interface between ruby and Geoserver WMS GetCapabilities
47
52
  test_files: []