enum_attributes_validation 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/Gemfile +9 -0
- data/Gemfile.lock +41 -0
- data/Rakefile +2 -0
- data/lib/enum_attributes_validation/version.rb +1 -1
- metadata +4 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 692265507e59f62f9d269848487a62fd4330b38d
|
4
|
+
data.tar.gz: 47ff54dca187b497584b08b4a69c3b393b68f2ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 638ab3409b5dfc6909dbb436ff033c31e0633bcac5fbd5c0c94f1ffa44438ab03dfcc2a8552b5745c75145f99b1e11e59f0c9488d1e1a33659ad71d2e2478e97
|
7
|
+
data.tar.gz: ace216c124f797afb64bdddbe7e02d8f628e011299431b22353c9ab4a340704e51242d2fe70ef6a152cee89e11ce80f9fe642d11e4f021b423b5154dab89a287
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
enum_attributes_validation (0.1.2)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
activemodel (5.1.4)
|
10
|
+
activesupport (= 5.1.4)
|
11
|
+
activerecord (5.1.4)
|
12
|
+
activemodel (= 5.1.4)
|
13
|
+
activesupport (= 5.1.4)
|
14
|
+
arel (~> 8.0)
|
15
|
+
activesupport (5.1.4)
|
16
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
17
|
+
i18n (~> 0.7)
|
18
|
+
minitest (~> 5.1)
|
19
|
+
tzinfo (~> 1.1)
|
20
|
+
arel (8.0.0)
|
21
|
+
concurrent-ruby (1.0.5)
|
22
|
+
i18n (0.9.1)
|
23
|
+
concurrent-ruby (~> 1.0)
|
24
|
+
minitest (5.10.3)
|
25
|
+
rake (10.5.0)
|
26
|
+
thread_safe (0.3.6)
|
27
|
+
tzinfo (1.2.4)
|
28
|
+
thread_safe (~> 0.1)
|
29
|
+
|
30
|
+
PLATFORMS
|
31
|
+
ruby
|
32
|
+
|
33
|
+
DEPENDENCIES
|
34
|
+
activerecord
|
35
|
+
activesupport
|
36
|
+
bundler (~> 1.16)
|
37
|
+
enum_attributes_validation!
|
38
|
+
rake (~> 10.0)
|
39
|
+
|
40
|
+
BUNDLED WITH
|
41
|
+
1.16.0
|
data/Rakefile
ADDED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: enum_attributes_validation
|
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
|
- Cristi Stefan
|
@@ -46,8 +46,11 @@ executables: []
|
|
46
46
|
extensions: []
|
47
47
|
extra_rdoc_files: []
|
48
48
|
files:
|
49
|
+
- Gemfile
|
50
|
+
- Gemfile.lock
|
49
51
|
- LICENSE
|
50
52
|
- README.md
|
53
|
+
- Rakefile
|
51
54
|
- bin/console
|
52
55
|
- bin/setup
|
53
56
|
- lib/enum_attributes_validation.rb
|