random_fu 0.0.3 → 0.0.4

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/.gitignore CHANGED
@@ -1,2 +1,3 @@
1
+ .gem
1
2
  **.swp
2
3
  tags
data/README.md CHANGED
@@ -1,7 +1,8 @@
1
1
  Random_fu
2
2
  =========
3
3
 
4
- A Ruby gem to add random capability. Currently, only for Strings.
4
+ A Ruby gem to add random capability. Currently, only for Strings. Tested with
5
+ ruby 1.9.2 and RSpec 2.10
5
6
 
6
7
  DO NOT USE for generating any data related to security!!!
7
8
  ---------------------------------------------------------
@@ -1,3 +1,3 @@
1
1
  module RandomFu
2
- VERSION = '0.0.3'
2
+ VERSION = '0.0.4'
3
3
  end
data/random_fu.gemspec CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
9
9
  s.description = "Incorprate random helpers into your app"
10
10
  s.email = ["brian@ledsworth.com"]
11
11
  s.homepage = "https://github.com/AgileMantis/random_fu"
12
- s.required_ruby_version = '>= 1.9.3'
12
+ s.required_ruby_version = '>= 1.9.2'
13
13
  s.files = `git ls-files`.split("\n")
14
14
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
15
15
  s.require_paths = ["lib"]
data/spec/version_spec.rb CHANGED
@@ -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.3'
5
+ RandomFu::VERSION.should == '0.0.4'
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.3
5
+ version: 0.0.4
6
6
  platform: ruby
7
7
  authors:
8
8
  - Brian Ledsworth of Ledsworth Consluting LLC
@@ -29,8 +29,6 @@ files:
29
29
  - lib/random_fu.rb
30
30
  - lib/random_fu/string.rb
31
31
  - lib/random_fu/version.rb
32
- - random_fu-0.0.2.gem
33
- - random_fu-0.0.3.gem
34
32
  - random_fu.gemspec
35
33
  - spec/spec_helper.rb
36
34
  - spec/string_random_order_spec.rb
@@ -49,7 +47,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
49
47
  requirements:
50
48
  - - ">="
51
49
  - !ruby/object:Gem::Version
52
- version: 1.9.3
50
+ version: 1.9.2
53
51
  required_rubygems_version: !ruby/object:Gem::Requirement
54
52
  none: false
55
53
  requirements:
@@ -59,7 +57,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
59
57
  requirements: []
60
58
 
61
59
  rubyforge_project:
62
- rubygems_version: 1.8.24
60
+ rubygems_version: 1.8.21
63
61
  signing_key:
64
62
  specification_version: 3
65
63
  summary: Random helpers
@@ -68,4 +66,3 @@ test_files:
68
66
  - spec/string_random_order_spec.rb
69
67
  - spec/string_random_spec.rb
70
68
  - spec/version_spec.rb
71
- has_rdoc:
data/random_fu-0.0.2.gem DELETED
Binary file