penthouse 0.7.4 → 0.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 32ab9a7ff6f0e7826504ba972ef2e1adae7bf070
4
- data.tar.gz: 4a9420802af74ec2ce0f60d70310e7a41a893371
3
+ metadata.gz: a49b8e9cb0526dc97db28adae4d815d6e7159d0f
4
+ data.tar.gz: 2e4a8a76a90e3c4ef3cc61fd791cde94cd37b5b3
5
5
  SHA512:
6
- metadata.gz: a11eba9239610c2272df4e59240c783ff09bac032d9ea03886956314e598d1fb57d1740f87cbce9ff44955d09c994143e52a5f5dd9bcf4c370434db057027a29
7
- data.tar.gz: ef6e226f6ad688a0d49ac8616c8309b4a87bf48997b62e343647dc4fd590f81dc10ba89a459cae93e1920a87fa1e664afcdee8b3417fc3c93d32d1ea63ff8da3
6
+ metadata.gz: fb84d69706713d17af8970d5f7c5b201cd9ff836543b164d3df2ed744e5014b295001b4926348ea15780c45abecb569093be4c4a47866f6834cbe2c7f381ae34
7
+ data.tar.gz: c9fe8a286abdf9f2fbd42d656a33c9bfecb17ca8eb467b9cdc2816fed0aa8cbd960b4269a4f414fbcc23f2c3f49d207f8efdd84c262caeaa3d73720b264acec6
@@ -51,13 +51,8 @@ module Penthouse
51
51
 
52
52
  Penthouse.each_tenant(tenant_identifiers: tenants_to_migrate) do |tenant|
53
53
  puts "Migrating #{tenant.identifier}"
54
- if defined?(:migrate_without_octopus)
55
- puts "calling #migrate_without_octopus"
56
- migrate_without_octopus(migrations_paths, target_version, &block)
57
- else
58
- puts "calling #migrate_without_penthouse"
59
- migrate_without_penthouse(migrations_paths, target_version, &block)
60
- end
54
+ puts "calling #migrate_without_penthouse"
55
+ migrate_without_penthouse(migrations_paths, target_version, &block)
61
56
  end
62
57
  end
63
58
 
@@ -71,13 +66,8 @@ module Penthouse
71
66
 
72
67
  Penthouse.each_tenant(tenant_identifiers: tenants_to_migrate) do |tenant|
73
68
  puts "Migrating #{tenant.identifier}"
74
- if defined?(:up_without_octopus)
75
- puts "calling #up_without_octopus"
76
- up_without_octopus(migrations_paths, target_version, &block)
77
- else
78
- puts "calling #up_without_penthouse"
79
- up_without_penthouse(migrations_paths, target_version, &block)
80
- end
69
+ puts "calling #up_without_penthouse"
70
+ up_without_penthouse(migrations_paths, target_version, &block)
81
71
  end
82
72
  end
83
73
 
@@ -91,13 +81,8 @@ module Penthouse
91
81
 
92
82
  Penthouse.each_tenant(tenant_identifiers: tenants_to_migrate) do |tenant|
93
83
  puts "Migrating #{tenant.identifier}"
94
- if defined?(:down_without_octopus)
95
- puts "calling #down_without_octopus"
96
- down_without_octopus(migrations_paths, target_version, &block)
97
- else
98
- puts "calling #down_without_penthouse"
99
- down_without_penthouse(migrations_paths, target_version, &block)
100
- end
84
+ puts "calling #down_without_penthouse"
85
+ down_without_penthouse(migrations_paths, target_version, &block)
101
86
  end
102
87
  end
103
88
 
@@ -111,13 +96,8 @@ module Penthouse
111
96
 
112
97
  Penthouse.each_tenant(tenant_identifiers: tenants_to_migrate) do |tenant|
113
98
  puts "Migrating #{tenant.identifier}"
114
- if defined?(:run_without_octopus)
115
- puts "calling #run_without_octopus"
116
- run_without_octopus(direction, migrations_paths, target_version)
117
- else
118
- puts "calling #run_without_penthouse"
119
- run_without_penthouse(direction, migrations_paths, target_version)
120
- end
99
+ puts "calling #run_without_penthouse"
100
+ run_without_penthouse(direction, migrations_paths, target_version)
121
101
  end
122
102
  end
123
103
 
@@ -1,3 +1,3 @@
1
1
  module Penthouse
2
- VERSION = "0.7.4"
2
+ VERSION = "0.7.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: penthouse
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.4
4
+ version: 0.7.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Townsend