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 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:
@@ -2,7 +2,7 @@ module RandomData #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 1
4
4
  MINOR = 0
5
- TINY = 1
5
+ TINY = 2
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
data/lib/random_data.rb CHANGED
@@ -1,11 +1,11 @@
1
1
  $:.unshift File.dirname(__FILE__)
2
-
3
- require 'lib/random_data/array_randomizer'
4
- require 'lib/random_data/contact_info'
5
- require 'lib/random_data/dates'
6
- require 'lib/random_data/locations'
7
- require 'lib/random_data/names'
8
- require 'lib/random_data/text'
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.1
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: