get-voodoo 0.0.6 → 0.0.9
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/bin/voodoo +4 -1
- data/lib/voodoo/cli.rb +2 -2
- data/lib/voodoo/js/intercept.js +4 -0
- 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: 99defe02c0508d802bc59b7e6e794457d3aba4510055a70fc2324ec6303b84d8
|
4
|
+
data.tar.gz: f2c9e7c31bf6565b4b34a0441954a85b39cd94a277a12c5f552b0c274d242e3f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6221573992f6446fe7d4bafbdfe41676b3d95e1b6e04b9fcf1d0898bfb1b07f0c245df005ccbe7e4324e3f5530abcee6d8d52dce23989c560b94587d565fc6a9
|
7
|
+
data.tar.gz: 36bc49e969f2be12079a3aaf5b8ed2b815c1a00fe6389123ec0d84cd3cf3e2c05e3466b0e7255843512c47886b30ec5c1dff0dbd552dea1322f04653e09a7401
|
data/bin/voodoo
CHANGED
data/lib/voodoo/cli.rb
CHANGED
@@ -6,7 +6,7 @@ require 'voodoo/browser'
|
|
6
6
|
|
7
7
|
module VOODOO
|
8
8
|
|
9
|
-
VERSION = 'v0.0.
|
9
|
+
VERSION = 'v0.0.9'
|
10
10
|
|
11
11
|
class CLI < Thor
|
12
12
|
|
@@ -16,7 +16,7 @@ module VOODOO
|
|
16
16
|
end
|
17
17
|
|
18
18
|
option :url_include, :type => :string, :aliases => :u, :default => nil
|
19
|
-
option :body_include, :type => :string, :aliases => :
|
19
|
+
option :body_include, :type => :string, :aliases => :i, :default => nil
|
20
20
|
option :header_exists, :type => :string, :aliases => :h, :default => nil
|
21
21
|
option :format, :type => :string, :aliases => :f, :default => 'pretty', :desc => 'pretty, json, payload'
|
22
22
|
option :output, :type => :string, :aliases => :o, :desc => 'File path', :default => nil
|
data/lib/voodoo/js/intercept.js
CHANGED