c80_shared 0.1.82 → 0.1.83

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
2
  SHA256:
3
- metadata.gz: 470495c4f0ffeef28e8688ece6570394370701814a2486e79b2d549e0492d6db
4
- data.tar.gz: bc93a08acb019183db21203a3a74772f7a5f03613fdd07694b3edeb340c4669b
3
+ metadata.gz: f446ce32510113f0cb2c82e09b836bb28a54697f99af2ef829fc19412b933bf5
4
+ data.tar.gz: a085225665dd71a9673323ca8998bbc515b0691e6ef39b6c569c718f80f37a1c
5
5
  SHA512:
6
- metadata.gz: ac04d4304a46223e4231de740a726b40ece52d749b2b119ec2f79bac0ba5fcdc7b632bb000df98bd673ce54a278a0809baa2279ba0a0748454966f2be48c333e
7
- data.tar.gz: 82d81a7fb16e5bcd7d2785307785655b7b5443b724c9c18b8c2d95914c3c664c7d4f4b8d721d7ea7121a550bfac9c734b42f365b21bf910e581e31fc5778e2b4
6
+ metadata.gz: eeb25028c85d9709fe1acffb36e95772d5c5499a3c7033f8fa784ffd560d56633d1519b868b442d4384b65a795947775e882290f69bb15b2f466a4ff3ee71e45
7
+ data.tar.gz: 56af73aba906a6a5f519c25e63fb74e0e6d198bfdb0ffe3b48af980379e605c783297f512d732c2df00af04485a938b168148ab8db1c5080f5f4184613ff1926
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- c80_shared (0.1.80)
4
+ c80_shared (0.1.82)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -0,0 +1,8 @@
1
+ module Dicts
2
+ class BoatCondition <::Dict
3
+ NEW = new 1, :new
4
+ USED = new 2, :used
5
+
6
+ ALL = [ NEW, USED ]
7
+ end
8
+ end
@@ -2,5 +2,7 @@ module Dicts
2
2
  class Business < ::Dict
3
3
  RENT = new(1, 'rent')
4
4
  SALE = new(2, 'sale')
5
+
6
+ ALL = [ RENT, SALE ]
5
7
  end
6
- end
8
+ end
@@ -0,0 +1,9 @@
1
+ en:
2
+ dicts:
3
+ boat_condition:
4
+ nominative_case:
5
+ new: new
6
+ used: used
7
+ genitive_case:
8
+ new: buy new
9
+ used: buy used
@@ -0,0 +1,9 @@
1
+ ru:
2
+ dicts:
3
+ boat_condition:
4
+ nominative_case:
5
+ new: Новая
6
+ used: С пробегом
7
+ genitive_case:
8
+ new: Купить новую
9
+ used: Купить с пробегом
@@ -1,3 +1,3 @@
1
1
  module C80Shared
2
- VERSION = "0.1.82"
2
+ VERSION = "0.1.83"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: c80_shared
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.82
4
+ version: 0.1.83
5
5
  platform: ruby
6
6
  authors:
7
7
  - C80609A
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-04-09 00:00:00.000000000 Z
11
+ date: 2020-04-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -51,6 +51,7 @@ files:
51
51
  - Gemfile.lock
52
52
  - README.md
53
53
  - app/dicts/account_type.rb
54
+ - app/dicts/boat_condition.rb
54
55
  - app/dicts/boat_hull.rb
55
56
  - app/dicts/boat_type.rb
56
57
  - app/dicts/business.rb
@@ -122,6 +123,8 @@ files:
122
123
  - config/locales/boat/ru.yml
123
124
  - config/locales/dicts/account_type/en.yml
124
125
  - config/locales/dicts/account_type/ru.yml
126
+ - config/locales/dicts/boat_condition/en.yml
127
+ - config/locales/dicts/boat_condition/ru.yml
125
128
  - config/locales/dicts/business/en.yml
126
129
  - config/locales/dicts/business/ru.yml
127
130
  - config/locales/dicts/charter_category/en.yml