gigo-activerecord 2.0.0 → 2.0.1
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 +4 -4
- data/Appraisals +4 -0
- data/README.md +1 -1
- data/gemfiles/activerecord42.gemfile +8 -0
- data/gemfiles/activerecord42.gemfile.lock +56 -0
- data/gemfiles/activerecord50.gemfile.lock +2 -2
- data/gemfiles/activerecord51.gemfile.lock +2 -2
- data/gemfiles/activerecord52.gemfile.lock +2 -2
- data/gigo-activerecord.gemspec +1 -1
- data/lib/gigo/active_record/version.rb +1 -1
- data/test/test_helper.rb +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: da2ba920c206f5632f84d581c40bbd33d48ec41a37cc99c65f46cb1a330f0034
|
|
4
|
+
data.tar.gz: a8aefc769a9ee7d83b2cf45d575c8d9bb324ae98920b3f9f31ca17f2bb5e4d02
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 12e92a682a01643a3605260ec6dd5913ba4e2e6bfbdb7549b631881284ef97a7ae206c9de41f94facf699d8f5f05733d73ea4970f67bb764b30d03e8dc3b3198
|
|
7
|
+
data.tar.gz: 9172cf5799da4b2d8c1189aa363aee3efd93944347a6fd559c03ba0f06342b4e9c8e382e863323b13b49baffc227598d889780d92cde53f59b132a6b00915850
|
data/Appraisals
CHANGED
data/README.md
CHANGED
|
@@ -66,7 +66,7 @@ end
|
|
|
66
66
|
|
|
67
67
|
## Contributing
|
|
68
68
|
|
|
69
|
-
GIGO is fully tested with ActiveRecord 5 and upward. If you detect a problem, open up a github issue or fork the repo and help out. After you fork or clone the repository, the following commands will get you up and running on the test suite.
|
|
69
|
+
GIGO is fully tested with ActiveRecord 4.2 - 5 and upward. If you detect a problem, open up a github issue or fork the repo and help out. After you fork or clone the repository, the following commands will get you up and running on the test suite.
|
|
70
70
|
|
|
71
71
|
```shell
|
|
72
72
|
$ bundle install
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: ..
|
|
3
|
+
specs:
|
|
4
|
+
gigo-activerecord (2.0.1)
|
|
5
|
+
activerecord (>= 4.2.0)
|
|
6
|
+
gigo
|
|
7
|
+
|
|
8
|
+
GEM
|
|
9
|
+
remote: https://rubygems.org/
|
|
10
|
+
specs:
|
|
11
|
+
activemodel (4.2.11.1)
|
|
12
|
+
activesupport (= 4.2.11.1)
|
|
13
|
+
builder (~> 3.1)
|
|
14
|
+
activerecord (4.2.11.1)
|
|
15
|
+
activemodel (= 4.2.11.1)
|
|
16
|
+
activesupport (= 4.2.11.1)
|
|
17
|
+
arel (~> 6.0)
|
|
18
|
+
activesupport (4.2.11.1)
|
|
19
|
+
i18n (~> 0.7)
|
|
20
|
+
minitest (~> 5.1)
|
|
21
|
+
thread_safe (~> 0.3, >= 0.3.4)
|
|
22
|
+
tzinfo (~> 1.1)
|
|
23
|
+
appraisal (2.2.0)
|
|
24
|
+
bundler
|
|
25
|
+
rake
|
|
26
|
+
thor (>= 0.14.0)
|
|
27
|
+
arel (6.0.4)
|
|
28
|
+
builder (3.2.3)
|
|
29
|
+
concurrent-ruby (1.1.5)
|
|
30
|
+
ensure_valid_encoding (0.5.3)
|
|
31
|
+
gigo (2.2.0)
|
|
32
|
+
activesupport (>= 2.3)
|
|
33
|
+
ensure_valid_encoding (~> 0.5.3)
|
|
34
|
+
i18n (0.9.5)
|
|
35
|
+
concurrent-ruby (~> 1.0)
|
|
36
|
+
minitest (5.11.3)
|
|
37
|
+
rake (12.3.2)
|
|
38
|
+
sqlite3 (1.3.13)
|
|
39
|
+
thor (0.20.3)
|
|
40
|
+
thread_safe (0.3.6)
|
|
41
|
+
tzinfo (1.2.5)
|
|
42
|
+
thread_safe (~> 0.1)
|
|
43
|
+
|
|
44
|
+
PLATFORMS
|
|
45
|
+
ruby
|
|
46
|
+
|
|
47
|
+
DEPENDENCIES
|
|
48
|
+
activerecord (~> 4.2.0)
|
|
49
|
+
appraisal
|
|
50
|
+
gigo-activerecord!
|
|
51
|
+
minitest
|
|
52
|
+
rake
|
|
53
|
+
sqlite3 (~> 1.3.6)
|
|
54
|
+
|
|
55
|
+
BUNDLED WITH
|
|
56
|
+
1.17.3
|
data/gigo-activerecord.gemspec
CHANGED
|
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
|
|
|
17
17
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
18
18
|
spec.require_paths = ["lib"]
|
|
19
19
|
spec.add_runtime_dependency 'gigo'
|
|
20
|
-
spec.add_runtime_dependency 'activerecord', '>=
|
|
20
|
+
spec.add_runtime_dependency 'activerecord', '>= 4.2.0'
|
|
21
21
|
spec.add_development_dependency 'appraisal'
|
|
22
22
|
spec.add_development_dependency 'rake'
|
|
23
23
|
spec.add_development_dependency 'minitest'
|
data/test/test_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gigo-activerecord
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ken Collins
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-07-
|
|
11
|
+
date: 2019-07-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gigo
|
|
@@ -30,14 +30,14 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version:
|
|
33
|
+
version: 4.2.0
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version:
|
|
40
|
+
version: 4.2.0
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: appraisal
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -107,6 +107,8 @@ files:
|
|
|
107
107
|
- LICENSE.txt
|
|
108
108
|
- README.md
|
|
109
109
|
- Rakefile
|
|
110
|
+
- gemfiles/activerecord42.gemfile
|
|
111
|
+
- gemfiles/activerecord42.gemfile.lock
|
|
110
112
|
- gemfiles/activerecord50.gemfile
|
|
111
113
|
- gemfiles/activerecord50.gemfile.lock
|
|
112
114
|
- gemfiles/activerecord51.gemfile
|