actual_db_schema 0.7.1 → 0.7.2

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: eac7885f8774402bb8f0532caf66d4304df61be50ef0c22f1fd8f6ef325b8330
4
- data.tar.gz: 8c90d4101e41941a4c247f6af2695e050f450a46435b659c99e1d5fe8fd71929
3
+ metadata.gz: 93ad4dbd2993e9e0b42afe547312d0c65027dd94a0bb12ec32bd8db9a054e050
4
+ data.tar.gz: d7ba34542cd5d9fcc09e6eadeba2147ab00e21245ad41197e9f0697db2c98ba9
5
5
  SHA512:
6
- metadata.gz: 794038e111d31a3e99b1a48c3c3a0603498e6492e8b2a8f050d4e9e481debe047d908ff5cae5940789c96c3d76da13a10a841c55834275392e0d08076b4b6b52
7
- data.tar.gz: 342ba459e1705c42a64d0f476c50054724a48b212bbba79a82f85a1a4118ac342bac7d0ebab3158bcab58f5d6068c1e4f344f813a6464091e20545815ff09dc3
6
+ metadata.gz: 452cbc36fd51ff0c37e9cc6a4e1bd84ca0ecccee9ba7bb34958c77a96fa7753dc1f02a6d34f4d4bc1e26753f3bf9dfc6c31d9ac4d64a8cd5ad69ea0e4f04a011
7
+ data.tar.gz: 54a6f8d64cb267b7906b5c375b09074dd3e6dc1acffa99d33b19335143f2ef29b94843b8f9965b1d3eb4c8453dc1dc362da03da50bca428838f497dd98996e80
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## [0.7.2] - 2024-03-30
2
+ - update title and description in Rubygems
3
+
1
4
  ## [0.7.1] - 2024-03-19
2
5
 
3
6
  - add csv as a dependency since Ruby 3.3 has removed it from the standard library
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- actual_db_schema (0.7.1)
4
+ actual_db_schema (0.7.2)
5
5
  activerecord (>= 6.0.0)
6
6
  activesupport (>= 6.0.0)
7
7
  csv
@@ -93,7 +93,7 @@ GEM
93
93
  concurrent-ruby (1.2.2)
94
94
  connection_pool (2.4.1)
95
95
  crass (1.0.6)
96
- csv (3.2.8)
96
+ csv (3.3.0)
97
97
  date (3.3.3)
98
98
  debug (1.8.0)
99
99
  irb (>= 1.5.0)
@@ -8,20 +8,19 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ["Andrei Kaleshka"]
9
9
  spec.email = ["ka8725@gmail.com"]
10
10
 
11
- spec.summary = "Keep your DB clean and consistent between branches."
11
+ spec.summary = "Keep your DB and schema.rb consistent in dev branches."
12
12
  spec.description = <<~DESC
13
- Switching between branches with migrations and running them can make your DB inconsistent
14
- and not working in another branch if not roll the migration back.
15
- Install this gem and forget about that issue by running the standard rake db:migrate.
13
+ Wipe out inconsistent DB and schema.rb when switching branches.
14
+ Just install this gem and use the standard rake db:migrate command.
16
15
  DESC
17
- spec.homepage = "https://github.com/widefix/actual_db_schema"
16
+ spec.homepage = "https://blog.widefix.com/actual-db-schema/"
18
17
  spec.license = "MIT"
19
18
  spec.required_ruby_version = ">= 2.7.0"
20
19
 
21
20
  # spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
22
21
 
23
22
  spec.metadata["homepage_uri"] = spec.homepage
24
- spec.metadata["source_code_uri"] = spec.homepage
23
+ spec.metadata["source_code_uri"] = "https://github.com/widefix/actual_db_schema"
25
24
  spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
26
25
 
27
26
  # Specify which files should be added to the gem when it is released.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActualDbSchema
4
- VERSION = "0.7.1"
4
+ VERSION = "0.7.2"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: actual_db_schema
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrei Kaleshka
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-03-19 00:00:00.000000000 Z
11
+ date: 2024-03-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -109,9 +109,8 @@ dependencies:
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
111
  description: |
112
- Switching between branches with migrations and running them can make your DB inconsistent
113
- and not working in another branch if not roll the migration back.
114
- Install this gem and forget about that issue by running the standard rake db:migrate.
112
+ Wipe out inconsistent DB and schema.rb when switching branches.
113
+ Just install this gem and use the standard rake db:migrate command.
115
114
  email:
116
115
  - ka8725@gmail.com
117
116
  executables: []
@@ -145,13 +144,13 @@ files:
145
144
  - lib/railtie.rb
146
145
  - lib/tasks/db.rake
147
146
  - sig/actual_db_schema.rbs
148
- homepage: https://github.com/widefix/actual_db_schema
147
+ homepage: https://blog.widefix.com/actual-db-schema/
149
148
  licenses:
150
149
  - MIT
151
150
  metadata:
152
- homepage_uri: https://github.com/widefix/actual_db_schema
151
+ homepage_uri: https://blog.widefix.com/actual-db-schema/
153
152
  source_code_uri: https://github.com/widefix/actual_db_schema
154
- changelog_uri: https://github.com/widefix/actual_db_schema/blob/main/CHANGELOG.md
153
+ changelog_uri: https://blog.widefix.com/actual-db-schema//blob/main/CHANGELOG.md
155
154
  post_install_message:
156
155
  rdoc_options: []
157
156
  require_paths:
@@ -170,5 +169,5 @@ requirements: []
170
169
  rubygems_version: 3.4.21
171
170
  signing_key:
172
171
  specification_version: 4
173
- summary: Keep your DB clean and consistent between branches.
172
+ summary: Keep your DB and schema.rb consistent in dev branches.
174
173
  test_files: []