blackstack-core 1.2.12 → 1.2.14
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/lib/functions.rb +3 -3
- 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: b95d9103bd0e1ca4e6592838f394cb973c8da2c95e4c3a3ed85825a2eb300770
|
4
|
+
data.tar.gz: '08c66d9a524d6095153ed68b573e21c0dbdbe9ffecfb96341a7204559b1707f1'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4bd8f56f2f3e85079be9d8ca3422a296f0cc8077ecf182ccb07c82001330f24ee106a4c50216c1272f3b8eed469357239e9a2c114038e6920715c7da45fbfc8c
|
7
|
+
data.tar.gz: e1bfc3cc67e81725ba92ddcc1902f2d32fe104ce7eceadd01ff2597b824832b49bab39c2a1f0644a3b6c88af728983fc1209279d7c315bf6f30d908bdc21b0cd
|
data/lib/functions.rb
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
|
2
2
|
module BlackStack
|
3
3
|
|
4
|
-
# Return true if there is a
|
5
|
-
def sandbox?
|
6
|
-
File.exists?('
|
4
|
+
# Return true if there is a `.sandbox` file in the current folder `./`.
|
5
|
+
def self.sandbox?
|
6
|
+
File.exists?('./.sandbox')
|
7
7
|
end
|
8
8
|
|
9
9
|
module API
|