vincenty 1.0.7 → 1.0.11

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 7d5bab399fe263dce0f8b331aa915144b7f8908b
4
- data.tar.gz: 7ec4b70ae9b5282b72e584311c66a1b3fb91d557
2
+ SHA256:
3
+ metadata.gz: d378b30cc2863c4fbdb032cf44473d75c2a5e479eb226e3e24d956a0c9a77e66
4
+ data.tar.gz: b3b552e6a59501707b76c848aa7e1fae795a2430d91d1f180c177b16a23bc604
5
5
  SHA512:
6
- metadata.gz: 97cb65b1bfba2c8ad34a085901811a13c6269085e89475a733ad112387a775c1ea2b2cdbcd762600ba2b6fe9cb732930b2f608374b82bc3449c495f2a5a071f1
7
- data.tar.gz: e31456a68c097ad32bad8bd06d89db7acd3013098322327827dd47c9cd4e161dfb5dbfb0c2680eb5127038bbaf17de74302ec5ac22ac1b0a4f72151aacdc4ac5
6
+ metadata.gz: 201e6694807048f2029f6b8779f70c9a068aace73ff8495fb29ee6cfda76de7e941bed8ca1e861e970d4e5c8ce67818554f4254ea5a4bb3aff86d2867afa86e0
7
+ data.tar.gz: f0770e50a4225648bd054bbfeb4bab51024452536456bb9b69c6244b516514be0c93ee9d80cb4960997464c036c073208413ceac0e1d8f4e9930942274121d9a
data/History.txt CHANGED
@@ -1,3 +1,37 @@
1
+ robertburrowes Thu Oct 14 15:09:23 2021 +1300
2
+ bumped version
3
+ robertburrowes Thu Oct 14 15:06:18 2021 +1300
4
+ Bump version.
5
+ robertburrowes Thu Oct 14 14:43:00 2021 +1300
6
+ Bearing 0 and 180 edgecase for spherical test method resulted in negative sqrt
7
+ robertburrowes Sun Oct 10 12:09:10 2021 +1300
8
+ #{PROJECT} release 1.0.10
9
+ robertburrowes Sun Oct 10 12:07:45 2021 +1300
10
+ Inc version
11
+ robertburrowes Sun Oct 10 12:05:54 2021 +1300
12
+ removed Float.round, as ruby now does this. removed to_r, as it is now defined in the core ruby libraries, with a different meaning
13
+ robertburrowes Sun Oct 10 11:44:09 2021 +1300
14
+ Chmod, adding world readable
15
+ robertburrowes Sun Oct 10 11:39:21 2021 +1300
16
+ Bump Version, after removing stray '.'
17
+ robertburrowes Fri Oct 8 16:32:19 2021 +1300
18
+ rubocop cleanup
19
+ robertburrowes Sat Oct 31 22:30:50 2020 +1300
20
+ .yardoc shouldn't be in the repo
21
+ robertburrowes Sat Oct 31 16:25:23 2020 +1300
22
+ Include Separate License file
23
+ robertburrowes Sat Oct 31 16:19:30 2020 +1300
24
+ Docs at .io, not .com
25
+ robertburrowes Sat Oct 31 16:19:12 2020 +1300
26
+ Standard Rakefile
27
+ robertburrowes Sat Oct 31 16:18:42 2020 +1300
28
+ Mv dev scripts to sbin
29
+ rbur004 Sat Dec 3 18:12:35 2016 +1300
30
+ Changed tests to be individually runable
31
+ rbur004 Sat Dec 3 17:36:05 2016 +1300
32
+ Code is old. Needed require change to require_relative
33
+ Rob Burrowes Fri May 22 14:07:09 2015 +1200
34
+ Dropped this, as it is auto generated.
1
35
  Rob Burrowes Mon May 18 16:51:05 2015 +1200
2
36
 
3
37
  Rob Burrowes Mon May 18 14:33:16 2015 +1200
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Vincenty
2
2
 
3
- * http://rbur004.github.com/vincenty/
4
- * Source https://github.com/rbur004/vincenty
5
- * Gem https://rubygems.org/gems/vincenty
3
+ * Docs :: http://rbur004.github.io/vincenty/
4
+ * Source :: https://github.com/rbur004/vincenty
5
+ * Gem :: https://rubygems.org/gems/vincenty
6
6
 
7
7
  ## DESCRIPTION:
8
8
 
data/Rakefile CHANGED
@@ -1,20 +1,27 @@
1
- #!/usr/local/bin/ruby
2
1
  # -*- ruby -*-
3
-
4
2
  require 'rubygems'
5
3
  require 'hoe'
6
- #require 'lib/vincenty.rb'
7
4
  Hoe.plugin :yard
5
+ load "#{__dir__}/version"
8
6
 
9
- Hoe.spec 'vincenty' do
10
- #self.rubyforge_name = "vincenty"
7
+ Hoe.spec PROJECT do
8
+ self.readme_file = "README.md"
11
9
  self.developer( "Rob Burrowes","r.burrowes@auckland.ac.nz")
10
+ remote_rdoc_dir = '' # Release to root
12
11
 
13
- self.yard_title = 'Vincenty'
12
+ self.yard_title = PROJECT
14
13
  self.yard_options = ['--markup', 'markdown', '--protected']
15
- #self.url = "http://www.wikarekare.org"
16
- #self.summary = "Vincenty Algorithm for Distance, Bearing between Map Coordinates."
17
- #self.description = s.paragraphs_of('README.txt', 1..4).join("\n\n")
18
- #self.remote_rdoc_dir = '' # Release to root
19
14
  end
20
15
 
16
+
17
+ #Validate manfest.txt
18
+ #rake check_manifest
19
+
20
+ #Local checking. Creates pkg/
21
+ #rake gem
22
+
23
+ #create doc/
24
+ #rake docs
25
+
26
+ #Copy up to rubygem.org
27
+ #rake release VERSION=1.0.1