enumerations 2.5.3 → 2.5.4

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: 7415435429c08e2093220592c091dffca83b50fd26f6d71836873594da483778
4
- data.tar.gz: 63538f83e93d43926f2401297c213a03c814efb667d96259f8f86cfa241072e3
3
+ metadata.gz: 96fda6cfaff4da9dfd29920b976700cb73ac86717712db80e65f255188ee5c42
4
+ data.tar.gz: 2bc62be14144f04d162423d9d36f9949e397f6a325464d4e4fd5488e16688b83
5
5
  SHA512:
6
- metadata.gz: dfcb47a129cd32afa78c25897aa681bef271266c878ba9fc077df12ed15543ebdab1f97e71c580adb9e19523bbf3287b3ec0a46a52b247f42030c4f9ade31b1d
7
- data.tar.gz: 2dbce2808dcadd1cb3e0b16193b9f66e567846c8d9dca89478d30edc6c1b583e8b8b9e8443e08ec162e7e30dc78423cf7b90edf5de41de2b64722b664785a1d2
6
+ metadata.gz: fd955f210f7747cfd692f7ee2f333e66aeca3a280ab20d1eee9fb96c9287505f95b438cc0576339b03ac171d7abbb362bef81de212bad37acb799f14a256d13c
7
+ data.tar.gz: c9b384db06f64b3b10e335416fbb7855949d0d859273776de100865ee5ed858d7efc80ff9daf69b827eaecd40831dc372014203bc9b82fa95215957c4fb357b0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Change Log
2
2
 
3
+ ## [v2.5.4](https://github.com/infinum/enumerations/tree/v2.5.4) (2023-01-09)
4
+ [Full Changelog](https://github.com/infinum/enumerations/compare/v2.5.3...v2.5.4)
5
+
6
+ **Implemented enhancements:**
7
+
8
+ - Add MIT license file.
9
+
3
10
  ## [v2.5.3](https://github.com/infinum/enumerations/tree/v2.5.3) (2022-02-02)
4
11
  [Full Changelog](https://github.com/infinum/enumerations/compare/v2.5.2...v2.5.3)
5
12
 
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2018 Infinum
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/enumerations.gemspec CHANGED
@@ -7,6 +7,7 @@ Gem::Specification.new do |s|
7
7
  s.summary = 'Enumerations for ActiveRecord!'
8
8
  s.description = 'Extends ActiveRecord with enumeration capabilites.'
9
9
  s.homepage = 'https://github.com/infinum/enumerations'
10
+ s.license = 'MIT'
10
11
 
11
12
  s.authors = [
12
13
  'Tomislav Car', 'Nikica Jokić', 'Nikola Santić', 'Stjepan Hadjić', 'Petar Ćurković'
@@ -1,3 +1,3 @@
1
1
  module Enumerations
2
- VERSION = '2.5.3'.freeze
2
+ VERSION = '2.5.4'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: enumerations
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.3
4
+ version: 2.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tomislav Car
@@ -128,6 +128,7 @@ files:
128
128
  - ".rubocop.yml"
129
129
  - CHANGELOG.md
130
130
  - Gemfile
131
+ - LICENSE
131
132
  - MIGRATE.md
132
133
  - README.md
133
134
  - Rakefile
@@ -156,7 +157,8 @@ files:
156
157
  - test/translation_test.rb
157
158
  - test/value_test.rb
158
159
  homepage: https://github.com/infinum/enumerations
159
- licenses: []
160
+ licenses:
161
+ - MIT
160
162
  metadata: {}
161
163
  post_install_message:
162
164
  rdoc_options: []
@@ -173,8 +175,23 @@ required_rubygems_version: !ruby/object:Gem::Requirement
173
175
  - !ruby/object:Gem::Version
174
176
  version: '0'
175
177
  requirements: []
176
- rubygems_version: 3.3.3
178
+ rubygems_version: 3.4.5
177
179
  signing_key:
178
180
  specification_version: 4
179
181
  summary: Enumerations for ActiveRecord!
180
- test_files: []
182
+ test_files:
183
+ - test/base_test.rb
184
+ - test/configuration/configuration.rb
185
+ - test/configuration/custom_configuration_test.rb
186
+ - test/configuration/enumerations_test.rb
187
+ - test/configuration/finder_test.rb
188
+ - test/configuration_test.rb
189
+ - test/enumerations_test.rb
190
+ - test/finder_test.rb
191
+ - test/helpers/database_helper.rb
192
+ - test/helpers/locale_helper.rb
193
+ - test/helpers/test_helper.rb
194
+ - test/locales/hr.yml
195
+ - test/reflection_test.rb
196
+ - test/translation_test.rb
197
+ - test/value_test.rb