pentex 0.1.4 → 0.1.5

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.
data/CHANGELOG ADDED
@@ -0,0 +1,6 @@
1
+ == Version 0.1.5
2
+ * added .yardopts for better documentation
3
+
4
+ == Version 0.1.4
5
+ * added changelog file
6
+ * added autoloading of IRB modification
data/README ADDED
@@ -0,0 +1,6 @@
1
+ = PentEx aka Pentest Extensions
2
+ This toolset's primarily intent is to enhance the interactive ruby shell (IRB) with functions which may be useful for pentests.
3
+ Besides of typical hash and conversion functions it also has more complex functions like cisco_7-decoder or a nice hex-output.
4
+
5
+ == Installation
6
+ gem install pentex
data/lib/pentex.rb CHANGED
@@ -1,13 +1,7 @@
1
1
  require 'pentex/core'
2
2
 
3
- #if defined?(IRB)
4
- if $DEBUG
5
- puts "= DEBUG ="
6
- puts self
7
- puts self.methods.sort
8
-
9
- end
10
3
 
4
+ # Extend IRB if started
11
5
  if $0 == 'irb'
12
6
  puts "Need to tweak IRB ..." if $DEBUG
13
7
  require 'pentex/irbrc'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pentex
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -21,11 +21,11 @@ executables: []
21
21
  extensions: []
22
22
  extra_rdoc_files: []
23
23
  files:
24
- - lib/CHANGELOG.txt
25
24
  - lib/pentex/core.rb
26
25
  - lib/pentex/irbrc.rb
27
26
  - lib/pentex.rb
28
- - lib/README.txt
27
+ - README
28
+ - CHANGELOG
29
29
  homepage: http://siberas.blogspot.de/2012/03/irb-hacking-extensions.html
30
30
  licenses: []
31
31
  post_install_message:
data/lib/CHANGELOG.txt DELETED
@@ -1,3 +0,0 @@
1
- = Version 0.1.4 =
2
- + added changelog file
3
- + added autoloading of IRB modification
data/lib/README.txt DELETED
@@ -1,2 +0,0 @@
1
- = PentEx aka Pentest Extensions =
2
- This toolset's primarily intent is to enhance the interactive ruby shell (IRB) with functions which may be useful for pentests. Besides of typical hash and conversion functions it also has more complex functions like cisco_7-decoder or a nice hex-output.