zodiac 0.2.8 → 0.2.9

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: 0b6b26ad5faca056d5172957d718dfe1a662895c
4
- data.tar.gz: 08cc49094a39f0366472937bfa2db1f9714e0fad
3
+ metadata.gz: 5d47db1b9f63d1007e8fbb6d8c709a5cda08bcaa
4
+ data.tar.gz: af30cc588126384746d8fd32192a4a72748d4fca
5
5
  SHA512:
6
- metadata.gz: 81e626c22ab4e911c588fe0c6c653bbe16b0ffb29ee321e62ff3850c8865d9ba0af62d6dcf963ebc4052e86c6bc0830e81ceeb1d44151ddd823af18a9b670f5d
7
- data.tar.gz: 30b8ed125ca449bb50df3685e99eb84028d2b6b2efc085ea16ab596b6f1653185e503da457cfd9b54b669911e14a4259e8f7ccd79c373ec76f72c803ee7ef50a
6
+ metadata.gz: d3fcd36684011082700e611c2e81ae46991be3e7d7d138ef61d92c9f8634e6c7ca2b78e4f3e440c03750144ff9a7041ecca739f4301ad291b74217c14650c679
7
+ data.tar.gz: 30f92cccdade701bd02411c39ecd7ba223f809c3c54229931fe8c4cfacc8453942c3fdae1d25a635560e165f13c576ac5b305d5a6679fcb2c5bd0ea571d634f6
@@ -1,5 +1,5 @@
1
1
  rvm:
2
- - 1.9.3
3
2
  - 2.0.0
4
3
  - 2.1.5
5
4
  - 2.2.0
5
+ - 2.3.3
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # zodiac [![Build Status](https://secure.travis-ci.org/7even/zodiac.png)](http://travis-ci.org/7even/zodiac) [![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/7even/zodiac)
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 (DataMapper, Sequel, Mongoid)
129
+ 2. Other ORMs support (ROM, Sequel, Mongoid)
128
130
 
129
131
  ## Contributing
130
132
 
@@ -0,0 +1,14 @@
1
+ uk:
2
+ zodiac:
3
+ aries: Овен
4
+ taurus: Телець
5
+ gemini: Близнята
6
+ cancer: Рак
7
+ leo: Лев
8
+ virgo: Діва
9
+ libra: Терези
10
+ scorpio: Скорпіон
11
+ sagittarius: Стрілец
12
+ capricorn: Козоріг
13
+ aquarius: Водолій
14
+ pisces: Риби
@@ -1,3 +1,3 @@
1
1
  module Zodiac
2
- VERSION = '0.2.8'
2
+ VERSION = '0.2.9'
3
3
  end
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.8
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: 2016-10-02 00:00:00.000000000 Z
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.1
188
+ rubygems_version: 2.5.2
188
189
  signing_key:
189
190
  specification_version: 4
190
191
  summary: Zodiac sign calculator for any date