declare_schema 1.2.0 → 1.2.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/CHANGELOG.md +5 -0
- data/Gemfile.lock +1 -1
- data/lib/declare_schema/version.rb +1 -1
- data/lib/generators/declare_schema/migration/migrator.rb +1 -0
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9ba6099c2cfd605309415e3a14d53ba36aecad45285c4babdc385fa3576225ff
|
|
4
|
+
data.tar.gz: 60c009064977df314115e0bd1db8e811ba05866e24ac652a31b3ec4bc25291f5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9a7308b18a3a38c4713a2effb7f7f9dcf6b75702703152292061d4e266ada35b7be47e4ab43322965f9bfb0c88886ee138bea984bf0e09a9d37dde8bd1fe2da5
|
|
7
|
+
data.tar.gz: 10c67731046059b1ae1ff483ae979f4b649805deac4559ae2e4533082fa4e4a66e237814ff5873c638543ed533a5f660bf1dd204a5e3a8356fe377da1769d388
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ Inspired by [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
|
4
4
|
|
|
5
5
|
Note: this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [1.2.1] - 2022-09-25
|
|
8
|
+
### Fixed
|
|
9
|
+
- If Rails is defined, raise if `Rails.application` is `nil`.
|
|
10
|
+
|
|
7
11
|
## [1.2.0] - 2022-09-14
|
|
8
12
|
### Added
|
|
9
13
|
- Added a rake task definition that can be optionally included into a non-Rails project to generate
|
|
@@ -238,6 +242,7 @@ using the appropriate Rails configuration attributes.
|
|
|
238
242
|
### Added
|
|
239
243
|
- Initial version from https://github.com/Invoca/hobo_fields v4.1.0.
|
|
240
244
|
|
|
245
|
+
[1.2.1]: https://github.com/Invoca/declare_schema/compare/v1.2.0...v1.2.1
|
|
241
246
|
[1.2.0]: https://github.com/Invoca/declare_schema/compare/v1.1.0...v1.2.0
|
|
242
247
|
[1.1.0]: https://github.com/Invoca/declare_schema/compare/v1.0.2...v1.1.0
|
|
243
248
|
[1.0.2]: https://github.com/Invoca/declare_schema/compare/v1.0.1...v1.0.2
|
data/Gemfile.lock
CHANGED
|
@@ -55,6 +55,7 @@ module Generators
|
|
|
55
55
|
def load_rails_models
|
|
56
56
|
ActiveRecord::Migration.verbose = false
|
|
57
57
|
if defined?(Rails)
|
|
58
|
+
Rails.application or raise "Rails is defined, so Rails.application must be set"
|
|
58
59
|
Rails.application.eager_load!
|
|
59
60
|
Rails::Engine.subclasses.each(&:eager_load!)
|
|
60
61
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: declare_schema
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Invoca Development adapted from hobo_fields by Tom Locke
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-09-
|
|
11
|
+
date: 2022-09-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -127,7 +127,7 @@ homepage: https://github.com/Invoca/declare_schema
|
|
|
127
127
|
licenses: []
|
|
128
128
|
metadata:
|
|
129
129
|
allowed_push_host: https://rubygems.org
|
|
130
|
-
post_install_message:
|
|
130
|
+
post_install_message:
|
|
131
131
|
rdoc_options: []
|
|
132
132
|
require_paths:
|
|
133
133
|
- lib
|
|
@@ -143,7 +143,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
143
143
|
version: 1.3.6
|
|
144
144
|
requirements: []
|
|
145
145
|
rubygems_version: 3.1.6
|
|
146
|
-
signing_key:
|
|
146
|
+
signing_key:
|
|
147
147
|
specification_version: 4
|
|
148
148
|
summary: Database schema declaration and migration generator for Rails
|
|
149
149
|
test_files: []
|