usno 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/lib/usno/version.rb +1 -1
- data/usno.gemspec +1 -0
- metadata +17 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e9f4f5e5c76ab1bfb84b94f226c8dcac9b085b40
|
4
|
+
data.tar.gz: f26f8ccfe8908a632a3c2edfbc6c808f89910d65
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c75d365c26adb8b7aa1a59f73855a38e3eae91b4e0a1411c39e8d7eaf4a5bf9dfd6020509d6d30abba844c555c7c8ee4bf3e8f765ca8af1c792a3fe6ddd78958
|
7
|
+
data.tar.gz: 7330a2b6a93156fef2fbd235335a498f7747e85f8a37b4f02ec23b9f31e50a66cc1fa1dbc48bc553c4a4add8fa13ded25eb8e217a3b338546e166cc2e88fea7e
|
data/README.md
CHANGED
@@ -23,6 +23,7 @@ Require the library/libaries you wish to use:
|
|
23
23
|
```ruby
|
24
24
|
require usno/imagery # For synthetic images of Earth and selected solar system bodies.
|
25
25
|
require usno/transit # For rise/set/transit times for major solar system bodies and selected bright stars
|
26
|
+
require usno/eclipse # For fetching solar/lunar eclipse information
|
26
27
|
```
|
27
28
|
|
28
29
|
## Contributing
|
data/lib/usno/version.rb
CHANGED
data/usno.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: usno
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan T. Hosford
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-11-
|
11
|
+
date: 2013-11-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - '>='
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: usno-eclipse
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '>='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
69
83
|
description: The base USNO gem provides a namespace for other USNO::* gems.
|
70
84
|
email:
|
71
85
|
- tad.hosford@gmail.com
|
@@ -106,3 +120,4 @@ signing_key:
|
|
106
120
|
specification_version: 4
|
107
121
|
summary: The base USNO gem provides a namespace for other USNO::* gems.
|
108
122
|
test_files: []
|
123
|
+
has_rdoc:
|