ronin-payloads 0.1.3 → 0.1.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c4b7d7bfb17f1d468e0aa0e35ed2e8c6a6f40c44feb5f8d892b9bad123b7db36
4
- data.tar.gz: ffc39347b4899289faa6e94ef6485e97a69b73e4e76048960309b1b2cd8751e1
3
+ metadata.gz: 22dcc9ea244534bd659de580c4ef0576401bf480055ad9b0a6a05787e7375c1b
4
+ data.tar.gz: f3ce8d4f1e8b1c80610c9de6d860514d9a3d5ef4eb6840d7f888d12fc6621f4c
5
5
  SHA512:
6
- metadata.gz: 20080e44ed9cb33daf8e6de9693e8727b682b8489327d87154b38750fb21f6317f291262978e299de82106aeb9342c6dc10d25304ad4c8f96a5370e2a3156650
7
- data.tar.gz: b87fe8240fd317fe431173cf85f314b6b52501d3ea947841a46354de9310a5fbb62b1771aeed707769a09b04cfdb7af8ff99a745e2eb14b5378554ee242a83e8
6
+ metadata.gz: 8449b2f43b09fd2bf49b29417f8004e24c970b4e797a65430fdfd9df8c7132daa8d4112c36f3a5bb6569efc92e4ada98a0de624a1eb209e50eeadaa245750536
7
+ data.tar.gz: 02b8ae12c4b29dbd3987067d429919a4bbc883ff562dd8228b93b2eef8ed80fbf8f82c366d43d9a00c92f48570afe480186a2f7cd2ec80d2d35e56312160546e
data/.document CHANGED
@@ -2,4 +2,3 @@ lib/**/*.rb
2
2
  -
3
3
  ChangeLog.md
4
4
  COPYING.txt
5
- man/*.md
data/ChangeLog.md CHANGED
@@ -1,3 +1,12 @@
1
+ ### 0.1.4 / 2023-09-19
2
+
3
+ #### CLI
4
+
5
+ * All newly generated payload files using `ronin-payloads new` should have a
6
+ `summary` and a `description`.
7
+ * Fixed a bug where the `ronin-payloads new` options `--author`,
8
+ `--author-email`, or `--summary` were not properly escaping given values.
9
+
1
10
  ### 0.1.3 / 2023-06-12
2
11
 
3
12
  #### CLI
data/README.md CHANGED
@@ -9,7 +9,6 @@
9
9
  * [Issues](https://github.com/ronin-rb/ronin-payloads/issues)
10
10
  * [Documentation](https://ronin-rb.dev/docs/ronin-payloads/frames)
11
11
  * [Discord](https://discord.gg/6WAb3PsVX9) |
12
- [Twitter](https://twitter.com/ronin_rb) |
13
12
  [Mastodon](https://infosec.exchange/@ronin_rb)
14
13
 
15
14
  ## Description
@@ -9,23 +9,23 @@ module Ronin
9
9
  register '<%= @file_name -%>'
10
10
 
11
11
  <%- if @author_email -%>
12
- author '<%= @author_name %>', email: '<%= @author_email -%>'
12
+ author <%= @author_name.inspect %>, email: <%= @author_email.inspect %>
13
13
  <%- else -%>
14
- author '<%= @author_name %>'
14
+ author <%= @author_name.inspect %>
15
15
  <%- end -%>
16
16
  <%- if @summary -%>
17
- summary "<%= @summary %>"
17
+ summary <%= @summary.inspect %>
18
18
  <%- else -%>
19
- # summary "FIX ME"
19
+ summary "FIX ME"
20
20
  <%- end -%>
21
21
  <%- if @description -%>
22
22
  description <<~DESC
23
23
  <%= @description %>
24
24
  DESC
25
25
  <%- else -%>
26
- # description <<~DESC
27
- # FIX ME
28
- # DESC
26
+ description <<~DESC
27
+ FIX ME
28
+ DESC
29
29
  <%- end -%>
30
30
  <%- unless @references.empty? -%>
31
31
  references [
@@ -29,6 +29,8 @@ module Ronin
29
29
  #
30
30
  # [ERB]: https://docs.ruby-lang.org/en/3.1/ERB.html
31
31
  #
32
+ # @see https://ronin-rb.dev/docs/ronin-support/Ronin/Support/Text/ERB/Mixin.html
33
+ #
32
34
  # @api public
33
35
  #
34
36
  module ERB
@@ -22,6 +22,6 @@
22
22
  module Ronin
23
23
  module Payloads
24
24
  # ronin-payloads version
25
- VERSION = '0.1.3'
25
+ VERSION = '0.1.4'
26
26
  end
27
27
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ronin-payloads
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Postmodern
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-12 00:00:00.000000000 Z
11
+ date: 2023-09-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ronin-support