astro_calc 0.1.0 → 0.1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ee89910366228a53674c4e7bcba7604cd2139220
4
- data.tar.gz: b0ad671fa095211076c10a1fd8b8e2a71ae77c08
3
+ metadata.gz: 47e8093638e9059b74669fe2363e1bac25c3ec44
4
+ data.tar.gz: 76c5ec6f48d04f7b50aa1248a8cb90ffbcc85aeb
5
5
  SHA512:
6
- metadata.gz: 75dfba202125041ac3b58f1aac72ece63b029d088b9b7bcc55b4c4408ee3ad1d98cabd15983822bfe09a21b5f1dc0c35194dfc76b6144b2b666674a3980b5dea
7
- data.tar.gz: 4b87d456899f17229cfd287cee0cf7de4a1d69ed02c5b4f13fda7d3cf2a6be47228169a761ec778061cf751b046551590261906d24884cb7fd44454e05d5fcfb
6
+ metadata.gz: aa6a4ef0cd65e01fba653da89b264a6d0d5c1c601f962b55efbafd77fc2c28f23041d7d005e8e4f9288d26fc7b06e2a3135d2a852b374e82d3ccda082af188f4
7
+ data.tar.gz: 5a9febde82d9a78948ddacf52bbd5a3cae873d7130c2a319a70699013c833bdfaa4b228ce8bad2684ae4b022ba6fc28edd9cb0e1416116b5ec3a9c1de747fa06
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # AstroCalc
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/astro_calc`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ A gem providing various utilities for astronomy.
4
4
 
5
- TODO: Delete this and the text above, and describe your gem
5
+ 1) Moon phases
6
6
 
7
7
  ## Installation
8
8
 
@@ -32,8 +32,9 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
32
32
 
33
33
  ## Contributing
34
34
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/astro_calc. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
35
+ Bug reports and pull requests are welcome on my project page at https://redmine.mallaby.me
36
36
 
37
+ This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
37
38
 
38
39
  ## License
39
40
 
data/astro_calc.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["reuben@mallaby.me"]
11
11
 
12
12
  spec.summary = %q{Astronomical gem to provide various calulations.}
13
- spec.homepage = "http://mallaby.me/projects/astro"
13
+ spec.homepage = "http://mallaby.me/projects/astro_calc"
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
@@ -1,3 +1,3 @@
1
1
  module AstroCalc
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
data/lib/astro_calc.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  require "astro_calc/version"
2
- require "astro_calc/moon_phase"
2
+ require "astro_calc/moon_phases"
3
3
 
4
4
  module AstroCalc
5
5
  # Your code goes here...
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: astro_calc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Reuben Mallaby
@@ -73,7 +73,7 @@ files:
73
73
  - lib/astro_calc.rb
74
74
  - lib/astro_calc/moon_phases.rb
75
75
  - lib/astro_calc/version.rb
76
- homepage: http://mallaby.me/projects/astro
76
+ homepage: http://mallaby.me/projects/astro_calc
77
77
  licenses:
78
78
  - MIT
79
79
  metadata: {}