elcgeo 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.
Files changed (5) hide show
  1. data/Manifest +3 -0
  2. data/Rakefile +12 -0
  3. data/elcgeo.gemspec +30 -0
  4. data/lib/elcgeo.rb +17 -0
  5. metadata +71 -0
data/Manifest ADDED
@@ -0,0 +1,3 @@
1
+ Rakefile
2
+ lib/elcgeo.rb
3
+ Manifest
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+ require 'echoe'
4
+
5
+ Echoe.new('elcgeo', '0.0.1') do |p|
6
+ p.description = "ELC Technologies GEO tools"
7
+ p.url = "http://github.com/elc/elcgeo"
8
+ p.author = "ELC Technologies"
9
+ p.email = "info @nospam@ elctech.com"
10
+ p.ignore_pattern = ["tmp/*", "script/*"]
11
+ p.development_dependencies = []
12
+ end
data/elcgeo.gemspec ADDED
@@ -0,0 +1,30 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{elcgeo}
5
+ s.version = "0.0.1"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["ELC Technologies"]
9
+ s.date = %q{2010-05-07}
10
+ s.description = %q{ELC Technologies GEO tools}
11
+ s.email = %q{info @nospam@ elctech.com}
12
+ s.extra_rdoc_files = ["lib/elcgeo.rb"]
13
+ s.files = ["Rakefile", "lib/elcgeo.rb", "Manifest", "elcgeo.gemspec"]
14
+ s.homepage = %q{http://github.com/elc/elcgeo}
15
+ s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Elcgeo", "--main", "README"]
16
+ s.require_paths = ["lib"]
17
+ s.rubyforge_project = %q{elcgeo}
18
+ s.rubygems_version = %q{1.3.6}
19
+ s.summary = %q{ELC Technologies GEO tools}
20
+
21
+ if s.respond_to? :specification_version then
22
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
23
+ s.specification_version = 3
24
+
25
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
26
+ else
27
+ end
28
+ else
29
+ end
30
+ end
data/lib/elcgeo.rb ADDED
@@ -0,0 +1,17 @@
1
+ # rake install elcgeo.gemspec
2
+ # start irb and test
3
+ #
4
+ # irb
5
+ # require 'rubygems'
6
+ # require 'elcgeo'
7
+ # ELC::Geo.version
8
+ # => 0.1
9
+ #
10
+ # rake gem
11
+ module ELC
12
+ module Geo
13
+ def self.version
14
+ puts '0.1'
15
+ end
16
+ end
17
+ end
metadata ADDED
@@ -0,0 +1,71 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: elcgeo
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 0
8
+ - 1
9
+ version: 0.0.1
10
+ platform: ruby
11
+ authors:
12
+ - ELC Technologies
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2010-05-07 00:00:00 +01:00
18
+ default_executable:
19
+ dependencies: []
20
+
21
+ description: ELC Technologies GEO tools
22
+ email: info @nospam@ elctech.com
23
+ executables: []
24
+
25
+ extensions: []
26
+
27
+ extra_rdoc_files:
28
+ - lib/elcgeo.rb
29
+ files:
30
+ - Rakefile
31
+ - lib/elcgeo.rb
32
+ - Manifest
33
+ - elcgeo.gemspec
34
+ has_rdoc: true
35
+ homepage: http://github.com/elc/elcgeo
36
+ licenses: []
37
+
38
+ post_install_message:
39
+ rdoc_options:
40
+ - --line-numbers
41
+ - --inline-source
42
+ - --title
43
+ - Elcgeo
44
+ - --main
45
+ - README
46
+ require_paths:
47
+ - lib
48
+ required_ruby_version: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ segments:
53
+ - 0
54
+ version: "0"
55
+ required_rubygems_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ segments:
60
+ - 1
61
+ - 2
62
+ version: "1.2"
63
+ requirements: []
64
+
65
+ rubyforge_project: elcgeo
66
+ rubygems_version: 1.3.6
67
+ signing_key:
68
+ specification_version: 3
69
+ summary: ELC Technologies GEO tools
70
+ test_files: []
71
+