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: 2e2fac86758bda878d5fea13096bc67af323ddffbb73e889c4cfc40bcb5a28c3
4
- data.tar.gz: 7f425da0e19c813789a988326a07a69fe5d54e6e5987af9cfa1965fe09b1e27f
3
+ metadata.gz: 412a73ec5fd32ea8373d0fdc86dfd290f4a8524d1e7f3fbf3611fd5c4f75fefa
4
+ data.tar.gz: b5020420e5d3b258e252306411f09cdb82e2c57dfc41dcd81775b0e866f28470
5
5
  SHA512:
6
- metadata.gz: b87f9ddf4b6e9a8203463627c88164af61202fd054450dde7ff8316e10bf9849e05aa7077c72dac05aef27f1b0796d3f9c41538bb939f62b8958652c9664bc21
7
- data.tar.gz: 591a5cb637d76600972fc5552e1124d9bfe6c46823622bfd03fac2e04facd3baa7f74949894f2e6649d808eb59c2912dca8a1a22d4b6bad2c429972d8b9a957c
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.0)
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 (6.0.0)
11
- activesupport (= 6.0.0)
12
- activerecord (6.0.0)
13
- activemodel (= 6.0.0)
14
- activesupport (= 6.0.0)
15
- activesupport (6.0.0)
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 (>= 0.7, < 2)
18
- minitest (~> 5.1)
19
- tzinfo (~> 1.1)
20
- zeitwerk (~> 2.1, >= 2.1.8)
21
- concurrent-ruby (1.1.5)
22
- i18n (1.6.0)
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 (~> 0)
33
+ rake (~> 13)
37
34
 
38
35
  BUNDLED WITH
39
36
  1.17.3
@@ -17,5 +17,5 @@ Gem::Specification.new do |s|
17
17
 
18
18
  s.add_dependency('activerecord', '>= 4.2')
19
19
 
20
- s.add_development_dependency 'rake', '~> 0'
20
+ s.add_development_dependency 'rake', '~> 13'
21
21
  end
@@ -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
 
@@ -1,3 +1,3 @@
1
1
  module ActiveRecordCleanDbStructure
2
- VERSION = '0.4.0'
2
+ VERSION = '0.4.1'
3
3
  end
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.0
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: 2019-08-27 00:00:00.000000000 Z
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: '0'
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: '0'
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.0.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: []