rails_edge_test 1.2.1 → 1.2.2
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/CHANGELOG.md +3 -0
- data/lib/rails_edge_test/configuration.rb +2 -1
- data/lib/rails_edge_test/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: 7f76e0ca72985fe961a1fb7212fbd12a2d3ff28efe4a18deb54428a52b8a6a5f
|
|
4
|
+
data.tar.gz: a90de3d289aae88c28bb5da061ee690975681feb190d115885feeda973168408
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5ebd2ff2ad61b8624c123941a9b65552bc33cbf88727a88e47b2277b5d60b20a9377152bc488e436397359a4e6904f784c482d99c7dfb9a94cfb2aa642592be1
|
|
7
|
+
data.tar.gz: a923c2258a59c85228beb4169413f1924014a5a1d5291a1c62a3b4918d0cf84df5d70fef2bccf4014b355081dff43a8a86a5b0d6f0960bf733a3a649e20d632a
|
data/CHANGELOG.md
CHANGED
|
@@ -15,7 +15,8 @@ module RailsEdgeTest
|
|
|
15
15
|
# access from within an `edge` block.
|
|
16
16
|
# @param [Module] mod - a module to be included into all `edge` blocks
|
|
17
17
|
def include(mod)
|
|
18
|
-
Dsl::
|
|
18
|
+
Dsl::Controller.include(mod)
|
|
19
|
+
Dsl::Edge.include(mod)
|
|
19
20
|
end
|
|
20
21
|
|
|
21
22
|
# Provide a block to be executed once before running any `edge` blocks
|