subroutine-factory 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/subroutine/factory/spec_helper.rb +6 -0
- data/lib/subroutine/factory/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: 81cef754be11e750d13eb7c4c28596cca62fa8b5
|
4
|
+
data.tar.gz: a8b9814705f934709c072173a5e03d5f13ef27cf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd3bc62356f10cf94064ea850bd1fca0fc0b499b4b4d5b61fd4b668bad7fa221a16d0eee6326b387dc10e61297ef6a0ca7f7419ea981ce6ca22c1c1cecab663c
|
7
|
+
data.tar.gz: 540ffe7d99d9f80cec753b61dfae8637e93be7393b449ff0481a1c2dd59d7cb440e153f9ae173528f730dc5d2a8f954be13be63142e608cf07d42bf72461c666
|
@@ -1,6 +1,7 @@
|
|
1
1
|
module Subroutine
|
2
2
|
module Factory
|
3
3
|
module SpecHelper
|
4
|
+
|
4
5
|
def factory(*args)
|
5
6
|
::Subroutine::Factory.create(*args)
|
6
7
|
end
|
@@ -8,6 +9,11 @@ module Subroutine
|
|
8
9
|
def factory!(*args)
|
9
10
|
factory(*args)
|
10
11
|
end
|
12
|
+
|
13
|
+
def factory_inputs(*args)
|
14
|
+
::Subroutine::Factory.inputs(*args)
|
15
|
+
end
|
16
|
+
|
11
17
|
end
|
12
18
|
end
|
13
19
|
end
|