interactive_migrations 0.0.4 → 0.0.5
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.txt +3 -0
- data/interactive_migrations.gemspec +4 -4
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: df9deead8bb54fad3e838f8055c22f94c300f1f4
|
4
|
+
data.tar.gz: fe1b23574b53580c5c416e598da5b410557185e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e58fdbe55871ea2e3258428429b8b2a741a4eea619ed9440184a0a86fc6cec13c15a58ff82464541b381360febfbad02d0bf1d8565317cafc21712f5a90d85e0
|
7
|
+
data.tar.gz: 1a7ae631a1aed1b10c5b2e4975476b57598a7abc8e9527d227b42ba83a7d503f80a4c6e424f206a473f7a3de3230ead8e011fe1f1331b2d8fb5e7731fad15383
|
data/changelog.txt
ADDED
@@ -1,13 +1,13 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "interactive_migrations"
|
3
|
-
s.version = '0.0.
|
3
|
+
s.version = '0.0.5'
|
4
4
|
s.authors = ["James Tippett"]
|
5
|
-
s.email = ["
|
5
|
+
s.email = ["james.tippett@gmail.com"]
|
6
6
|
|
7
|
-
s.summary = "A rake task giving you interactive migrations in your rails
|
7
|
+
s.summary = "A rake task giving you interactive migrations in your rails 4 project"
|
8
8
|
s.description = "If your rails project has migrations, you are prompted to run each one, with a printout of the code which will be run. You have the option of running or skipping the migration. Useful for production deploys where migrations are a delicate task. Extracted from a large production web app."
|
9
9
|
s.homepage = "http://github.com/jtippett/interactive_migrations"
|
10
10
|
s.files = `git ls-files`.split("\n")
|
11
11
|
|
12
|
-
s.add_runtime_dependency 'highline', '~>
|
12
|
+
s.add_runtime_dependency 'highline', '~> 1'
|
13
13
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: interactive_migrations
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Tippett
|
@@ -16,24 +16,25 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '1'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '1'
|
27
27
|
description: If your rails project has migrations, you are prompted to run each one,
|
28
28
|
with a printout of the code which will be run. You have the option of running or
|
29
29
|
skipping the migration. Useful for production deploys where migrations are a delicate
|
30
30
|
task. Extracted from a large production web app.
|
31
31
|
email:
|
32
|
-
-
|
32
|
+
- james.tippett@gmail.com
|
33
33
|
executables: []
|
34
34
|
extensions: []
|
35
35
|
extra_rdoc_files: []
|
36
36
|
files:
|
37
|
+
- changelog.txt
|
37
38
|
- interactive_migrations.gemspec
|
38
39
|
- lib/interactive_migrations.rb
|
39
40
|
- lib/interactive_migrations/railtie.rb
|
@@ -60,5 +61,5 @@ rubyforge_project:
|
|
60
61
|
rubygems_version: 2.2.2
|
61
62
|
signing_key:
|
62
63
|
specification_version: 4
|
63
|
-
summary: A rake task giving you interactive migrations in your rails
|
64
|
+
summary: A rake task giving you interactive migrations in your rails 4 project
|
64
65
|
test_files: []
|