nonschema_migrations 5.1.0 → 6.0.alpha1

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: 0fcfd00d5152839069513ddc818ad6d4d2cc321c305b28e9ce1f975a6d749468
4
- data.tar.gz: 43a8c72e87a0c2b46eecf8a423feb80e8738e6fc72a6bfcf4807611bf51b3c57
3
+ metadata.gz: 6216f98f76c03cbdcd3a2bd60bcd54b7622c2a1d32b268a097e365492e6a2fd5
4
+ data.tar.gz: 2feb072bd145e3da6d22ebd5abddee024fb32c90ce35e9cd1847144c60b5d6ce
5
5
  SHA512:
6
- metadata.gz: 2d0140f019c9e674d7467d038ddc4652f7c0f5f1e4f6c607b37396a52efb9e07d0e4e4b20af6d851daf75873ac44ba6c21a732d2ba9d6a022650b39506cbbb07
7
- data.tar.gz: '097a3a4cd7ecd186f808a32bbe9eec6acd85fa0e05689d85fb4fed5d4c0560f16f7eb9862ee3e6757c8ba8b838f4946d893dd42b044b80a3f8d55924bf2c6591'
6
+ metadata.gz: 0fe28ee8aaf9f93b693e0d18d9c3ece88b161cb81730fc239ba630eb5b3fc5fe7a24d3832018f3b2317be96bcc031eb23da1ea7b36487ae7ab7dcff8a31b0a77
7
+ data.tar.gz: 1f2cfc4d4613e2fa4e8775905d684512fb7ea8960f6a046a795b2aa5e30365133cb49384e491b4feebac5b2fee0e7b1369e43d6f6b90c610385d74021638bc89
@@ -1,6 +1,6 @@
1
- class CreateDataMigrations < ActiveRecord::Migration[5.2]
1
+ class CreateDataMigrations < ActiveRecord::Migration[<%= Gem.loaded_specs['activerecord'].version.to_s.split(".")[0..1].join(".") %>]
2
2
  def self.up
3
- create_table :data_migrations do |t|
3
+ create_table :data_migrations, id: false do |t|
4
4
  t.string :version
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,38 +1,32 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nonschema_migrations
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.0
4
+ version: 6.0.alpha1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Fleetwood-Boldt
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-12-10 00:00:00.000000000 Z
11
+ date: 2021-11-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: '6.0'
20
- - - "<"
21
- - !ruby/object:Gem::Version
22
- version: '7'
19
+ version: 7.0.0.alpha2
23
20
  type: :runtime
24
21
  prerelease: false
25
22
  version_requirements: !ruby/object:Gem::Requirement
26
23
  requirements:
27
- - - ">="
28
- - !ruby/object:Gem::Version
29
- version: '6.0'
30
- - - "<"
24
+ - - '='
31
25
  - !ruby/object:Gem::Version
32
- version: '7'
26
+ version: 7.0.0.alpha2
33
27
  description: Separate schema-only migrations from nonschema (data) migrations in your
34
28
  Rails app
35
- email: jason.fb@datatravels.com
29
+ email: code@jasonfb.net
36
30
  executables: []
37
31
  extensions: []
38
32
  extra_rdoc_files: []
@@ -48,8 +42,19 @@ files:
48
42
  homepage: https://github.com/jasonfb/nonschema_migrations
49
43
  licenses:
50
44
  - MIT
51
- metadata: {}
52
- post_install_message:
45
+ metadata:
46
+ source_code_uri: https://github.com/jasonfb/nonschema_migrations
47
+ documentation_uri: https://jasonfleetwoodboldt.com/my-open-source-projects/nonschema-migrations/
48
+ homepage_uri: https://heliosdev.shop/
49
+ post_install_message: |
50
+ ---------------------------------------------
51
+ Welcome to Nonschema Migrations
52
+ to set up, please run
53
+
54
+ rails generate data_migrations:install
55
+
56
+ For support please check us out at https://heliosdev.shop/
57
+ ---------------------------------------------
53
58
  rdoc_options: []
54
59
  require_paths:
55
60
  - lib
@@ -60,11 +65,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
60
65
  version: '0'
61
66
  required_rubygems_version: !ruby/object:Gem::Requirement
62
67
  requirements:
63
- - - ">="
68
+ - - ">"
64
69
  - !ruby/object:Gem::Version
65
- version: '0'
70
+ version: 1.3.1
66
71
  requirements: []
67
- rubygems_version: 3.0.8
72
+ rubygems_version: 3.1.4
68
73
  signing_key:
69
74
  specification_version: 4
70
75
  summary: Nonschema(data-only) migrations for your Rails app