translate_enum 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/MIT-LICENSE +20 -0
- data/lib/translate_enum/version.rb +1 -1
- data/translate_enum.gemspec +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cf98e01d928af2ec5e49e4eac061ca0c17eec85d2c2677177f73297de6b6649c
|
4
|
+
data.tar.gz: c70c0b9ff2d8703887866a24585ee3ff29a3a558501023005f634619f3b511b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef036edee634238f02923fef5b0d413c78bfab1a41ec0316c06bb9a2ad9a51f7f36f8194ad7f0631fec0568f9600550e6aaee35372a7fff8d151f0b4e07cbc41
|
7
|
+
data.tar.gz: f1fc1a47322f038b7b62cbdb0af0901caa30353c85b675b70c3b0fa3d3a779f1243804228cd74515a94eb168f19275df47c23041fe70e63a2c041d63c307eafd
|
data/CHANGELOG.md
CHANGED
data/MIT-LICENSE
ADDED
@@ -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.
|
data/translate_enum.gemspec
CHANGED
@@ -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.
|
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-
|
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:
|
152
|
+
rubygems_version: 3.0.0.beta1
|
151
153
|
signing_key:
|
152
154
|
specification_version: 4
|
153
155
|
summary: Rails translate enum
|