specgen 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/specgen.rb +2 -2
- 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: b25cde0726a78ee030abb733c7c5704a913732cd
|
4
|
+
data.tar.gz: c77c4bb3568a0e09770e528c758553dfee654ba1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 78eef33c483c3599ca6bd72674c755ddfea52ea0d3c69bd2f85bcecfc2cfa137b1d3c350eb87feeebb0aa48f63509e894b39aec19ffc9c5df2d95ce8ceccc9a6
|
7
|
+
data.tar.gz: b2327095e3139cc8efabd52ea5123af92770377011f667277e5ba91e6b5059635bf73f79e01d6223df9a6c77c09d8712eb96e86bac8e24cb8c5615d1e14e2a9a
|
data/lib/specgen.rb
CHANGED
@@ -26,8 +26,8 @@ end
|
|
26
26
|
|
27
27
|
def specgen_client_ruby(spec_file: "./spec.yaml", generate_path: ".")
|
28
28
|
specgen_path = get_specgen_path
|
29
|
-
|
29
|
+
command = "#{specgen_path} client-ruby --spec-file #{spec_file} --generate-path #{generate_path}"
|
30
30
|
puts "Executing specgen"
|
31
31
|
puts command
|
32
|
-
sh
|
32
|
+
sh command
|
33
33
|
end
|