random_fu 0.0.7 → 0.0.8

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/README.md CHANGED
@@ -1,8 +1,9 @@
1
1
  Random_fu
2
2
  =========
3
3
 
4
- A Ruby gem to add random capability. Currently, only for Strings and Hashes. Tested with
5
- ruby 1.9.2 and RSpec 2.10
4
+ A Ruby gem to add random capability. Currently, only for Strings, Hashes and Time. Tested with
5
+ ruby 1.9.2 and RSpec 2.10. Note, classes are monkey patched by adding "random" and "random_foo"
6
+ instance methods to Ruby classes.
6
7
 
7
8
  DO NOT USE for generating any data related to security!!!
8
9
  ---------------------------------------------------------
@@ -12,7 +13,7 @@ random strings.
12
13
  Installation
13
14
  ============
14
15
 
15
- Random_fu will soon be distributed as a ruby gem (not yet published, in dev). Simply require it in your Gemfile.
16
+ Random_fu will is distributed as a ruby gem. Simply require it in your Gemfile.
16
17
 
17
18
  gem "random_fu"
18
19
 
@@ -1,3 +1,3 @@
1
1
  module RandomFu
2
- VERSION = '0.0.7'
2
+ VERSION = '0.0.8'
3
3
  end
@@ -2,7 +2,7 @@ require 'spec_helper'
2
2
 
3
3
  describe "random_fu's version" do
4
4
  it "should be current" do
5
- RandomFu::VERSION.should == '0.0.7'
5
+ RandomFu::VERSION.should == '0.0.8'
6
6
  end
7
7
  end
8
8
 
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: random_fu
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.7
5
+ version: 0.0.8
6
6
  platform: ruby
7
7
  authors:
8
8
  - Brian Ledsworth of Ledsworth Consluting LLC