arel-helpers 2.8.0 → 2.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/arel-helpers.gemspec +1 -1
- data/lib/arel-helpers/version.rb +1 -1
- data/spec/env/migrations.rb +5 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 85c8d15c2d11898a847943c9be68371010ec220af0f1c68a4a90e9bcffa4d934
|
4
|
+
data.tar.gz: 73714445f0d541649e5b293293a8957c24302a8ac0a19541313786593b045214
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 057173c0402311f7ddae6371cf32f3a467b065e51199ce425a64559c8e5904be6d2ffd73c96bd0009dc6c1af282d6d9ab0ae19e14ab26b4a5695a7a06db17a4c
|
7
|
+
data.tar.gz: bc25b86779153864ea54f583fabff15e7f6f5a57dadfecfcb1d363a864237408f30f7a7e3dc5095a5fc04d1b858a9acf9f0bdd92184c745cadd74c5fee8f2eff
|
data/README.md
CHANGED
data/arel-helpers.gemspec
CHANGED
data/lib/arel-helpers/version.rb
CHANGED
data/spec/env/migrations.rb
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
# encoding: UTF-8
|
2
2
|
|
3
|
-
SuperClass = ActiveRecord::VERSION::MAJOR >= 5
|
3
|
+
SuperClass = if ActiveRecord::VERSION::MAJOR >= 5
|
4
|
+
ActiveRecord::Migration["#{ActiveRecord::VERSION::MAJOR}.#{ActiveRecord::VERSION::MINOR}".to_f]
|
5
|
+
else
|
6
|
+
ActiveRecord::Migration
|
7
|
+
end
|
4
8
|
|
5
9
|
class CreatePostsTable < SuperClass
|
6
10
|
def change
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: arel-helpers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cameron Dutro
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-06-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: 3.1.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: '
|
22
|
+
version: '7'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: 3.1.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: '
|
32
|
+
version: '7'
|
33
33
|
description: Useful tools to help construct database queries with ActiveRecord and
|
34
34
|
Arel.
|
35
35
|
email:
|