enum_attributes_validation 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
  SHA1:
3
- metadata.gz: 510ef25a74eb533365d17b767e23896707116d3c
4
- data.tar.gz: bc493480fa727015e8264969f7ffa123227ad786
3
+ metadata.gz: 692265507e59f62f9d269848487a62fd4330b38d
4
+ data.tar.gz: 47ff54dca187b497584b08b4a69c3b393b68f2ca
5
5
  SHA512:
6
- metadata.gz: 87f2c81c7d543a217a845a95cd054e54a96c11fddcf07862d9b85d2b8be63317735c21156c0d61c382699f574c79cc25a20fcd54029580042d072bbb63294beb
7
- data.tar.gz: 21ce08372540b5cba1765d46de42ab7e1a4b1d5b0a959dc0fac940985dfa6f248d582f3e2e0bccba9c61bf5b065cf31f34a436cc8688174d82238689b9bdce50
6
+ metadata.gz: 638ab3409b5dfc6909dbb436ff033c31e0633bcac5fbd5c0c94f1ffa44438ab03dfcc2a8552b5745c75145f99b1e11e59f0c9488d1e1a33659ad71d2e2478e97
7
+ data.tar.gz: ace216c124f797afb64bdddbe7e02d8f628e011299431b22353c9ab4a340704e51242d2fe70ef6a152cee89e11ce80f9fe642d11e4f021b423b5154dab89a287
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in enum_attributes_validation.gemspec
6
+ gemspec
7
+
8
+ gem "activesupport"
9
+ gem "activerecord"
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
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
@@ -1,3 +1,3 @@
1
1
  module EnumAttributesValidation
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
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.2
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