eco-rake 0.2.17 → 0.2.18
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 +6 -0
- data/lib/eco-rake/lib/export/payload.rb +8 -8
- data/lib/eco-rake/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: 7876dd36735ea99fcb006628a2f8fe2c49c05115befe40f64ac82337a9851b29
|
4
|
+
data.tar.gz: 17042f197a6535f2f33f2ebc0ff3de57d0628c4eef561340e443c1a43f7d5c3d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3932c8e52dc30e19b2f12292fe6349974a33136622a6ba4165e2e8c2096b9bffbabca76f8c50fa1373101a9180c179e58d8866cc82559b2340a373620c66251
|
7
|
+
data.tar.gz: 1afc961abec0938ea8d4007cb644d7adb8ec21b01f166769e75ed7458f50441777763cb49f1c299ab31a23673770aedb814120d8564adcc3af98570aca5e4ffe
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# Use case for special integrations. It requires some use cases to be present
|
2
|
-
# 1. `-
|
3
|
-
# 2. `-
|
4
|
-
# 3. `-
|
5
|
-
# 4. `-
|
2
|
+
# 1. `-extract-select-options`
|
3
|
+
# 2. `-extract-registers`
|
4
|
+
# 3. `-extract-pack`
|
5
|
+
# 4. `-extract-sftp-push`
|
6
6
|
require 'optparse/time'
|
7
7
|
class EcoRake
|
8
8
|
module Lib
|
@@ -67,19 +67,19 @@ class EcoRake
|
|
67
67
|
end
|
68
68
|
|
69
69
|
def export_select_options
|
70
|
-
forward_command('-
|
70
|
+
forward_command('-extract-select-options')
|
71
71
|
end
|
72
72
|
|
73
73
|
def export_registers
|
74
|
-
forward_command('-
|
74
|
+
forward_command('-extract-registers')
|
75
75
|
end
|
76
76
|
|
77
77
|
def export_pack
|
78
|
-
forward_command('-
|
78
|
+
forward_command('-extract-pack', :full, :asat)
|
79
79
|
end
|
80
80
|
|
81
81
|
def export_sftp_push
|
82
|
-
forward_command('-
|
82
|
+
forward_command('-extract-sftp-push')
|
83
83
|
end
|
84
84
|
|
85
85
|
def forward_command(use, *opts)
|
data/lib/eco-rake/version.rb
CHANGED