hexx-rspec 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/config/initializers/sandbox/helpers.rb +2 -2
- data/lib/hexx/rspec/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: c95310a4f2ff6ab71acbab295faeefc52e727509
|
4
|
+
data.tar.gz: 4c4600c04ff95fa5c1af2cec6acf6fc7a17cbd71
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25a7b6c131c7c4b49672e5a0f45237f50e353574a2e78aeb40e6a00142a70f68b284714c38a78f74541cd2ba03ad6de2cc3af32f1d5a7193bac69da1f1183e50
|
7
|
+
data.tar.gz: 7e91036dd642da71c5301076cca89140228235825fb9ab7d8b0bbae46a938eb87b5b71a97c4cdab03530c972e6b7a59c97a7592e56ce060cc381637beb7d521b
|
@@ -1,10 +1,10 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
require "yaml"
|
3
3
|
|
4
|
-
# Returns the path to the temporary `spec/sandbox`.
|
4
|
+
# Returns the path to the temporary `spec/tmp/sandbox`.
|
5
5
|
# @return [String] The absolute path.
|
6
6
|
def sandbox
|
7
|
-
@sandbox ||= File.expand_path "
|
7
|
+
@sandbox ||= File.expand_path "spec/tmp/sandbox"
|
8
8
|
end
|
9
9
|
|
10
10
|
# Clears the temporary `spec/sandbox`.
|
data/lib/hexx/rspec/version.rb
CHANGED