kernow-faker 0.3.2 → 0.3.3

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/Manifest.txt CHANGED
@@ -7,6 +7,7 @@ config/hoe.rb
7
7
  config/requirements.rb
8
8
  faker.tmproj
9
9
  lib/extensions/array.rb
10
+ lib/extensions/hash.rb
10
11
  lib/extensions/object.rb
11
12
  lib/faker.rb
12
13
  lib/faker/address.rb
@@ -0,0 +1,5 @@
1
+ class Hash
2
+ def rand
3
+ self[keys.rand]
4
+ end
5
+ end
data/lib/faker/version.rb CHANGED
@@ -2,7 +2,7 @@ module Faker #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 3
5
- TINY = 2
5
+ TINY = 3
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kernow-faker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Benjamin Curtis
@@ -44,6 +44,7 @@ files:
44
44
  - config/requirements.rb
45
45
  - faker.tmproj
46
46
  - lib/extensions/array.rb
47
+ - lib/extensions/hash.rb
47
48
  - lib/extensions/object.rb
48
49
  - lib/faker.rb
49
50
  - lib/faker/address.rb