penthouse 0.7.1 → 0.7.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/penthouse/migrator.rb +6 -0
- data/lib/penthouse/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 73382ba7de907b566cceef09a3440ba67b8542fe
|
4
|
+
data.tar.gz: 57555da89376ec04de9a198e9d376a4aabb20d69
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 410f25e3f2ceb19c54afee31b51bdfed78a05e8169b762bf9a7a628eceeee9df5d54e23542b99e42dab8f39e4d0c1b36ded05c8c710ef32b8ffe07f5ec13bd12
|
7
|
+
data.tar.gz: fd06ac14e44fdad24ed1d031dd24df0e8f8304cbb596d86d9329a162e86cda707435d59c7d482eb5c69b14f3aec55bff550ee1958314b9e4fe6502a3a5212c62
|
data/lib/penthouse/migrator.rb
CHANGED
@@ -30,6 +30,12 @@ module Penthouse
|
|
30
30
|
alias_method_chain :up, :penthouse
|
31
31
|
alias_method_chain :down, :penthouse
|
32
32
|
alias_method_chain :run, :penthouse
|
33
|
+
|
34
|
+
# override any new Octopus methods with the new Penthouse ones
|
35
|
+
alias_method :migrate_with_octopus, :migrate_with_penthouse
|
36
|
+
alias_method :up_with_octopus, :up_with_penthouse
|
37
|
+
alias_method :down_with_octopus, :down_with_penthouse
|
38
|
+
alias_method :run_with_octopus, :run_with_penthouse
|
33
39
|
end
|
34
40
|
end
|
35
41
|
end
|
data/lib/penthouse/version.rb
CHANGED