zodiac 0.2.8 → 0.2.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -1
- data/README.md +4 -2
- data/lib/locales/uk.yml +14 -0
- data/lib/zodiac/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5d47db1b9f63d1007e8fbb6d8c709a5cda08bcaa
|
4
|
+
data.tar.gz: af30cc588126384746d8fd32192a4a72748d4fca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3fcd36684011082700e611c2e81ae46991be3e7d7d138ef61d92c9f8634e6c7ca2b78e4f3e440c03750144ff9a7041ecca739f4301ad291b74217c14650c679
|
7
|
+
data.tar.gz: 30f92cccdade701bd02411c39ecd7ba223f809c3c54229931fe8c4cfacc8453942c3fdae1d25a635560e165f13c576ac5b305d5a6679fcb2c5bd0ea571d634f6
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# zodiac [![Build Status](https://
|
1
|
+
# zodiac [![Build Status](https://travis-ci.org/7even/zodiac.svg?branch=master)](http://travis-ci.org/7even/zodiac) [![Gem Version](https://badge.fury.io/rb/zodiac.svg)](https://badge.fury.io/rb/zodiac) [![Gitter](https://badges.gitter.im/7even/zodiac.svg)](https://gitter.im/7even/zodiac)
|
2
2
|
|
3
3
|
`zodiac` is a simple gem for getting a zodiac sign from a given date of birth. It extends `Time`, `Date` and `DateTime` objects with a `#zodiac_sign` method and can also extend `ActiveRecord::Base` with several instance (delegated to some date attribute of the model object) and class methods (allowing you to search for objects with a certain zodiac sign)
|
4
4
|
|
@@ -105,6 +105,7 @@ rails generate zodiac:migration Person custom_sign_id
|
|
105
105
|
* fr (French) - thanks [Belibaste](https://github.com/Belibaste)
|
106
106
|
* lv (Latvian) - thanks [ExClouds](https://github.com/ExClouds)
|
107
107
|
* zh-TW (Traditional Chinese) - thanks [Dylan0203](https://github.com/Dylan0203)
|
108
|
+
* uk (Ukrainian) - thanks [valdemarua](https://github.com/valdemarua)
|
108
109
|
|
109
110
|
## Changelog
|
110
111
|
|
@@ -119,12 +120,13 @@ rails generate zodiac:migration Person custom_sign_id
|
|
119
120
|
* 0.2.6 Added rails 4.0 support (thanks [travisp](https://github.com/travisp)).
|
120
121
|
* 0.2.7 Added Chinese, French & Latvian locales, added `Zodiac::Date#zodiac_sign_symbol`.
|
121
122
|
* 0.2.8 Added Traditional Chinese locale (thanks [Dylan0203](https://github.com/Dylan0203)).
|
123
|
+
* 0.2.9 Added Ukrainian locale (thanks [valdemarua](https://github.com/valdemarua)).
|
122
124
|
|
123
125
|
## Roadmap
|
124
126
|
|
125
127
|
1. Rdoc/YARD coverage of everything
|
126
128
|
|
127
|
-
2. Other ORMs support (
|
129
|
+
2. Other ORMs support (ROM, Sequel, Mongoid)
|
128
130
|
|
129
131
|
## Contributing
|
130
132
|
|
data/lib/locales/uk.yml
ADDED
data/lib/zodiac/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zodiac
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vsevolod Romashov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-05-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: funtimes
|
@@ -149,6 +149,7 @@ files:
|
|
149
149
|
- lib/locales/lv.yml
|
150
150
|
- lib/locales/pt-BR.yml
|
151
151
|
- lib/locales/ru.yml
|
152
|
+
- lib/locales/uk.yml
|
152
153
|
- lib/locales/zh-CN.yml
|
153
154
|
- lib/locales/zh-TW.yml
|
154
155
|
- lib/zodiac.rb
|
@@ -184,7 +185,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
184
185
|
version: '0'
|
185
186
|
requirements: []
|
186
187
|
rubyforge_project:
|
187
|
-
rubygems_version: 2.5.
|
188
|
+
rubygems_version: 2.5.2
|
188
189
|
signing_key:
|
189
190
|
specification_version: 4
|
190
191
|
summary: Zodiac sign calculator for any date
|