translate_enum 0.1.2 → 0.1.3

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
  SHA256:
3
- metadata.gz: e77857ff770931aacd8caa9d704f2678d6befd15cf830a33821fe6a594c61558
4
- data.tar.gz: 5741720d55c013d5b7490a56eecb5fccf9a7e60f53ff1c9e578939c651b2e44a
3
+ metadata.gz: cf98e01d928af2ec5e49e4eac061ca0c17eec85d2c2677177f73297de6b6649c
4
+ data.tar.gz: c70c0b9ff2d8703887866a24585ee3ff29a3a558501023005f634619f3b511b6
5
5
  SHA512:
6
- metadata.gz: 8eb9415674c8b1cb5d768243c10468ad5b57682501000beaf304fa3074e10d7ec06c55d71dbf6c0bb72024fb31af6b2ef73ecef2f9c51746a1e89450de2ff728
7
- data.tar.gz: 4d6556564500f1bf540b7b02359d2b15ee0422327a6ece5afd3d95650da1ed51a8542873bd8b9967ab933507f2480b9658c366982d85173a40e08645d72d7997
6
+ metadata.gz: ef036edee634238f02923fef5b0d413c78bfab1a41ec0316c06bb9a2ad9a51f7f36f8194ad7f0631fec0568f9600550e6aaee35372a7fff8d151f0b4e07cbc41
7
+ data.tar.gz: f1fc1a47322f038b7b62cbdb0af0901caa30353c85b675b70c3b0fa3d3a779f1243804228cd74515a94eb168f19275df47c23041fe70e63a2c041d63c307eafd
@@ -1,2 +1,5 @@
1
+ ## 0.1.3
2
+ * add licence file
3
+
1
4
  ## 0.1.2
2
5
  * add support of default locale lookup (en.attributes) to share locales between models
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2018 Aliaksandr Shylau
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -1,3 +1,3 @@
1
1
  module TranslateEnum
2
- VERSION = '0.1.2'
2
+ VERSION = '0.1.3'
3
3
  end
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.summary = 'Rails translate enum'
11
11
  spec.description = 'Simple, zero-dependant enum translation gem for Rails'
12
12
  spec.homepage = 'https://github.com/shlima/translate_enum'
13
-
13
+ spec.license = 'MIT'
14
14
 
15
15
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
16
16
  f.match(%r{^(test|spec|features)/})
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: translate_enum
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aliaksandr Shylau
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-02-01 00:00:00.000000000 Z
11
+ date: 2018-11-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -119,6 +119,7 @@ files:
119
119
  - ".rspec"
120
120
  - CHANGELOG.md
121
121
  - Gemfile
122
+ - MIT-LICENSE
122
123
  - README.md
123
124
  - Rakefile
124
125
  - bin/console
@@ -129,7 +130,8 @@ files:
129
130
  - lib/translate_enum/version.rb
130
131
  - translate_enum.gemspec
131
132
  homepage: https://github.com/shlima/translate_enum
132
- licenses: []
133
+ licenses:
134
+ - MIT
133
135
  metadata: {}
134
136
  post_install_message:
135
137
  rdoc_options: []
@@ -147,7 +149,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
147
149
  version: '0'
148
150
  requirements: []
149
151
  rubyforge_project:
150
- rubygems_version: 2.7.3
152
+ rubygems_version: 3.0.0.beta1
151
153
  signing_key:
152
154
  specification_version: 4
153
155
  summary: Rails translate enum