random_data 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +10 -0
- data/lib/random_data/version.rb +1 -1
- data/lib/random_data.rb +7 -7
- metadata +1 -1
data/History.txt
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
== 1.0.2 2007-09-17
|
2
|
+
|
3
|
+
* 1 minor fix:
|
4
|
+
* Not finding lib files properly, now fixed
|
5
|
+
|
6
|
+
== 1.0.1 2007-09-17
|
7
|
+
|
8
|
+
* 1 minor fix:
|
9
|
+
* Not creating the Random class properly by extending it (vs. including modules)
|
10
|
+
|
1
11
|
== 1.0.0 2007-09-17
|
2
12
|
|
3
13
|
* 1 major enhancement:
|
data/lib/random_data/version.rb
CHANGED
data/lib/random_data.rb
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
$:.unshift File.dirname(__FILE__)
|
2
|
-
|
3
|
-
require '
|
4
|
-
require '
|
5
|
-
require '
|
6
|
-
require '
|
7
|
-
require '
|
8
|
-
require '
|
2
|
+
|
3
|
+
require 'random_data/array_randomizer'
|
4
|
+
require 'random_data/contact_info'
|
5
|
+
require 'random_data/dates'
|
6
|
+
require 'random_data/locations'
|
7
|
+
require 'random_data/names'
|
8
|
+
require 'random_data/text'
|
9
9
|
|
10
10
|
class Random
|
11
11
|
extend RandomData::ContactInfo
|
metadata
CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.4
|
|
3
3
|
specification_version: 1
|
4
4
|
name: random_data
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 1.0.
|
6
|
+
version: 1.0.2
|
7
7
|
date: 2007-09-20 00:00:00 -04:00
|
8
8
|
summary: A Ruby gem that provides a Random singleton class with a series of methods for generating random test data including names, mailing addresses, dates, phone numbers, e-mail addresses, and text.
|
9
9
|
require_paths:
|