iZsh-rubyfw 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/ChangeLog +3 -0
  2. data/README +5 -0
  3. data/lib/fw.rb +2 -2
  4. metadata +1 -1
data/ChangeLog CHANGED
@@ -1,2 +1,5 @@
1
+ * 0.1.1: Small bug fix.
2
+ * lib/fw.rb (to_ui64): Move it to Integer instead of Bignum. That way it
3
+ should work on 64bit CPU as well.
1
4
  * 0.1.0: Initial Release.
2
5
  Only support MacOSX
data/README CHANGED
@@ -39,3 +39,8 @@ sudo gem install iZsh-rubyfw
39
39
  To use it, just use the following requires:
40
40
  require 'rubygems'
41
41
  require 'fw'
42
+
43
+ Alternatively you could check out macloginpwdfinder-fw.rb at
44
+ http://github.com/iZsh/Processus-Memory-Tools for a real script using this
45
+ library.
46
+
data/lib/fw.rb CHANGED
@@ -15,8 +15,8 @@
15
15
  # along with this program. If not, see <http://www.gnu.org/licenses/>.
16
16
  require 'fwext'
17
17
 
18
- # Expand the Bignum class for UI64 (Universal Identifier) representation
19
- class Bignum
18
+ # Expand the Integer class for UI64 (Universal Identifier) representation
19
+ class Integer
20
20
  def to_ui64
21
21
  ("%016x" % self).scan(/[a-f0-9]{2}/).join(":")
22
22
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iZsh-rubyfw
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - iZsh