interactive_migrations 0.0.4 → 0.0.5

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
  SHA1:
3
- metadata.gz: 67236dd811e2ff587df7a5bd44ab0c43768a6f52
4
- data.tar.gz: 5a6afe75ccb0b3b39417ecd109fc7cc1c346f46c
3
+ metadata.gz: df9deead8bb54fad3e838f8055c22f94c300f1f4
4
+ data.tar.gz: fe1b23574b53580c5c416e598da5b410557185e0
5
5
  SHA512:
6
- metadata.gz: 9ca37bca8e7a3a548e3a20b8e1b00631e09ca5c397a26a1ec8666b9379496af617e9501e1d57eee9ad89ce0e5481d2bdfba10b4b890b694e7da20e7e7cc7dc61
7
- data.tar.gz: 059bad701e2c33f57da4c76d6fb0e0faec16f2fb30f37daa1ba8646c59324450b675adec02dc091ec47b242bdc6b1ab881fe712e19dbc1264e0d1b900b92ee54
6
+ metadata.gz: e58fdbe55871ea2e3258428429b8b2a741a4eea619ed9440184a0a86fc6cec13c15a58ff82464541b381360febfbad02d0bf1d8565317cafc21712f5a90d85e0
7
+ data.tar.gz: 1a7ae631a1aed1b10c5b2e4975476b57598a7abc8e9527d227b42ba83a7d503f80a4c6e424f206a473f7a3de3230ead8e011fe1f1331b2d8fb5e7731fad15383
data/changelog.txt ADDED
@@ -0,0 +1,3 @@
1
+ 0.0.4: update for rails 4.1 compatibility. Added changelog
2
+
3
+ 0.0.5: update highline dependency to ~> 1
@@ -1,13 +1,13 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "interactive_migrations"
3
- s.version = '0.0.4'
3
+ s.version = '0.0.5'
4
4
  s.authors = ["James Tippett"]
5
- s.email = ["hi@jamestippett.com"]
5
+ s.email = ["james.tippett@gmail.com"]
6
6
 
7
- s.summary = "A rake task giving you interactive migrations in your rails 3 project"
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', '~> 0'
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
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: '0'
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: '0'
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
- - hi@jamestippett.com
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 3 project
64
+ summary: A rake task giving you interactive migrations in your rails 4 project
64
65
  test_files: []