interactive_migrations 0.0.2 → 0.0.3
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "interactive_migrations"
|
|
3
|
-
s.version = '0.0.
|
|
3
|
+
s.version = '0.0.3'
|
|
4
4
|
s.authors = ["James Tippett"]
|
|
5
5
|
s.email = ["hi@jamestippett.com"]
|
|
6
6
|
|
|
@@ -8,4 +8,6 @@ Gem::Specification.new do |s|
|
|
|
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
|
+
|
|
12
|
+
s.add_runtime_dependency 'highline'
|
|
11
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.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,8 +9,19 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2011-09-
|
|
13
|
-
dependencies:
|
|
12
|
+
date: 2011-09-25 00:00:00.000000000Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: highline
|
|
16
|
+
requirement: &70307163932440 !ruby/object:Gem::Requirement
|
|
17
|
+
none: false
|
|
18
|
+
requirements:
|
|
19
|
+
- - ! '>='
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '0'
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: *70307163932440
|
|
14
25
|
description: If your rails project has migrations, you are prompted to run each one,
|
|
15
26
|
with a printout of the code which will be run. You have the option of running or
|
|
16
27
|
skipping the migration. Useful for production deploys where migrations are a delicate
|