activerecord-clean-db-structure 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 412a73ec5fd32ea8373d0fdc86dfd290f4a8524d1e7f3fbf3611fd5c4f75fefa
|
4
|
+
data.tar.gz: b5020420e5d3b258e252306411f09cdb82e2c57dfc41dcd81775b0e866f28470
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e9f21da42eecc194ae9dbbfc5289d2733d115e7ddfe9a7bdea651bc8171cc15514af85e5825386f8bba14d73d3b58136433b92c9fcc94ed8a35d8dfae306cc5e
|
7
|
+
data.tar.gz: 16988f199aff2f875dc0513e18da004d2b6ed4d09fbda5d0de05e914f69ae69ca6c685a408c6393a5467a5e957eac4b13da4f207283650b08fb786f4c4a3a535
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,14 @@
|
|
4
4
|
|
5
5
|
* ...
|
6
6
|
|
7
|
+
## 0.4.1 2024-08-28
|
8
|
+
|
9
|
+
* Fix Rake task name for 6.1+ [#32](https://github.com/lfittl/activerecord-clean-db-structure/pull/32)
|
10
|
+
* Bump activesupport [#36](https://github.com/lfittl/activerecord-clean-db-structure/pull/36), [#35](https://github.com/lfittl/activerecord-clean-db-structure/pull/35)
|
11
|
+
* Bump tzinfo [#29](https://github.com/lfittl/activerecord-clean-db-structure/pull/29)
|
12
|
+
* Update rake [#30](https://github.com/lfittl/activerecord-clean-db-structure/pull/30)
|
13
|
+
* Bump activerecord [#34](https://github.com/lfittl/activerecord-clean-db-structure/pull/34)
|
14
|
+
|
7
15
|
## 0.4.0 2019-08-27
|
8
16
|
|
9
17
|
* Add "indexes_after_tables" option to allow indexes to be placed following the respective tables [#13](https://github.com/lfittl/activerecord-clean-db-structure/pull/13) [Giovanni Kock Bonetti](https://github.com/giovannibonetti)
|
data/Gemfile.lock
CHANGED
@@ -1,39 +1,36 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
activerecord-clean-db-structure (0.4.
|
4
|
+
activerecord-clean-db-structure (0.4.1)
|
5
5
|
activerecord (>= 4.2)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
activemodel (
|
11
|
-
activesupport (=
|
12
|
-
activerecord (
|
13
|
-
activemodel (=
|
14
|
-
activesupport (=
|
15
|
-
activesupport (
|
10
|
+
activemodel (7.0.4.3)
|
11
|
+
activesupport (= 7.0.4.3)
|
12
|
+
activerecord (7.0.4.3)
|
13
|
+
activemodel (= 7.0.4.3)
|
14
|
+
activesupport (= 7.0.4.3)
|
15
|
+
activesupport (7.0.4.3)
|
16
16
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
17
|
-
i18n (>=
|
18
|
-
minitest (
|
19
|
-
tzinfo (~>
|
20
|
-
|
21
|
-
|
22
|
-
|
17
|
+
i18n (>= 1.6, < 2)
|
18
|
+
minitest (>= 5.1)
|
19
|
+
tzinfo (~> 2.0)
|
20
|
+
concurrent-ruby (1.3.3)
|
21
|
+
i18n (1.14.5)
|
22
|
+
concurrent-ruby (~> 1.0)
|
23
|
+
minitest (5.24.1)
|
24
|
+
rake (13.0.6)
|
25
|
+
tzinfo (2.0.6)
|
23
26
|
concurrent-ruby (~> 1.0)
|
24
|
-
minitest (5.11.3)
|
25
|
-
rake (0.9.6)
|
26
|
-
thread_safe (0.3.6)
|
27
|
-
tzinfo (1.2.5)
|
28
|
-
thread_safe (~> 0.1)
|
29
|
-
zeitwerk (2.1.9)
|
30
27
|
|
31
28
|
PLATFORMS
|
32
29
|
ruby
|
33
30
|
|
34
31
|
DEPENDENCIES
|
35
32
|
activerecord-clean-db-structure!
|
36
|
-
rake (~>
|
33
|
+
rake (~> 13)
|
37
34
|
|
38
35
|
BUNDLED WITH
|
39
36
|
1.17.3
|
@@ -1,6 +1,6 @@
|
|
1
1
|
require 'activerecord-clean-db-structure/clean_dump'
|
2
2
|
|
3
|
-
Rake::Task['db:structure:dump'].enhance do
|
3
|
+
Rake::Task[ActiveRecord.version >= Gem::Version.new('6.1') ? 'db:schema:dump' : 'db:structure:dump'].enhance do
|
4
4
|
filenames = []
|
5
5
|
filenames << ENV['DB_STRUCTURE'] if ENV.key?('DB_STRUCTURE')
|
6
6
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activerecord-clean-db-structure
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lukas Fittl
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-08-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '13'
|
34
34
|
type: :development
|
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: '13'
|
41
41
|
description: Never worry about weird diffs and merge conflicts again
|
42
42
|
email: lukas@fittl.com
|
43
43
|
executables: []
|
@@ -61,7 +61,7 @@ homepage: https://github.com/lfittl/activerecord-clean-db-structure
|
|
61
61
|
licenses:
|
62
62
|
- MIT
|
63
63
|
metadata: {}
|
64
|
-
post_install_message:
|
64
|
+
post_install_message:
|
65
65
|
rdoc_options: []
|
66
66
|
require_paths:
|
67
67
|
- lib
|
@@ -76,8 +76,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
76
76
|
- !ruby/object:Gem::Version
|
77
77
|
version: '0'
|
78
78
|
requirements: []
|
79
|
-
rubygems_version: 3.
|
80
|
-
signing_key:
|
79
|
+
rubygems_version: 3.1.6
|
80
|
+
signing_key:
|
81
81
|
specification_version: 4
|
82
82
|
summary: Automatic cleanup for the Rails db/structure.sql file (ActiveRecord/PostgreSQL)
|
83
83
|
test_files: []
|