disco_app 0.9.8 → 0.9.9
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/app/models/disco_app/concerns/shop.rb +1 -1
- data/lib/disco_app/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 185b1ee723fc9de5c2e8b8c8eba75d263edad105ca9be9019edd521cfbe41e62
|
|
4
|
+
data.tar.gz: 6b38ec8f3008ddb7108d35954cc0aef922ae275129df914306b4f158c045a4d2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e32221aa0b199edaf6a3f27410cda764f5afe016e24854cd78aee2e8772a7aa6d6c81a54f1a3c9001a36b30cd196c48fce4701d66df3458792bd8f586dab1c8e
|
|
7
|
+
data.tar.gz: 0d178a9ac7c9fe9f07a727516e58a34dfa96a6f11e758d113356f23b66098666f9145061db969074a752b2174f71d0007e7f5ced8092f05ec9814ca1a400e476
|
|
@@ -25,7 +25,7 @@ module DiscoApp::Concerns::Shop
|
|
|
25
25
|
|
|
26
26
|
# Return true if the shop is considered as in development mode.
|
|
27
27
|
def development?
|
|
28
|
-
['staff', 'custom'].include?(plan_name)
|
|
28
|
+
['staff', 'custom', 'affiliate'].include?(plan_name)
|
|
29
29
|
end
|
|
30
30
|
|
|
31
31
|
# Convenience method to check if this shop has a current subscription.
|
data/lib/disco_app/version.rb
CHANGED