ridgepole-rails 1.0.7 → 1.0.8
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/lib/ridgepole/rails/rake_task.rb +1 -1
- data/lib/ridgepole/rails/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3027584fb4aaee14013c7f9102a61e04e7c2f9d9f8a8b1c78bc105c20612a342
|
|
4
|
+
data.tar.gz: bbb6a47832a17d29b98c30b4c4651d64fa77b2baeca1948ab3af0cbf5ff5cdb4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 22c4184a2189ec385a49b68c7d43a5328f4228222087cf85db5848bf17e9099d4b782ae9f5e5924cdd5b985f6ae5ca40f455871769201af0965d785b433b8e00
|
|
7
|
+
data.tar.gz: 97cc8e87c436747402bce314544b94ef6e698fb85adbe4640686c27455c7539958ef211c0815e829a8827fe215a7ebc2810a1de7d55c263849b67e552a91823a
|
|
@@ -72,7 +72,7 @@ module Ridgepole
|
|
|
72
72
|
|
|
73
73
|
class Apply < self
|
|
74
74
|
def command
|
|
75
|
-
[*RIDGEPOLE_COMMAND, *%w(--apply), *options].shelljoin # rubocop:disable Lint/UnneededSplatExpansion
|
|
75
|
+
[*RIDGEPOLE_COMMAND, *%w(--apply --create-table-with-index), *options].shelljoin # rubocop:disable Lint/UnneededSplatExpansion, Metrics/LineLength
|
|
76
76
|
end
|
|
77
77
|
end
|
|
78
78
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ridgepole-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OZAWA Sakuro
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-07-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -30,28 +30,28 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 0.7.
|
|
33
|
+
version: 0.7.1
|
|
34
34
|
type: :runtime
|
|
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.7.
|
|
40
|
+
version: 0.7.1
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: rubocop
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
45
|
- - ">="
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version:
|
|
47
|
+
version: 0.50.0
|
|
48
48
|
type: :development
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - ">="
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version:
|
|
54
|
+
version: 0.50.0
|
|
55
55
|
description: |
|
|
56
56
|
This gem adds two rake tasks: ridgepole:export and ridgepole:apply to your rails project.
|
|
57
57
|
It also substitutes some builtin tasks (db:migrate db:schema:dump etc.)
|
|
@@ -90,7 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
90
90
|
version: '0'
|
|
91
91
|
requirements: []
|
|
92
92
|
rubyforge_project:
|
|
93
|
-
rubygems_version: 2.7.
|
|
93
|
+
rubygems_version: 2.7.7
|
|
94
94
|
signing_key:
|
|
95
95
|
specification_version: 4
|
|
96
96
|
summary: Integrates ridgepole into rails
|