ronin 2.0.2 → 2.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 31356f467f009277f4c840fb645f3f64bfba3c6d9e1cf1b1bef2dee177dc4b96
4
- data.tar.gz: 4cce57a146892ac6b05bf6a41aa35467d50e307c74ed6150cfdf05234aa177f2
3
+ metadata.gz: bd118bec1127281e37b25d9cf8b9837442c77e5688129494d79bb00501259c8d
4
+ data.tar.gz: 2837a1c2af5b7d76036c185d926925accda49dec427806f5a252edb59a32468d
5
5
  SHA512:
6
- metadata.gz: 244f986f64b8ee769769ca050321ff3ad6ebe4de5ea7c9f7f509514e32e02d580fbd391bf65c1a35238f2b42825050082fd0a1a06c491e447462a603b7a3c9de
7
- data.tar.gz: 312f52036a301608b240fd91a26f2d3632eafd1f0c193ef6127851eb43e69840c443a8f3f9608ab7ad8d522e7fb58d96e45e8e32cdfac00a59e931ed636b7d48
6
+ metadata.gz: 0b06a43fb961491f9916649b531ce105ad1a41d4c4d2ce37a39531e08dd9106c070d137328d7b2ddf1551085f1759be051ba3558aec13093e851dad386d8638c
7
+ data.tar.gz: ddfd44d05d3bcce5dafd435bc437377c6cf06e0cfa9639a1624bf896d40dae7236bef1c327f3e033094b18052c34e864fab4d1601698a90f18c748e621c41ba9
data/ChangeLog.md CHANGED
@@ -1,3 +1,14 @@
1
+ ### 2.0.3 / 2023-06-12
2
+
3
+ * Extend `Ronin::Support` into {Ronin} in order to make their Mixin instance
4
+ methods accessible to the `ronin irb` command which spawns an IRB session
5
+ within the `Ronin` namespace.
6
+
7
+ #### CLI
8
+
9
+ * Fixed a regression in the `ronin irb` command where the `ronin-support` Mixin
10
+ methods (ex: `http_get`) were missing from the `ronin irb` shell.
11
+
1
12
  ### 2.0.2 / 2023-06-09
2
13
 
3
14
  * Documentation fixes and improvements.
data/lib/ronin/version.rb CHANGED
@@ -18,5 +18,5 @@
18
18
 
19
19
  module Ronin
20
20
  # ronin version
21
- VERSION = '2.0.2'
21
+ VERSION = '2.0.3'
22
22
  end
data/lib/ronin.rb CHANGED
@@ -26,5 +26,6 @@ require 'open_namespace'
26
26
 
27
27
  module Ronin
28
28
  include Ronin::Support
29
+ extend Ronin::Support
29
30
  include OpenNamespace
30
31
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ronin
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 2.0.3
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-09 00:00:00.000000000 Z
11
+ date: 2023-06-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: open_namespace