silva 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.
Files changed (3) hide show
  1. data/lib/silva/version.rb +1 -1
  2. data/silva.gemspec +20 -18
  3. metadata +40 -8
data/lib/silva/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Silva
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
data/silva.gemspec CHANGED
@@ -1,22 +1,24 @@
1
- # -*- encoding: utf-8 -*-
2
- lib = File.expand_path('../lib/', __FILE__)
3
- $LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
1
+ # encoding: utf-8
2
+
3
+ lib = File.expand_path('../lib', __FILE__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
5
  require 'silva/version'
5
6
 
6
- Gem::Specification.new do |gem|
7
- gem.authors = ["Robert Dallas Gray"]
8
- gem.email = ["mail@robertdallasgray.com"]
9
- gem.summary = "Convert between the GPS (WGS84) location standard and UK Ordnance Survey standards."
10
- gem.description = "Silva converts location data to and from WGS84, OSGB36, eastings/northings and standard OS grid references."
11
- gem.homepage = "http://github.com/rdallasgray/silva"
12
- gem.license = "FreeBSD"
13
- gem.required_ruby_version = ">= 1.9"
14
- gem.add_development_dependency "test-unit"
7
+ Gem::Specification.new do |spec|
8
+ spec.name = 'silva'
9
+ spec.version = Silva::VERSION
10
+ spec.authors = ['Robert Dallas Gray']
11
+ spec.email = ['mail@robertdallasgray.com']
12
+ spec.description = %q{Convert between the GPS (WGS84) location standard and UK Ordnance Survey standards}
13
+ spec.summary = %q{Silva converts location data to and from WGS84, OSGB36, eastings/northings and standard OS grid references.}
14
+ spec.homepage = 'https://github.com/rdallasgray/silva.git'
15
+ spec.license = 'FreeBSD'
16
+
17
+ spec.files = `git ls-files`.split($/)
18
+ spec.test_files = spec.files.grep(/test\//)
19
+ spec.require_paths = ['lib']
15
20
 
16
- gem.files = `git ls-files`.split($\)
17
- gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
18
- gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
19
- gem.name = "silva"
20
- gem.require_paths = ["lib"]
21
- gem.version = Silva::VERSION
21
+ spec.add_development_dependency 'bundler', '~> 1.3'
22
+ spec.add_development_dependency 'rake'
23
+ spec.add_development_dependency 'test-unit'
22
24
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: silva
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,8 +9,40 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-08-18 00:00:00.000000000 Z
12
+ date: 2013-08-19 00:00:00.000000000 Z
13
13
  dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: bundler
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: '1.3'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: '1.3'
30
+ - !ruby/object:Gem::Dependency
31
+ name: rake
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
14
46
  - !ruby/object:Gem::Dependency
15
47
  name: test-unit
16
48
  requirement: !ruby/object:Gem::Requirement
@@ -27,8 +59,8 @@ dependencies:
27
59
  - - ! '>='
28
60
  - !ruby/object:Gem::Version
29
61
  version: '0'
30
- description: Silva converts location data to and from WGS84, OSGB36, eastings/northings
31
- and standard OS grid references.
62
+ description: Convert between the GPS (WGS84) location standard and UK Ordnance Survey
63
+ standards
32
64
  email:
33
65
  - mail@robertdallasgray.com
34
66
  executables: []
@@ -60,7 +92,7 @@ files:
60
92
  - test/silva/test_osgb36.rb
61
93
  - test/silva/test_wgs84.rb
62
94
  - test/test_helper.rb
63
- homepage: http://github.com/rdallasgray/silva
95
+ homepage: https://github.com/rdallasgray/silva.git
64
96
  licenses:
65
97
  - FreeBSD
66
98
  post_install_message:
@@ -72,7 +104,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
72
104
  requirements:
73
105
  - - ! '>='
74
106
  - !ruby/object:Gem::Version
75
- version: '1.9'
107
+ version: '0'
76
108
  required_rubygems_version: !ruby/object:Gem::Requirement
77
109
  none: false
78
110
  requirements:
@@ -84,8 +116,8 @@ rubyforge_project:
84
116
  rubygems_version: 1.8.23
85
117
  signing_key:
86
118
  specification_version: 3
87
- summary: Convert between the GPS (WGS84) location standard and UK Ordnance Survey
88
- standards.
119
+ summary: Silva converts location data to and from WGS84, OSGB36, eastings/northings
120
+ and standard OS grid references.
89
121
  test_files:
90
122
  - test/silva/test_bad_data.rb
91
123
  - test/silva/test_data.rb