mockdata 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6c2217f0fe33c5011bf45c9cb3ecad689c81b7c1
4
- data.tar.gz: aa5aef629e4b0b7a49273f0400d6c714b70ab88b
3
+ metadata.gz: 50c921483d3df086d9058fb4f5ab52722ab0bd97
4
+ data.tar.gz: 2ecc263a8ebe9ef679269a15bc8132d2e828d0dd
5
5
  SHA512:
6
- metadata.gz: cc6580e8258df1812d6df481655ce54ecd015d34e32820e3bb02b6f946331dfacf0f6362ea78d397e733ded95ba189305f6ec02443d7bf33200b42b38141fe72
7
- data.tar.gz: 419b3372a6b324d68493d8cd9d634a0f19776bfb2deceae99d4452d727feaf2f73d1fb5185cedaa0daac49e739199093448f72262ca3963252d1d39e0962fdd0
6
+ metadata.gz: 38f1919626361dba68810a5fbcff04a4691bbef3dbc77246fbf809cfa613f1e36e656b73eedd9f2e884cb97a794cff2af58982a6bcf8003158825e5decaae379
7
+ data.tar.gz: 147514901f3be1ac83b9a82d4239b96d0c346c62e802660e9f18dea150ebc179fd737b16a6f2e8552783a2ecce292d4b8f9d29edc66bfc987e648769fc9dbf51
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- mockdata (0.1.0)
4
+ mockdata (0.1.5)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -12,9 +12,9 @@ PLATFORMS
12
12
  ruby
13
13
 
14
14
  DEPENDENCIES
15
- mockdata!
16
15
  bundler (~> 1.11)
16
+ mockdata!
17
17
  rake (~> 10.0)
18
18
 
19
19
  BUNDLED WITH
20
- 1.11.2
20
+ 1.13.6
data/README.md CHANGED
@@ -4,6 +4,34 @@
4
4
 
5
5
  _Note: All dummy data is work-place safe (IMO) but use at your own risk._
6
6
 
7
+ | Class | Type | Number of random data elements |
8
+ |----------|-------|--------|
9
+ | Animals | Horse names| 96 |
10
+ | Animals | Pet names | 52 |
11
+ | Animals | Critter names | 170 |
12
+ | Animals | Dog names | 150 |
13
+ | Animals | Cat names | 116 |
14
+ | Avatars | Profile pictures | 280 |
15
+ | Locations | City/Longitude/Latitude | 31 |
16
+ | Locations | Cities | 120 |
17
+ | Locations | Street names | 100 |
18
+ | Locations | Islands | 50 |
19
+ | Locations | Airports | 99 |
20
+ | Names | Company names | 69 |
21
+ | Names | Business types | 95 |
22
+ | Names | Project names | 37 |
23
+ | Names | Hotel names | 60 |
24
+ | Names | Occupations | 74 |
25
+ | People | First names | 176 |
26
+ | People | Last names | 195 |
27
+ | People | First names (Dutch-only) | 111 |
28
+ | People | Last names (Dutch-only) | 91 |
29
+ | People | Superhero names | 53 |
30
+ | People | Elf names | 55 |
31
+ | People | Robot names | 49 |
32
+ | TimeZones | TimeZones/Regions | 142 |
33
+ | Words | Words | 2323 |
34
+
7
35
  #### Animal names
8
36
 
9
37
  `Mockdata::Animals.horse => "Sally"`
@@ -56,7 +84,7 @@ Return random number between 1 and 3 excluding 1 and 3
56
84
 
57
85
  Return array with 3 elements, filled with random numbers between 1 and 10
58
86
 
59
- `Mockdata::Numbers.random_number_array(1..10, 3) => [9,1,4]`
87
+ `Mockdata::Numbers.random_number_array(1..10, 3) => [9, 1, 4]`
60
88
 
61
89
  Return array with 3 elements, filled with random numbers picked from [1, 2, 3, 4]
62
90
 
@@ -70,12 +98,12 @@ The first and last names contain English, European, Asian and other names.
70
98
 
71
99
  `Mockdata::People.first_and_last_name => "David Allen"`
72
100
 
73
- `Mockdata::People.dutch_first_and_last_name => "Bart van der Heijden"`
74
-
75
101
  `Mockdata::Names.first_name => "David"`
76
102
 
77
103
  `Mockdata::Names.last_name => "Allen"`
78
104
 
105
+ `Mockdata::People.dutch_first_and_last_name => "Bart van der Heijden"`
106
+
79
107
  `Mockdata::Names.dutch_first_name => "Bart"`
80
108
 
81
109
  `Mockdata::Names.dutch_last_name => "van der Heijden"`
@@ -109,3 +137,31 @@ Return random words:
109
137
  Return between 2 and 10 random words separated by spaces:
110
138
 
111
139
  `Mockdata::Words.some(2..10) => "beam scan grown tape course thimble newscast main asleep"`
140
+
141
+ #### License
142
+
143
+ MIT
144
+
145
+ #### In the works...
146
+
147
+ - [ ] Languages
148
+ - [ ] Screenshot images
149
+ - [ ] Landscape photos
150
+ - [ ] B&W images
151
+ - [ ] Zip-codes
152
+ - [ ] Country names
153
+ - [ ] Phone numbers
154
+ - [ ] Bank numbers
155
+ - [ ] Credit card numbers
156
+ - [ ] Email addresses
157
+ - [ ] First and last names from more countries/regions
158
+ - [ ] Car brands
159
+ - [ ] Flight numbers
160
+ - [ ] Weather data
161
+ - [ ] News
162
+ - [ ] Amounts/prices
163
+ - [ ] Passwords
164
+ - [ ] Dates/ranges
165
+ - [ ] File extensions/icons
166
+ - [ ] UTF-8 test strings
167
+ - [ ] Currencies
@@ -1,15 +1,15 @@
1
1
  module Mockdata
2
2
  class Animals
3
3
 
4
- HORSE_NAMES = [ "Amber", "Annie", "Badal", "Beast", "Beauty", "Bella", "Belle", "Blaze", "Blue", "Bob", "Buck", "Buddy", "Buttercup", "Casey", "Chance", "Charger", "Cherokee", "Chester", "Cheyenne", "Chief", "Coco", "Cocoa", "Colton", "Cowboy", "Cricket", "Daisy", "Dakota", "Dallas", "Dani", "Dixie", "Dolly", "Dreamer", "Duke", "Dusty", "Emily", "Emma", "Estrellita", "Gypsy", "Harley", "Honey", "Jack", "Jake", "Kidd", "Lady", "Lucky", "Luna", "Magic", "Mariah", "Max", "Midnight", "Midnight storm", "Milo", "Minnie", "Missy", "Misty", "Mojo", "Molly", "Monkey", "Moon", "Morgan", "Nikita", "Nikki", "Nutmeg", "Prince", "Princess", "Rain", "Ranger", "Red", "Rocky", "Roger", "Rosalia", "Rosie", "Sally", "Sassy", "Shiloh", "Sky", "Smokey", "Spirit", "Star", "Stormy", "Sugar", "Sultan", "Sundance", "Taz", "Telly", "Thor", "Tinker", "Toby", "Tom", "Tony", "Tornado", "Tucker", "Twister", "Whisper", "Willow", "Yankee" ]
4
+ HORSE_NAMES = [ "Amber", "Annie", "Badal", "Beast", "Beauty", "Bella", "Belle", "Blaze", "Blue", "Bob", "Buck", "Buddy", "Buttercup", "Casey", "Chance", "Charger", "Cherokee", "Chester", "Cheyenne", "Chief", "Coco", "Cocoa", "Colton", "Cowboy", "Cricket", "Daisy", "Dakota", "Dallas", "Dani", "Dixie", "Dolly", "Dreamer", "Duke", "Dusty", "Emily", "Emma", "Estrellita", "Gypsy", "Harley", "Honey", "Jack", "Jake", "Kidd", "Lady", "Lucky", "Luna", "Magic", "Mariah", "Max", "Midnight", "Midnight storm", "Milo", "Minnie", "Missy", "Misty", "Mojo", "Molly", "Monkey", "Moon", "Morgan", "Nikita", "Nikki", "Nutmeg", "Prince", "Princess", "Rain", "Ranger", "Red", "Rocky", "Roger", "Rosalia", "Rosie", "Sally", "Sassy", "Shiloh", "Sky", "Smokey", "Spirit", "Star", "Stormy", "Sugar", "Sultan", "Sundance", "Taz", "Telly", "Thor", "Tinker", "Toby", "Tom", "Tony", "Tornado", "Tucker", "Twister", "Whisper", "Willow", "Yankee" ].freeze
5
5
 
6
- PET_NAMES = [ "Baby Koko", "Benson", "Big Cadet", "Big Fox", "Blizzy Maxi", "Ceasar", "Chicken Tammy", "Cute Blackie", "Cute Dirk", "Cute Flying Skinny", "Cute Lucky", "Cute Paul", "Cute Tiger", "Heavy Beast", "Indigo Myrtle", "Indigo Queen", "Lexus", "Little Benson", "Little Jimmy", "Miss Cheese", "Miss Filly", "Miss Niko", "Miss Steel", "Miss Wiggy", "Misses Professor", "Mister Cadet", "Mister Laney", "Mister Stony Demon", "Mr Mystery", "Mr Penny", "Mr Piglet", "Mr Shadow", "Mr Sir", "Old Piglet", "Old Stella", "Quick", "Scarlet Cadet", "Screamy Whelp", "Sheba Silly", "Silver Coockie", "Silver Josie", "Silver Muffy", "Silver Space", "Sleepy Blue Angel", "Spot", "The Belle", "The Buff", "The Farley", "The Galaxy", "The Rick", "Titan Cutie", "White Lord" ]
6
+ PET_NAMES = [ "Baby Koko", "Benson", "Big Cadet", "Big Fox", "Blizzy Maxi", "Ceasar", "Chicken Tammy", "Cute Blackie", "Cute Dirk", "Cute Flying Skinny", "Cute Lucky", "Cute Paul", "Cute Tiger", "Heavy Beast", "Indigo Myrtle", "Indigo Queen", "Lexus", "Little Benson", "Little Jimmy", "Miss Cheese", "Miss Filly", "Miss Niko", "Miss Steel", "Miss Wiggy", "Misses Professor", "Mister Cadet", "Mister Laney", "Mister Stony Demon", "Mr Mystery", "Mr Penny", "Mr Piglet", "Mr Shadow", "Mr Sir", "Old Piglet", "Old Stella", "Quick", "Scarlet Cadet", "Screamy Whelp", "Sheba Silly", "Silver Coockie", "Silver Josie", "Silver Muffy", "Silver Space", "Sleepy Blue Angel", "Spot", "The Belle", "The Buff", "The Farley", "The Galaxy", "The Rick", "Titan Cutie", "White Lord" ].freeze
7
7
 
8
- ANIMAL_NAMES = [ "Addax", "Alligator", "Alpaca", "Anteater", "Antelope", "Aoudad", "Ape", "Argali", "Armadillo", "Baboon", "Bald Eagle", "Basilisk", "Bear", "Beaver", "Bighorn", "Bison", "Blue Crab", "Boar", "Budgerigar", "Buffalo", "Bull", "Bumble Bee", "Burro", "Camel", "Canary", "Capybara", "Cat", "Chameleon", "Chamois", "Cheetah", "Chicken", "Chimpanzee", "Chipmunk", "Civet", "Coati", "Colt", "Cougar", "Cow", "Coyote", "Crocodile", "Crow", "Deer", "Dingo", "Doe", "Dog", "Donkey", "Dormouse", "Dromedary", "Duckbill Platypus", "Dugong", "Dung Beetle", "Eagle Owl", "Eland", "Elephant", "Elk", "Ermine", "Ewe", "Fawn", "Ferret", "Finch", "Fish", "Fox", "Gemsbok", "Gila Monster", "Giraffe", "Goat", "Gopher", "Gorilla", "Grizzly Bear", "Ground Hog", "Guanaco", "Guinea Pig", "Hamster", "Hare", "Hartebeest", "Hedgehog", "Hippopotamus", "Hog", "Hyena", "Ibex", "Iguana", "Impala", "Jackal", "Jaguar", "Jerboa", "Kitten", "Koala", "Lamb", "Lemur", "Leopard", "Lion", "Lizard", "Llama", "Lovebird", "Lynx", "Mandrill", "Mare", "Marmoset", "Meerkat", "Mole", "Monkey", "Moose", "Mountain Goat", "Mouse", "Mule", "Musk Deer", "Musk-ox", "Muskrat", "Mustang", "Mynah Bird", "Newt", "Ocelot", "Octopus", "Okapi", "Opossum", "Orangutan", "Oryx", "Otter", "Panda", "Panther", "Parakeet", "Parrot", "Peccary", "Pig", "Polar Bear", "Pony", "Porcupine", "Porpoise", "Prairie Dog", "Pronghorn", "Puma", "Puppy", "Quagga", "Rabbit", "Raccoon", "Ram", "Rat", "Reindeer", "Rhinoceros", "Rooster", "Salamander", "Seal", "Sheep", "Shrew", "Skunk", "Sloth", "Snake", "Squirrel", "Stallion", "Starfish", "Steer", "Tapir", "Thorny Devil", "Tiger", "Toad", "Turtle", "Vicuna", "Walrus", "Warthog", "Waterbuck", "Weasel", "Whale", "Wildcat", "Wolf", "Wolverine", "Wombat", "Woodchuck", "Yak", "Zebra", "Zebu" ]
8
+ ANIMAL_NAMES = [ "Addax", "Alligator", "Alpaca", "Anteater", "Antelope", "Aoudad", "Ape", "Argali", "Armadillo", "Baboon", "Bald Eagle", "Basilisk", "Bear", "Beaver", "Bighorn", "Bison", "Blue Crab", "Boar", "Budgerigar", "Buffalo", "Bull", "Bumble Bee", "Burro", "Camel", "Canary", "Capybara", "Cat", "Chameleon", "Chamois", "Cheetah", "Chicken", "Chimpanzee", "Chipmunk", "Civet", "Coati", "Colt", "Cougar", "Cow", "Coyote", "Crocodile", "Crow", "Deer", "Dingo", "Doe", "Dog", "Donkey", "Dormouse", "Dromedary", "Duckbill Platypus", "Dugong", "Dung Beetle", "Eagle Owl", "Eland", "Elephant", "Elk", "Ermine", "Ewe", "Fawn", "Ferret", "Finch", "Fish", "Fox", "Gemsbok", "Gila Monster", "Giraffe", "Goat", "Gopher", "Gorilla", "Grizzly Bear", "Ground Hog", "Guanaco", "Guinea Pig", "Hamster", "Hare", "Hartebeest", "Hedgehog", "Hippopotamus", "Hog", "Hyena", "Ibex", "Iguana", "Impala", "Jackal", "Jaguar", "Jerboa", "Kitten", "Koala", "Lamb", "Lemur", "Leopard", "Lion", "Lizard", "Llama", "Lovebird", "Lynx", "Mandrill", "Mare", "Marmoset", "Meerkat", "Mole", "Monkey", "Moose", "Mountain Goat", "Mouse", "Mule", "Musk Deer", "Musk-ox", "Muskrat", "Mustang", "Mynah Bird", "Newt", "Ocelot", "Octopus", "Okapi", "Opossum", "Orangutan", "Oryx", "Otter", "Panda", "Panther", "Parakeet", "Parrot", "Peccary", "Pig", "Polar Bear", "Pony", "Porcupine", "Porpoise", "Prairie Dog", "Pronghorn", "Puma", "Puppy", "Quagga", "Rabbit", "Raccoon", "Ram", "Rat", "Reindeer", "Rhinoceros", "Rooster", "Salamander", "Seal", "Sheep", "Shrew", "Skunk", "Sloth", "Snake", "Squirrel", "Stallion", "Starfish", "Steer", "Tapir", "Thorny Devil", "Tiger", "Toad", "Turtle", "Vicuna", "Walrus", "Warthog", "Waterbuck", "Weasel", "Whale", "Wildcat", "Wolf", "Wolverine", "Wombat", "Woodchuck", "Yak", "Zebra", "Zebu" ].freeze
9
9
 
10
- DOG_NAMES = [ "Abbie", "Abby", "Ace", "Allie", "Angel", "Annie", "Apollo", "Astro", "Athena", "Ava", "Bailey", "Bandit", "Baxter", "Bear", "Beau", "Benji", "Benny", "Bonnie", "Boomer", "Brady", "Brandy", "Brewster", "Brody", "Bruiser", "Bruno", "Buster", "Callie", "Casey", "Cash", "Chanel", "Charlie", "Chase", "Chester", "Chewy", "Chico", "Chloe", "Cisco", "Cleo", "Coco", "Cocoa", "Cody", "Cookie", "Copper", "Daisy", "Dakota", "Delilah", "Dexter", "Diesel", "Dodger", "Ella", "Emma", "Finn", "Fiona", "Frankie", "Gigi", "Gizmo", "Gucci", "Guinness", "Gunner", "Gus", "Hank", "Hannah", "Harley", "Harry", "Hazel", "Holly", "Honey", "Hunter", "Jackson", "Jake", "Jameson", "Jasmine", "Jax", "Jeter", "Joey", "Katie", "Kobe", "Kona", "Lacey", "Layla", "Lexi", "Lily", "Loki", "Lola", "Lucky", "Lulu", "Luna", "Mac", "Maggie", "Marley", "Max", "Maya", "Mercedes", "Mia", "Mickey", "Millie", "Milo", "Missie", "Mocha", "Molly", "Murphy", "Nikki", "Olive", "Oliver", "Oreo", "Payton", "Peanut", "Penny", "Pepper", "Porter", "Puppy", "Ranger", "Rex", "Rocco", "Roscoe", "Rosie", "Ruby", "Rudy", "Rufus", "Rusty", "Sadie", "Sam", "Samantha", "Samson", "Sandy", "Sasha", "Scooter", "Scout", "Shadow", "Shelby", "Shiner", "Simba", "Sugar", "Sydney", "Tank", "Teddy", "Thor", "Tiger", "Trixie", "Tucker", "Tyson", "Whiskey", "Willow", "Winnie", "Winston", "Wrigley", "Yoda", "Zeus", "Zoe", "Zoey" ]
10
+ DOG_NAMES = [ "Abbie", "Abby", "Ace", "Allie", "Angel", "Annie", "Apollo", "Astro", "Athena", "Ava", "Bailey", "Bandit", "Baxter", "Bear", "Beau", "Benji", "Benny", "Bonnie", "Boomer", "Brady", "Brandy", "Brewster", "Brody", "Bruiser", "Bruno", "Buster", "Callie", "Casey", "Cash", "Chanel", "Charlie", "Chase", "Chester", "Chewy", "Chico", "Chloe", "Cisco", "Cleo", "Coco", "Cocoa", "Cody", "Cookie", "Copper", "Daisy", "Dakota", "Delilah", "Dexter", "Diesel", "Dodger", "Ella", "Emma", "Finn", "Fiona", "Frankie", "Gigi", "Gizmo", "Gucci", "Guinness", "Gunner", "Gus", "Hank", "Hannah", "Harley", "Harry", "Hazel", "Holly", "Honey", "Hunter", "Jackson", "Jake", "Jameson", "Jasmine", "Jax", "Jeter", "Joey", "Katie", "Kobe", "Kona", "Lacey", "Layla", "Lexi", "Lily", "Loki", "Lola", "Lucky", "Lulu", "Luna", "Mac", "Maggie", "Marley", "Max", "Maya", "Mercedes", "Mia", "Mickey", "Millie", "Milo", "Missie", "Mocha", "Molly", "Murphy", "Nikki", "Olive", "Oliver", "Oreo", "Payton", "Peanut", "Penny", "Pepper", "Porter", "Puppy", "Ranger", "Rex", "Rocco", "Roscoe", "Rosie", "Ruby", "Rudy", "Rufus", "Rusty", "Sadie", "Sam", "Samantha", "Samson", "Sandy", "Sasha", "Scooter", "Scout", "Shadow", "Shelby", "Shiner", "Simba", "Sugar", "Sydney", "Tank", "Teddy", "Thor", "Tiger", "Trixie", "Tucker", "Tyson", "Whiskey", "Willow", "Winnie", "Winston", "Wrigley", "Yoda", "Zeus", "Zoe", "Zoey" ].freeze
11
11
 
12
- CAT_NAMES = [ "Angel", "Baby", "Bailey", "Bandit", "BatMan", "Bella", "Belle", "Beyonce", "Blackie", "Boo", "Boomer", "Boots", "Buddy", "Cali", "Callie", "Casper", "Charlie", "Cher", "Chester", "Chloe", "Coco", "Coco Chanel", "Cupcake", "Daisy", "Dexter", "Dusty", "Elvis", "Emma", "Felix", "Fiona", "Fluffy", "Frankie", "Fred", "Garfield", "George", "Ginger", "Gizmo", "Gracie", "Harley", "Houdini", "Izzy", "Jack", "Jake", "Jasmine", "Jasper", "Kiki", "Kitty", "Lady Gaga", "Leo", "Lilly", "Lily", "Loki", "Lola", "Lucky", "Lucy", "Luna", "Maddie", "Madonna", "Maggie", "Marley", "Max", "Midnight", "Milo", "Mimi", "Minnie", "Missy", "Misty", "Mittens", "Molly", "Muffin", "Murphy", "Nala", "Noodle", "Oliver", "Oprah", "Oreo", "Oscar", "Panda", "Patches", "Peanut", "Pepper", "Phoebe", "Precious", "Princess", "Pumpkin", "Rocky", "Romeo", "Rusty", "Sadie", "Salem", "Samantha", "Sammy", "Sasha", "Sassy", "Scooter", "Sebastian", "Shadow", "Shakira", "Simba", "Simon", "Smokey", "Snickers", "Socks", "Sophie", "Sox", "Spike", "Sugar", "Sweetie", "Tiger", "Tigger", "Toby", "Tucker", "Twiggy", "Zeus", "Ziggy", "Zoe" ]
12
+ CAT_NAMES = [ "Angel", "Baby", "Bailey", "Bandit", "BatMan", "Bella", "Belle", "Beyonce", "Blackie", "Boo", "Boomer", "Boots", "Buddy", "Cali", "Callie", "Casper", "Charlie", "Cher", "Chester", "Chloe", "Coco", "Coco Chanel", "Cupcake", "Daisy", "Dexter", "Dusty", "Elvis", "Emma", "Felix", "Fiona", "Fluffy", "Frankie", "Fred", "Garfield", "George", "Ginger", "Gizmo", "Gracie", "Harley", "Houdini", "Izzy", "Jack", "Jake", "Jasmine", "Jasper", "Kiki", "Kitty", "Lady Gaga", "Leo", "Lilly", "Lily", "Loki", "Lola", "Lucky", "Lucy", "Luna", "Maddie", "Madonna", "Maggie", "Marley", "Max", "Midnight", "Milo", "Mimi", "Minnie", "Missy", "Misty", "Mittens", "Molly", "Muffin", "Murphy", "Nala", "Noodle", "Oliver", "Oprah", "Oreo", "Oscar", "Panda", "Patches", "Peanut", "Pepper", "Phoebe", "Precious", "Princess", "Pumpkin", "Rocky", "Romeo", "Rusty", "Sadie", "Salem", "Samantha", "Sammy", "Sasha", "Sassy", "Scooter", "Sebastian", "Shadow", "Shakira", "Simba", "Simon", "Smokey", "Snickers", "Socks", "Sophie", "Sox", "Spike", "Sugar", "Sweetie", "Tiger", "Tigger", "Toby", "Tucker", "Twiggy", "Zeus", "Ziggy", "Zoe" ].freeze
13
13
 
14
14
  def self.horse
15
15
  HORSE_NAMES.sample
@@ -1,13 +1,12 @@
1
1
  module Mockdata
2
2
  class Avatars
3
-
3
+
4
4
  # Images are obtained from http://www.uifaces.com/
5
5
  # I think using the usage of these images is permitted
6
6
  # If that is not the case please contact erik.van.eykelen@bitgain.com
7
7
  # Workplace suitable images (but don't take my word for it)
8
-
9
- AVATARS = %w(3en 9lessons aaroni abbsol abecherian abinav_t abn abrodo adellecharles adhamdannaway admod adnanzulkarnain ahmetalpbalkan aigarssilkalns akifyaldir alexcican alexcwilliams alexvanderzon allisongrayce andretacuyan andrewaashen andyvitale angelceballos annapickard arashmil arminophen artful_addict atariboy azielsilas bartonsmith beacrea beastydesign bellbells benhowdle bermonpainter BillSKenney bmosk9 boheme bradmca brad_frost brajeshwar bramk brynn burakdonertas calebogden cameronolivier catarino cbillins cdharrison celikovic cemshid chadengle Chakintosh choblab chrislove claudioguglieri cmozzati codymclain commadelimited connor_gaunt cristianovalim csswizardry c_southam dakshbhagya danbenoni dancounsell danielhaim dannpetty darrellwhitelaw davidburlton dingyi dotmariusz do_fox dreamreflex dustin dustinlamont dwaldron dzyngiri edwardsanchez emirik enda engle eomerx erondu ersinkoc esthercrawford evagiselle evantahler faulknermusic felipebsb felipenogs fffabs flamekaizar fling florianmascaro flylyf fran6 geekandco geoffrey_crofte glif graafdemichiel guiiipontes hchicha himanshuchanda holdenweb horaciosoares hridoyfaisal hvpandya iam_benn iconfinder idiot indianguru insistimento itsjonq jadlimcaco jamiecoulter89 jasongraphix jbrooksuk jessedodds jfkingsley jina jinuem jlantunez jm_denis jodyferry joelbirch47 jonatan jonohunt jorgebarahona joshaustin joshhemsley joshuasortino jsa jturmel k kaibrach kastov_yury kenansulayman kerem kfriedson kolage kosmar krystynheide kurtvarner ladylexy leonardopanhan linkibol lobanovskiy lucaorio_ ludensk mackenziechild madebyivor madedigital maducao marcogomes marcosmoralez mathelme mattchevy mattsince87 mauricioangulo mehdiayache mghoz michzen mijustin mikeluby mikeschmidt minipunk mist3r_c0r3 mizko mko mlane mrjohnwalker msurguy muchanis mutlu82 mxmtsk myusuf3 nathanieldeal nckjrvs neutralthoughts nexy_dre nick_persad nietzschesolo nisaanjani nucliweb nuraika nzcode oguzhan_aktepe ok oykun perte peterme philiplocke polovecn preshit rafaelks rem rgourley richard_tabor riklomas ripplemdk ritu rogie romeeo80 rosspw rssems rtaibah ryanbattles salleedesign santipajonok sauro sdw seannieuwoudt sethsandler shalt0ni shyrosenzweig sillyleo simobenso simplybenz sindresorhus sircookieface sortino soyjavi spiltmilkstudio spjpgrd steno stephane stoilovskikh stylecampaign su superjunaid suprb sydlawrence tajim talhaconcepts tdominey teabass teclaro teleject th3ya0vi thaume theastronuts themadray therealmarvin thierrykoblentz timmillwood timoni tofslie tomaslau tonychester tonypeterson tonystubblebine towhidzaman trek trevoredenton tsoulichakib tutvid tvrdek twikito uxceo vinthomas vista vladarbatov vladzima vocino whale why_this wietseneven wiseacre woopsdez yakimchuk_v yeco yesangga_ zack415 zakiwarfel zeldman _arashasghari _everaldo _hartjeg _victa
10
- )
8
+
9
+ AVATARS = %w(3en 9lessons aaroni abbsol abecherian abinav_t abn abrodo adellecharles adhamdannaway admod adnanzulkarnain ahmetalpbalkan aigarssilkalns akifyaldir alexcican alexcwilliams alexvanderzon allisongrayce andretacuyan andrewaashen andyvitale angelceballos annapickard arashmil arminophen artful_addict atariboy azielsilas bartonsmith beacrea beastydesign bellbells benhowdle bermonpainter BillSKenney bmosk9 boheme bradmca brad_frost brajeshwar bramk brynn burakdonertas calebogden cameronolivier catarino cbillins cdharrison celikovic cemshid chadengle Chakintosh choblab chrislove claudioguglieri cmozzati codymclain commadelimited connor_gaunt cristianovalim csswizardry c_southam dakshbhagya danbenoni dancounsell danielhaim dannpetty darrellwhitelaw davidburlton dingyi dotmariusz do_fox dreamreflex dustin dustinlamont dwaldron dzyngiri edwardsanchez emirik enda engle eomerx erondu ersinkoc esthercrawford evagiselle evantahler faulknermusic felipebsb felipenogs fffabs flamekaizar fling florianmascaro flylyf fran6 geekandco geoffrey_crofte glif graafdemichiel guiiipontes hchicha himanshuchanda holdenweb horaciosoares hridoyfaisal hvpandya iam_benn iconfinder idiot indianguru insistimento itsjonq jadlimcaco jamiecoulter89 jasongraphix jbrooksuk jessedodds jfkingsley jina jinuem jlantunez jm_denis jodyferry joelbirch47 jonatan jonohunt jorgebarahona joshaustin joshhemsley joshuasortino jsa jturmel k kaibrach kastov_yury kenansulayman kerem kfriedson kolage kosmar krystynheide kurtvarner ladylexy leonardopanhan linkibol lobanovskiy lucaorio_ ludensk mackenziechild madebyivor madedigital maducao marcogomes marcosmoralez mathelme mattchevy mattsince87 mauricioangulo mehdiayache mghoz michzen mijustin mikeluby mikeschmidt minipunk mist3r_c0r3 mizko mko mlane mrjohnwalker msurguy muchanis mutlu82 mxmtsk myusuf3 nathanieldeal nckjrvs neutralthoughts nexy_dre nick_persad nietzschesolo nisaanjani nucliweb nuraika nzcode oguzhan_aktepe ok oykun perte peterme philiplocke polovecn preshit rafaelks rem rgourley richard_tabor riklomas ripplemdk ritu rogie romeeo80 rosspw rssems rtaibah ryanbattles salleedesign santipajonok sauro sdw seannieuwoudt sethsandler shalt0ni shyrosenzweig sillyleo simobenso simplybenz sindresorhus sircookieface sortino soyjavi spiltmilkstudio spjpgrd steno stephane stoilovskikh stylecampaign su superjunaid suprb sydlawrence tajim talhaconcepts tdominey teabass teclaro teleject th3ya0vi thaume theastronuts themadray therealmarvin thierrykoblentz timmillwood timoni tofslie tomaslau tonychester tonypeterson tonystubblebine towhidzaman trek trevoredenton tsoulichakib tutvid tvrdek twikito uxceo vinthomas vista vladarbatov vladzima vocino whale why_this wietseneven wiseacre woopsdez yakimchuk_v yeco yesangga_ zack415 zakiwarfel zeldman _arashasghari _everaldo _hartjeg _victa).freeze
11
10
 
12
11
  def self.pick
13
12
  "https://s3.amazonaws.com/uifaces/faces/twitter/#{AVATARS.sample}/128.jpg"
@@ -33,7 +33,7 @@ module Mockdata
33
33
  ["Ocala", 29.209713225868185, -82.15576171875],
34
34
  ["Miami", 25.809781975840405, -80.255126953125],
35
35
  ["San Diego", 32.74108223150125, -117.169189453125],
36
- ["San Francisco", 37.69251435532741, -122.50854492187]
36
+ ["San Francisco", 37.69251435532741, -122.50854492187].freeze
37
37
  ]
38
38
 
39
39
  # City, Country
@@ -157,14 +157,14 @@ module Mockdata
157
157
  ["Vladivostok", "Russia"],
158
158
  ["Warsaw", "Poland"],
159
159
  ["Wellington", "New Zealand"],
160
- ["Zürich", "Switzerland"]
160
+ ["Zürich", "Switzerland"].freeze
161
161
  ]
162
162
 
163
- STREETNAMES = [ "Abbywood Street", "Alice Cove", "Allendale Rise", "Annapolis Garth East", "Aquistapace Quadrant South", "Asylum Arch Park", "Back Wood Quay", "Bedivere Townline", "Blackthorn Bay East", "Blue Brook Crescent North", "Canyon Brook Place", "Chippetts Viaduct", "Cress Plaza", "Dormity Terrace", "East Baslow Viaduct", "East Breck Boulevard", "East Coonanbarra Causeway", "East Falcon Lakes", "East Fire Barn Nook", "East Shepley Hill", "East Swamp Knoll", "East Western Mine Knoll", "Equine Spur South", "Everest Quay", "Folsom Park", "Franzen Court", "Glendon Mall", "Gold Yarrow Southwest", "Hazelmead Bay", "Howell Mountain Mall", "Keb Gate", "Knight Arch Walk Northeast", "Lake Central Heights", "Lark Hill Northeast", "Manor Park", "Mile End", "Morninglo Mall", "Muirkirk Meadows Canyon", "North Amberleaze Heights", "North Bound Quay", "North Brockett Mews", "North Dunford Grove", "North Jim Elder Pike", "North Keary Gardens", "North Kelveden Gate", "North Monumental Croft", "North Newhill Street", "North Southend Vale", "North Tonge Croft", "North Willetts Crossing", "North Willow Grove", "Northeast Buttons Quadrant", "Northeast Highcliffe Trace", "Northeast Lower Main", "Northeast Rowhill Grove", "Northeast Saint Edwards Road", "Northeast Tree Side", "Northwest Freemans Heights", "Northwest Greenwich Church Court", "Northwest Screvin Pathway", "Northwest Soscol Creek", "Norvegia Terrace", "Pacella Canyon", "Pheasant Run Bay", "Piggotts Loop", "Sanfoin Canyon", "Scott Hill Spur West", "South Annuskemunnica Croft", "South Del Oro Heights", "South Everdell Way", "South Grouse Run Bay", "South Mystique Grade", "South Onekema Arcade", "South Sugar Valley", "South Windy Cove", "Southeast Reld Grade", "Southeast Runsell Promenade", "Southwest Saint Thomas Church", "Tabler Place", "Thundersley Church", "Timm Dell", "Tonge Square", "Tootal Road", "Touch Spur", "Underriver House", "Wellsboro Dell", "West Bay Side Drive", "West Carriger Quadrant", "West Cheryll Turnpike", "West Curry Creek Loop", "West Golden Harvest Nook", "West Hosford Road", "West Huntzinger Lawn", "West Magruder Way", "West Mamor Walk", "West Milbourne Gardens", "West Morris Park", "West Mount Tabor", "West Ovaltine Knoll", "Wyndora Circle" ]
163
+ STREETNAMES = [ "Abbywood Street", "Alice Cove", "Allendale Rise", "Annapolis Garth East", "Aquistapace Quadrant South", "Asylum Arch Park", "Back Wood Quay", "Bedivere Townline", "Blackthorn Bay East", "Blue Brook Crescent North", "Canyon Brook Place", "Chippetts Viaduct", "Cress Plaza", "Dormity Terrace", "East Baslow Viaduct", "East Breck Boulevard", "East Coonanbarra Causeway", "East Falcon Lakes", "East Fire Barn Nook", "East Shepley Hill", "East Swamp Knoll", "East Western Mine Knoll", "Equine Spur South", "Everest Quay", "Folsom Park", "Franzen Court", "Glendon Mall", "Gold Yarrow Southwest", "Hazelmead Bay", "Howell Mountain Mall", "Keb Gate", "Knight Arch Walk Northeast", "Lake Central Heights", "Lark Hill Northeast", "Manor Park", "Mile End", "Morninglo Mall", "Muirkirk Meadows Canyon", "North Amberleaze Heights", "North Bound Quay", "North Brockett Mews", "North Dunford Grove", "North Jim Elder Pike", "North Keary Gardens", "North Kelveden Gate", "North Monumental Croft", "North Newhill Street", "North Southend Vale", "North Tonge Croft", "North Willetts Crossing", "North Willow Grove", "Northeast Buttons Quadrant", "Northeast Highcliffe Trace", "Northeast Lower Main", "Northeast Rowhill Grove", "Northeast Saint Edwards Road", "Northeast Tree Side", "Northwest Freemans Heights", "Northwest Greenwich Church Court", "Northwest Screvin Pathway", "Northwest Soscol Creek", "Norvegia Terrace", "Pacella Canyon", "Pheasant Run Bay", "Piggotts Loop", "Sanfoin Canyon", "Scott Hill Spur West", "South Annuskemunnica Croft", "South Del Oro Heights", "South Everdell Way", "South Grouse Run Bay", "South Mystique Grade", "South Onekema Arcade", "South Sugar Valley", "South Windy Cove", "Southeast Reld Grade", "Southeast Runsell Promenade", "Southwest Saint Thomas Church", "Tabler Place", "Thundersley Church", "Timm Dell", "Tonge Square", "Tootal Road", "Touch Spur", "Underriver House", "Wellsboro Dell", "West Bay Side Drive", "West Carriger Quadrant", "West Cheryll Turnpike", "West Curry Creek Loop", "West Golden Harvest Nook", "West Hosford Road", "West Huntzinger Lawn", "West Magruder Way", "West Mamor Walk", "West Milbourne Gardens", "West Morris Park", "West Mount Tabor", "West Ovaltine Knoll", "Wyndora Circle" ].freeze
164
164
 
165
- ISLANDS = [ "Boh Cay", "Braduts Ait", "Cex Archipelago", "Clons Cay", "Flajelt Ait", "Flyhx Enclave", "Fruzet Chain", "Glakilk Ait", "Gniwohst Atoll", "Golst Cay", "Klysist Enclave", "Knecur Archipelago", "Kudyps Chain", "Mault Ait", "Nuss Chain", "Pegh Archipelago", "Prens Archipelago", "Qets Archipelago", "Qroaht Cay", "Ruwth Chain", "Sorb Cay", "The Arctic Chain", "The Asylum Cay", "The Asylum Skerry", "The Bursting Key", "The Calm Islands", "The Coral Cay", "The Dangerous Islet", "The Depraved Islet", "The Dry Chain", "The Empty Haven", "The Flowing Ait", "The Harmonious Cay", "The Neglected Holm", "The Paradise Islands", "The Perfume Islet", "The Pleasant Islands", "The Pufferfish Archipelago", "The Quiet Chain", "The Rocky Islet", "The Stingray Haven", "Tlot Cay", "Ufann Chain", "Vleb Archipelago", "Vlobehx Cay", "Vrozirk Cay", "Wuast Chain", "Yl Enclave", "Yralf Enclave", "Zon Cay" ]
165
+ ISLANDS = [ "Boh Cay", "Braduts Ait", "Cex Archipelago", "Clons Cay", "Flajelt Ait", "Flyhx Enclave", "Fruzet Chain", "Glakilk Ait", "Gniwohst Atoll", "Golst Cay", "Klysist Enclave", "Knecur Archipelago", "Kudyps Chain", "Mault Ait", "Nuss Chain", "Pegh Archipelago", "Prens Archipelago", "Qets Archipelago", "Qroaht Cay", "Ruwth Chain", "Sorb Cay", "The Arctic Chain", "The Asylum Cay", "The Asylum Skerry", "The Bursting Key", "The Calm Islands", "The Coral Cay", "The Dangerous Islet", "The Depraved Islet", "The Dry Chain", "The Empty Haven", "The Flowing Ait", "The Harmonious Cay", "The Neglected Holm", "The Paradise Islands", "The Perfume Islet", "The Pleasant Islands", "The Pufferfish Archipelago", "The Quiet Chain", "The Rocky Islet", "The Stingray Haven", "Tlot Cay", "Ufann Chain", "Vleb Archipelago", "Vlobehx Cay", "Vrozirk Cay", "Wuast Chain", "Yl Enclave", "Yralf Enclave", "Zon Cay" ].freeze
166
166
 
167
- AIRPORTS = [ "Akron Airport", "Baptist Regional Health Center Heliport", "Berlin Regional Airport", "Birds Nest Airport", "Bleakley Ranch Airport", "BP Minerals-Copperton Heliport", "Bridger Creek Airport", "Bush Airport", "Butler Farm Show Airport", "Canyon Lake Airport", "Centre-Piedmont-Cherokee County Regional Airport", "Chandler Field Airport", "Cmelak Field Airport", "Community Hospital of Ottawa Heliport", "Converse Farm Landing Strip", "Crawford Memorial Hospital Heliport", "Culberson County Airport", "Cumming Triangle Landing Area", "D F C H Heliport", "Darrah Air Park", "De Leon Municipal Airport", "Deer Run Airport", "Dover Air Force Base", "Doyles Landing Strip", "East Side Airport", "Fendley Airport", "Fess Landing Strip", "Fly in Ranches Airport", "Flying T Airport", "Francis Peak Heliport", "Frizzell Landing Strip", "Front Royal-Warren County Airport", "Funk Field", "Gage Airport", "Goacher Airport", "Greenville Airport", "Hayes Airport", "Herr Mountain Airport", "Highland View Field Airport", "Hilliard's Private Airport", "Honeoye Falls Airport", "Hornady Ranch Airport", "Hot Springs Municipal Airport", "Houston Oil and Minerals Port Bolivar Number 2 Heliport", "Hutson Airfield", "Iberlin Ranch Airport Nr 3", "Idle Hour Airport", "Johnson Airport", "Kernville Heliport", "Kyles Airport", "Lamb's Field Airport", "Laurens County Airport", "Luhrs Landing Strip", "Madison County Airport", "McCall Memorial Hospital Heliport", "Medcalf Field Airport", "Metz Landing Strip", "Mike's Ag Air Airport", "Moore Creek Airport", "Moore Ranch Airport", "Morris Field Airport", "Mount Comfort Airpark", "Newton City/County Airport", "North Valley Landing Strip", "Olsen Airport", "Owen Field Airport", "Pepeekeo Airstrip", "Pocahontas Municipal Airport", "Ralph E. Daniels Airport", "Ray Ranch Airport", "RI An Anaheim Helistop G/l B/201", "Rockwell Facility Heliport", "Rota Airport", "Ruidoso Municipal Airport", "Russells Ranch Airport", "Salem Memorial Hospital Heliport", "Santa Barbara Municipal Airport", "SCE Ridgecrest Service Center Heliport", "SCE Tiffany Pines Heliport", "Schiff Airport", "Schuster Field", "Siller Bros Inc Airport", "Stoval Airfield", "Strawberry Acres Airport", "Svitak Airport", "Swanson Ranch 3 Airport", "Taylor Field", "Timber Line Airpark", "Toroweap Landing Strip", "Trails End Airstrip", "UCDMC Heliport", "Vac Heliport", "Wales Airport", "Walls Airport", "Waverly Landing Airport", "Wenlock Crossing Heliport", "Willow Run Airport", "Wilmington Country Club Airport", "Yakutat Seaplane Base" ]
167
+ AIRPORTS = [ "Akron Airport", "Baptist Regional Health Center Heliport", "Berlin Regional Airport", "Birds Nest Airport", "Bleakley Ranch Airport", "BP Minerals-Copperton Heliport", "Bridger Creek Airport", "Bush Airport", "Butler Farm Show Airport", "Canyon Lake Airport", "Centre-Piedmont-Cherokee County Regional Airport", "Chandler Field Airport", "Cmelak Field Airport", "Community Hospital of Ottawa Heliport", "Converse Farm Landing Strip", "Crawford Memorial Hospital Heliport", "Culberson County Airport", "Cumming Triangle Landing Area", "D F C H Heliport", "Darrah Air Park", "De Leon Municipal Airport", "Deer Run Airport", "Dover Air Force Base", "Doyles Landing Strip", "East Side Airport", "Fendley Airport", "Fess Landing Strip", "Fly in Ranches Airport", "Flying T Airport", "Francis Peak Heliport", "Frizzell Landing Strip", "Front Royal-Warren County Airport", "Funk Field", "Gage Airport", "Goacher Airport", "Greenville Airport", "Hayes Airport", "Herr Mountain Airport", "Highland View Field Airport", "Hilliard's Private Airport", "Honeoye Falls Airport", "Hornady Ranch Airport", "Hot Springs Municipal Airport", "Houston Oil and Minerals Port Bolivar Number 2 Heliport", "Hutson Airfield", "Iberlin Ranch Airport Nr 3", "Idle Hour Airport", "Johnson Airport", "Kernville Heliport", "Kyles Airport", "Lamb's Field Airport", "Laurens County Airport", "Luhrs Landing Strip", "Madison County Airport", "McCall Memorial Hospital Heliport", "Medcalf Field Airport", "Metz Landing Strip", "Mike's Ag Air Airport", "Moore Creek Airport", "Moore Ranch Airport", "Morris Field Airport", "Mount Comfort Airpark", "Newton City/County Airport", "North Valley Landing Strip", "Olsen Airport", "Owen Field Airport", "Pepeekeo Airstrip", "Pocahontas Municipal Airport", "Ralph E. Daniels Airport", "Ray Ranch Airport", "RI An Anaheim Helistop G/l B/201", "Rockwell Facility Heliport", "Rota Airport", "Ruidoso Municipal Airport", "Russells Ranch Airport", "Salem Memorial Hospital Heliport", "Santa Barbara Municipal Airport", "SCE Ridgecrest Service Center Heliport", "SCE Tiffany Pines Heliport", "Schiff Airport", "Schuster Field", "Siller Bros Inc Airport", "Stoval Airfield", "Strawberry Acres Airport", "Svitak Airport", "Swanson Ranch 3 Airport", "Taylor Field", "Timber Line Airpark", "Toroweap Landing Strip", "Trails End Airstrip", "UCDMC Heliport", "Vac Heliport", "Wales Airport", "Walls Airport", "Waverly Landing Airport", "Wenlock Crossing Heliport", "Willow Run Airport", "Wilmington Country Club Airport", "Yakutat Seaplane Base" ].freeze
168
168
 
169
169
  def self.city_latitude_longitude
170
170
  LOCATIONS.sample
@@ -2,15 +2,15 @@ module Mockdata
2
2
  class Names
3
3
 
4
4
  # Contact erik.van.eykelen@bitgain.com if you think I violate a trademark
5
- COMPANY_NAMES = [ "Aceredcode", "Babbletweet BV", "Bamhouse Holding", "Bitoptic, Inc.", "Blackchilla Works", "Bluelope.com", "Brightsquawk AS", "Bubblememo Ltd", "Buzzarray Ltd", "Canware", "Codecode Limited", "Conejikix GmbH", "Doncone Holding", "Donstrip", "Drip-taxon SA", "Duoin Limited", "Dynacable Holding", "Fixfind Limited", "Flipgram Corporation", "Freeing GmbH", "Freshcon Limited", "Freshhigh SA", "Ganjaice Ltd", "Geotex", "Gigasink SA", "Goodjob BV", "Icezap SA", "Jayholding", "Joycon AS", "Joytam Limited", "Kantone AS", "Kintechnology Holding", "Lagolux", "Lamace Limited", "Lamuniway Limited", "Latnix Holding", "Mediafix Limited", "Medialane GmbH", "Mednamfax SA", "Newelectrics", "O-zoom Holding", "Objectfiber GmbH", "Ontotax SA", "Physzim VOF", "Planetware Ltd", "Plexcorporation", "Purplegale Limited", "Ran-core GmbH", "Riffpoint Corp", "Rontom GmbH", "Round-lux", "Roundtex SA", "Sailware", "Snapath, Inc. ", "Stanelectrics Ltd", "Streettouch", "Superquote Holding", "Tampace Holding", "Tamphouse Holding", "Tech-lab GmbH", "Techelectrics", "Temphouse Holding", "Unabiotom Ltd", "Unacity Holding", "Vaiacom Limited", "Volhex Holding", "Warehex Works", "Yellowolf.com", "Zimgeokix" ]
5
+ COMPANY_NAMES = [ "Aceredcode", "Babbletweet BV", "Bamhouse Holding", "Bitoptic, Inc.", "Blackchilla Works", "Bluelope.com", "Brightsquawk AS", "Bubblememo Ltd", "Buzzarray Ltd", "Canware", "Codecode Limited", "Conejikix GmbH", "Doncone Holding", "Donstrip", "Drip-taxon SA", "Duoin Limited", "Dynacable Holding", "Fixfind Limited", "Flipgram Corporation", "Freeing GmbH", "Freshcon Limited", "Freshhigh SA", "Ganjaice Ltd", "Geotex", "Gigasink SA", "Goodjob BV", "Icezap SA", "Jayholding", "Joycon AS", "Joytam Limited", "Kantone AS", "Kintechnology Holding", "Lagolux", "Lamace Limited", "Lamuniway Limited", "Latnix Holding", "Mediafix Limited", "Medialane GmbH", "Mednamfax SA", "Newelectrics", "O-zoom Holding", "Objectfiber GmbH", "Ontotax SA", "Physzim VOF", "Planetware Ltd", "Plexcorporation", "Purplegale Limited", "Ran-core GmbH", "Riffpoint Corp", "Rontom GmbH", "Round-lux", "Roundtex SA", "Sailware", "Snapath, Inc. ", "Stanelectrics Ltd", "Streettouch", "Superquote Holding", "Tampace Holding", "Tamphouse Holding", "Tech-lab GmbH", "Techelectrics", "Temphouse Holding", "Unabiotom Ltd", "Unacity Holding", "Vaiacom Limited", "Volhex Holding", "Warehex Works", "Yellowolf.com", "Zimgeokix" ].freeze
6
6
 
7
- BUSINESS_TYPES = [ "Adhesive Manufacturing", "Agricultural Implement Manufacturing", "All Other Fabricated Metal Product Manufacturing", "All Other Waste Management Services", "Beer and Ale Merchant Wholesalers", "Book Stores and News Dealers", "Carpet and Upholstery Cleaning Services", "Cemeteries and Crematories", "Citrus (except Orange) Groves", "Clothing Accessories Stores", "Coal and Other Mineral and Ore Merchant Wholesalers", "Commercial and Service Industry Machinery Manufacturing", "Computer Training", "Construction Machinery Manufacturing", "Couriers and Express Delivery Services", "Dairy Product (except Dried or Canned) Merchant Wholesalers", "Distilleries", "Drafting Services", "Electrical Contractors and Other Wiring Installation Contractors", "Environmental Consulting Services", "Family Clothing Stores", "Finish Carpentry Contractors", "Fishing", "Footwear and Leather Goods Repair", "Fresh Fruit and Vegetable Merchant Wholesalers", "Fruit and Vegetable Canning, Pickling, and Drying", "General Freight Trucking, Local", "General Line Grocery Merchant Wholesalers", "Glass and Glazing Contractors", "Gypsum Product Manufacturing", "Hardware Merchant Wholesalers", "Hardware Stores", "Hay Farming", "Home and Garden Equipment and Appliance Repair and Maintenance", "Home Furnishing Merchant Wholesalers", "Interior Design Services", "International Affairs", "Investment Advice", "Iron and Steel Mills and Ferroalloy Manufacturing", "Labor Unions and Similar Labor Organizations", "Laminated Plastics Plate, Sheet (except Packaging), and Shape Manufacturing", "Language Schools", "Legislative Bodies", "Limousine Service", "Machine Shops", "Manufactured (Mobile) Home Dealers", "Meat Markets", "Medical and Diagnostic Laboratories", "Metal Valve Manufacturing", "Motor Vehicle Electrical and Electronic Equipment Manufacturing", "Motor Vehicle Gasoline Engine and Engine Parts Manufacturing", "Motor Vehicle Parts (Used) Merchant Wholesalers", "Narrow Fabric Mills and Schiffli Machine Embroidery", "Nonferrous Metal (except Aluminum) Smelting and Refining", "Office Machinery and Equipment Rental and Leasing", "Offices of Physical, Occupational and Speech Therapists, and Audiologists", "Other Building Material Dealers", "Other Clothing Stores", "Other Farm Product Raw Material Merchant Wholesalers", "Other Legal Services", "Other Miscellaneous Durable Goods Merchant Wholesalers", "Other Motor Vehicle Parts Manufacturing", "Other Petroleum and Coal Products Manufacturing", "Other Similar Organizations (except Business, Professional, Labor, and Political Organizations)", "Other Sound Recording Industries", "Other Specialty Food Stores", "Other Transportation Equipment Manufacturing", "Other Traveler Accommodation", "Other Warehousing and Storage", "Paint and Coating Manufacturing", "Petroleum and Petroleum Products Merchant Wholesalers (except Bulk Stations and Terminals)", "Plastics Bottle Manufacturing", "Plastics Packaging Materials and Unlaminated Film and Sheet Manufacturing", "Portfolio Management", "Professional Organizations", "Promoters of Performing Arts, Sports, and Similar Events with Facilities", "Public Finance Activities", "Radio and Television Broadcasting and Wireless Communications Equipment Manufacturing", "Regulation of Agricultural Marketing and Commodities", "Research and Development in the Physical, Engineering, and Life Sciences", "Rooming and Boarding Houses", "Shoe Stores", "Sign Manufacturing", "Soap and Cleaning Compound Manufacturing", "Stationery and Office Supplies Merchant Wholesalers", "Telephone Apparatus Manufacturing", "Timber Tract Operations", "Tire and Tube Merchant Wholesalers", "Tobacco Stemming and Redrying", "Transportation Equipment and Supplies (except Motor Vehicle) Merchant Wholesalers", "Truck, Utility Trailer, and RV (Recreational Vehicle) Rental and Leasing", "Turned Product and Screw, Nut, and Bolt Manufacturing", "Vending Machine Operators", "Veneer, Plywood, and Engineered Wood Product Manufacturing", "Waste Collection" ]
7
+ BUSINESS_TYPES = [ "Adhesive Manufacturing", "Agricultural Implement Manufacturing", "All Other Fabricated Metal Product Manufacturing", "All Other Waste Management Services", "Beer and Ale Merchant Wholesalers", "Book Stores and News Dealers", "Carpet and Upholstery Cleaning Services", "Cemeteries and Crematories", "Citrus (except Orange) Groves", "Clothing Accessories Stores", "Coal and Other Mineral and Ore Merchant Wholesalers", "Commercial and Service Industry Machinery Manufacturing", "Computer Training", "Construction Machinery Manufacturing", "Couriers and Express Delivery Services", "Dairy Product (except Dried or Canned) Merchant Wholesalers", "Distilleries", "Drafting Services", "Electrical Contractors and Other Wiring Installation Contractors", "Environmental Consulting Services", "Family Clothing Stores", "Finish Carpentry Contractors", "Fishing", "Footwear and Leather Goods Repair", "Fresh Fruit and Vegetable Merchant Wholesalers", "Fruit and Vegetable Canning, Pickling, and Drying", "General Freight Trucking, Local", "General Line Grocery Merchant Wholesalers", "Glass and Glazing Contractors", "Gypsum Product Manufacturing", "Hardware Merchant Wholesalers", "Hardware Stores", "Hay Farming", "Home and Garden Equipment and Appliance Repair and Maintenance", "Home Furnishing Merchant Wholesalers", "Interior Design Services", "International Affairs", "Investment Advice", "Iron and Steel Mills and Ferroalloy Manufacturing", "Labor Unions and Similar Labor Organizations", "Laminated Plastics Plate, Sheet (except Packaging), and Shape Manufacturing", "Language Schools", "Legislative Bodies", "Limousine Service", "Machine Shops", "Manufactured (Mobile) Home Dealers", "Meat Markets", "Medical and Diagnostic Laboratories", "Metal Valve Manufacturing", "Motor Vehicle Electrical and Electronic Equipment Manufacturing", "Motor Vehicle Gasoline Engine and Engine Parts Manufacturing", "Motor Vehicle Parts (Used) Merchant Wholesalers", "Narrow Fabric Mills and Schiffli Machine Embroidery", "Nonferrous Metal (except Aluminum) Smelting and Refining", "Office Machinery and Equipment Rental and Leasing", "Offices of Physical, Occupational and Speech Therapists, and Audiologists", "Other Building Material Dealers", "Other Clothing Stores", "Other Farm Product Raw Material Merchant Wholesalers", "Other Legal Services", "Other Miscellaneous Durable Goods Merchant Wholesalers", "Other Motor Vehicle Parts Manufacturing", "Other Petroleum and Coal Products Manufacturing", "Other Similar Organizations (except Business, Professional, Labor, and Political Organizations)", "Other Sound Recording Industries", "Other Specialty Food Stores", "Other Transportation Equipment Manufacturing", "Other Traveler Accommodation", "Other Warehousing and Storage", "Paint and Coating Manufacturing", "Petroleum and Petroleum Products Merchant Wholesalers (except Bulk Stations and Terminals)", "Plastics Bottle Manufacturing", "Plastics Packaging Materials and Unlaminated Film and Sheet Manufacturing", "Portfolio Management", "Professional Organizations", "Promoters of Performing Arts, Sports, and Similar Events with Facilities", "Public Finance Activities", "Radio and Television Broadcasting and Wireless Communications Equipment Manufacturing", "Regulation of Agricultural Marketing and Commodities", "Research and Development in the Physical, Engineering, and Life Sciences", "Rooming and Boarding Houses", "Shoe Stores", "Sign Manufacturing", "Soap and Cleaning Compound Manufacturing", "Stationery and Office Supplies Merchant Wholesalers", "Telephone Apparatus Manufacturing", "Timber Tract Operations", "Tire and Tube Merchant Wholesalers", "Tobacco Stemming and Redrying", "Transportation Equipment and Supplies (except Motor Vehicle) Merchant Wholesalers", "Truck, Utility Trailer, and RV (Recreational Vehicle) Rental and Leasing", "Turned Product and Screw, Nut, and Bolt Manufacturing", "Vending Machine Operators", "Veneer, Plywood, and Engineered Wood Product Manufacturing", "Waste Collection" ].freeze
8
8
 
9
- PROJECT_NAMES = [ "Anaconda Warp", "Bleeding Moon", "Brave Neutron", "Steep Curb", "Cool Artificial", "Dead Crystal", "Electric Spark", "Front Street", "Frozen Sunshine", "Furious Skunk", "Global Yard", "Green Emerald", "Gray Vulture", "Insane Steel", "Ivory Tuba", "Lucky Morning", "Moving Vegetable", "Navy Mountain", "Mars Mission", "Next Square", "Maroon Nitrogen", "Northernmost Galaxy", "Olive Monkey", "Permanent Albatross", "Pure Spider", "Purple Panther", "Ice Ruby", "Remote Cloud", "Running Creek", "Rusty Beacon", "Serious Summer", "Sienna Compass", "Stony Sound", "Straw Plastic", "Swift Burst", "Tainted Torpedo", "Tasty Comic" ]
9
+ PROJECT_NAMES = [ "Anaconda Warp", "Bleeding Moon", "Brave Neutron", "Steep Curb", "Cool Artificial", "Dead Crystal", "Electric Spark", "Front Street", "Frozen Sunshine", "Furious Skunk", "Global Yard", "Green Emerald", "Gray Vulture", "Insane Steel", "Ivory Tuba", "Lucky Morning", "Moving Vegetable", "Navy Mountain", "Mars Mission", "Next Square", "Maroon Nitrogen", "Northernmost Galaxy", "Olive Monkey", "Permanent Albatross", "Pure Spider", "Purple Panther", "Ice Ruby", "Remote Cloud", "Running Creek", "Rusty Beacon", "Serious Summer", "Sienna Compass", "Stony Sound", "Straw Plastic", "Swift Burst", "Tainted Torpedo", "Tasty Comic" ].freeze
10
10
 
11
- HOTEL_NAMES = [ "Abundance Resort & Spa", "Apex Resort", "Aquamarine Peak Hotel & Spa", "Blizzard Hotel", "Citadel Hotel", "Cosmos Hotel & Spa", "Countryside Hotel & Spa", "Crown Manor Hotel", "Delight Resort & Spa", "Double Expanse Hotel & Spa", "Double Refuge Resort & Spa", "Elite Jewel Hotel", "Elite Sanctuary Hotel & Spa", "Elite Shore Hotel", "Elysium Resort", "Emerald Harbor Resort & Spa", "Enterprise Hotel", "Everland Resort & Spa", "Farmhouse Hotel", "Golden Fjord Hotel", "Grand Hotel", "Grand Resort & Spa", "Grand Tower Resort & Spa", "Iceberg Resort", "King's Island Hotel & Spa", "King's Palms Resort & Spa", "King's Pier Hotel & Spa", "Lunar Bay Resort", "Majestic Sanctum Resort & Spa", "Malachite Cove Resort", "Modest Residence Resort & Spa", "Noble Nebula Resort", "Oriental Resort", "Pleasant Spire Resort", "Prism Resort", "Private Oak Hotel", "Quiet Arc Hotel", "Remote Brewery Resort", "Remote Fjord Resort", "Riverside Cove Resort & Spa", "Rose Thicket Resort & Spa", "Sapphire Hotel & Spa", "Sapphire Resort", "Secret Park Hotel & Spa", "Serene Seashore Resort & Spa", "Silver Echo Hotel", "Slumber Resort & Spa", "Smile Resort", "Spring Grotto Hotel & Spa", "Spring Petal Resort", "Sunset Ocean Hotel", "Sunset Universe Resort", "Supreme Emperor Hotel", "Supreme Seashore Hotel & Spa", "Traveller Resort & Spa", "Triumph Hotel & Spa", "Voyager Hotel", "Western Cosmos Hotel", "White Shore Resort & Spa", "Yesteryear Resort" ]
11
+ HOTEL_NAMES = [ "Abundance Resort & Spa", "Apex Resort", "Aquamarine Peak Hotel & Spa", "Blizzard Hotel", "Citadel Hotel", "Cosmos Hotel & Spa", "Countryside Hotel & Spa", "Crown Manor Hotel", "Delight Resort & Spa", "Double Expanse Hotel & Spa", "Double Refuge Resort & Spa", "Elite Jewel Hotel", "Elite Sanctuary Hotel & Spa", "Elite Shore Hotel", "Elysium Resort", "Emerald Harbor Resort & Spa", "Enterprise Hotel", "Everland Resort & Spa", "Farmhouse Hotel", "Golden Fjord Hotel", "Grand Hotel", "Grand Resort & Spa", "Grand Tower Resort & Spa", "Iceberg Resort", "King's Island Hotel & Spa", "King's Palms Resort & Spa", "King's Pier Hotel & Spa", "Lunar Bay Resort", "Majestic Sanctum Resort & Spa", "Malachite Cove Resort", "Modest Residence Resort & Spa", "Noble Nebula Resort", "Oriental Resort", "Pleasant Spire Resort", "Prism Resort", "Private Oak Hotel", "Quiet Arc Hotel", "Remote Brewery Resort", "Remote Fjord Resort", "Riverside Cove Resort & Spa", "Rose Thicket Resort & Spa", "Sapphire Hotel & Spa", "Sapphire Resort", "Secret Park Hotel & Spa", "Serene Seashore Resort & Spa", "Silver Echo Hotel", "Slumber Resort & Spa", "Smile Resort", "Spring Grotto Hotel & Spa", "Spring Petal Resort", "Sunset Ocean Hotel", "Sunset Universe Resort", "Supreme Emperor Hotel", "Supreme Seashore Hotel & Spa", "Traveller Resort & Spa", "Triumph Hotel & Spa", "Voyager Hotel", "Western Cosmos Hotel", "White Shore Resort & Spa", "Yesteryear Resort" ].freeze
12
12
 
13
- OCCUPATIONS = [ "Airport Tower Controller", "Anger Control Counselor", "Arch-Support Maker", "Assault Boat Coxswain", "Assistant Paralegal", "Audio Recording Engineer", "Bike Mechanic", "Blast Setter", "Building Architect", "Cantor", "Car Wash Attendant", "Cargo Router", "Certified Dental Assistant", "Certified Pharmacist Assistant", "Chemical Engineering Technician", "Climatology Professor", "Computer Repair Technician", "Computer Systems Analyst", "Cosmetology Professor", "Dairy Equipment Mechanic", "Deep Tissue Massage Therapist", "Direct Mail Clerk", "Efficiency Engineer", "Engraver", "Enterprise Systems Engineer", "Epidemiology Investigator", "Extension Service Advisor", "Farrowing Manager", "Fighting Vehicle Infantryman", "Film Printer", "Floral Artist", "Forest Pathology Professor", "Forest Resources Professor", "Glass Artist", "Healthcare Social Worker", "Highway Engineer", "Histologic Technician", "Honest John Rocket Crew Member", "Hotel Registration Clerk", "Journey Level Plasterer", "Leather Lacer", "Library and Information Science Professor", "Liquid Waste Treatment Plant Operator", "Loan Teller", "Marquetry Worker", "Missile Technician", "Motor Winder", "Music Therapist", "Natural Resources Technician", "Network Intelligence Analyst Superintendent", "Non Destructive Testing Underwater Welder", "Outboard System Operator", "Piccoloist", "Pickle House Operator", "Plating Machine Operator", "Postal Service Window Clerk", "Postsecondary Career and Technical Education Teacher", "Railroad Car Cleaner", "Ramp Service Agent", "Records Management Director", "Rehabilitation Services Aide", "Relationship Counselor", "Rustic Terrazzo Setter", "Screw Machine Operator", "Sonar Watchstander", "Specifications Writer", "Student Success Counselor", "Submarine Vertical Launch System Tube Maintenance Technician", "Tenon Operator", "Timber Management Specialist", "Trial Attorney", "Voice Writing Reporter", "Wardrobe Dresser", "Winder Operator" ]
13
+ OCCUPATIONS = [ "Airport Tower Controller", "Anger Control Counselor", "Arch-Support Maker", "Assault Boat Coxswain", "Assistant Paralegal", "Audio Recording Engineer", "Bike Mechanic", "Blast Setter", "Building Architect", "Cantor", "Car Wash Attendant", "Cargo Router", "Certified Dental Assistant", "Certified Pharmacist Assistant", "Chemical Engineering Technician", "Climatology Professor", "Computer Repair Technician", "Computer Systems Analyst", "Cosmetology Professor", "Dairy Equipment Mechanic", "Deep Tissue Massage Therapist", "Direct Mail Clerk", "Efficiency Engineer", "Engraver", "Enterprise Systems Engineer", "Epidemiology Investigator", "Extension Service Advisor", "Farrowing Manager", "Fighting Vehicle Infantryman", "Film Printer", "Floral Artist", "Forest Pathology Professor", "Forest Resources Professor", "Glass Artist", "Healthcare Social Worker", "Highway Engineer", "Histologic Technician", "Honest John Rocket Crew Member", "Hotel Registration Clerk", "Journey Level Plasterer", "Leather Lacer", "Library and Information Science Professor", "Liquid Waste Treatment Plant Operator", "Loan Teller", "Marquetry Worker", "Missile Technician", "Motor Winder", "Music Therapist", "Natural Resources Technician", "Network Intelligence Analyst Superintendent", "Non Destructive Testing Underwater Welder", "Outboard System Operator", "Piccoloist", "Pickle House Operator", "Plating Machine Operator", "Postal Service Window Clerk", "Postsecondary Career and Technical Education Teacher", "Railroad Car Cleaner", "Ramp Service Agent", "Records Management Director", "Rehabilitation Services Aide", "Relationship Counselor", "Rustic Terrazzo Setter", "Screw Machine Operator", "Sonar Watchstander", "Specifications Writer", "Student Success Counselor", "Submarine Vertical Launch System Tube Maintenance Technician", "Tenon Operator", "Timber Management Specialist", "Trial Attorney", "Voice Writing Reporter", "Wardrobe Dresser", "Winder Operator" ].freeze
14
14
 
15
15
  def self.company
16
16
  COMPANY_NAMES.sample
@@ -2,34 +2,35 @@ module Mockdata
2
2
  class Numbers
3
3
 
4
4
  # random_between_min_max_inclusive(2, 3) # => 2 or 3
5
- def self.random_between_min_max_inclusive(_min, _max)
6
- rand(_min.._max)
5
+ def self.random_between_min_max_inclusive(min, max)
6
+ rand(min..max)
7
7
  end
8
8
 
9
9
  # random_between_min_max_exclusive(2, 4) # => 3
10
- def self.random_between_min_max_exclusive(_min, _max)
11
- rand(_min+1..._max)
10
+ def self.random_between_min_max_exclusive(min, max)
11
+ rand(min+1...max)
12
12
  end
13
13
 
14
14
  # random_number_array(1..3, 5) # => [2, 3, 1, 3, 1]
15
- def self.random_number_array(_range, _size)
15
+ def self.random_number_array(range, size)
16
16
  arr = []
17
- 1.upto(_size) { arr << rand(_range) }
17
+ 1.upto(size) { arr << rand(range) }
18
18
  arr
19
19
  end
20
20
 
21
21
  # choose_from_array_with_possible_duplicates([1,2,3,4], 3) # => [4, 2, 3]
22
- def self.choose_from_array_with_possible_duplicates(_arr, _size)
23
- arr = []
24
- 1.upto(_size) { arr << _arr.sample }
25
- arr
22
+ def self.choose_from_array_with_possible_duplicates(arr_in, size)
23
+ arr_out = []
24
+ 1.upto(size) { arr_out << arr_in.sample }
25
+ arr_out
26
26
  end
27
27
 
28
28
  # choose_from_array_without_duplicates([1,2,3,4], 3) # => [4, 2, 3]
29
- def self.choose_from_array_without_duplicates(_arr, _size)
30
- arr = []
31
- 1.upto(_size) { arr << _arr.delete_at(rand(_arr.length)) }
32
- arr
29
+ def self.choose_from_array_without_duplicates(arr_in, size)
30
+ arr_in = arr_in.dup
31
+ arr_out = []
32
+ 1.upto(size) { arr_out << arr_in.delete_at(rand(arr_in.length)) }
33
+ arr_out
33
34
  end
34
35
 
35
36
  end
@@ -1,21 +1,21 @@
1
1
  module Mockdata
2
2
  class People
3
3
 
4
- FIRST_NAMES = %w{ Abdullah Ahmed Aiden Alba Alberta Alfie Ali Amalia Ammar Anna Antonia Ashley Aubrey Ava Barbara Becky Bobbie Boris Burton Caden Camille Carmella Caroline Catalina Cathy Celia Charles Charlie Chloe Clara Constanza Cooper Crystal Danica Daniel David Denver Dewey Donna Doreen Elena Elizabeth Emily Emma Enzo Ethan Fabian Francisca Freja Georgina Grace Hannah Hans Harry Hasan Helena Henrik Hiroki Hiroto Hussein Hydar Ida Ines Irina Isabella Isidora Jack Jackson Jacob Jade James Jana Javiera Jayden Jennifer Jens Jessica Jessica Joanna John Johnathon Joseph Joshua Julia Julianne Junior Kaden Katharina Kathem Kei Kenji Kenjirou Kenshirou Killian Kris Lars Laura Lea Lena Leonie Liam Liliana Lily Linda Lisa Logan Lucas Lucy Ludmilla Malinda Manon Margaret Margery Maria Marina Martina Mary Mathilde Mathis Matthew Maya Meredith Mia Michael Mickey Mikayla Mindy Mitchel Muhammed Natalia Nathan Niels Noah Nolan Normand Olga Oliver Olivia Olivia Omar Patricia Peter Phyllis Randell Raphael Ren Richard Riley Robert Robert Rodrick Ruby Rudolph Sara Sarah Satoshi Shawn Sherman Sofia Sofie Sophia Sophie Staci Susan Svetlana Tatiana Tatsuhiko Thomas Tom Twila Valentina Valeria Vera Vilma William Yuto }
4
+ FIRST_NAMES = %w{ Abdullah Ahmed Aiden Alba Alberta Alfie Ali Amalia Ammar Anna Antonia Ashley Aubrey Ava Barbara Becky Bobbie Boris Burton Caden Camille Carmella Caroline Catalina Cathy Celia Charles Charlie Chloe Clara Constanza Cooper Crystal Danica Daniel David Denver Dewey Donna Doreen Elena Elizabeth Emily Emma Enzo Ethan Fabian Francisca Freja Georgina Grace Hannah Hans Harry Hasan Helena Henrik Hiroki Hiroto Hussein Hydar Ida Ines Irina Isabella Isidora Jack Jackson Jacob Jade James Jana Javiera Jayden Jennifer Jens Jessica Jessica Joanna John Johnathon Joseph Joshua Julia Julianne Junior Kaden Katharina Kathem Kei Kenji Kenjirou Kenshirou Killian Kris Lars Laura Lea Lena Leonie Liam Liliana Lily Linda Lisa Logan Lucas Lucy Ludmilla Malinda Manon Margaret Margery Maria Marina Martina Mary Mathilde Mathis Matthew Maya Meredith Mia Michael Mickey Mikayla Mindy Mitchel Muhammed Natalia Nathan Niels Noah Nolan Normand Olga Oliver Olivia Olivia Omar Patricia Peter Phyllis Randell Raphael Ren Richard Riley Robert Robert Rodrick Ruby Rudolph Sara Sarah Satoshi Shawn Sherman Sofia Sofie Sophia Sophie Staci Susan Svetlana Tatiana Tatsuhiko Thomas Tom Twila Valentina Valeria Vera Vilma William Yuto }.freeze
5
5
 
6
- LAST_NAMES = [ "Alexander", "Ali", "Allen", "Amar", "Andersen", "Anderson", "Avraham", "Azulai", "Bakker", "Bauer", "Berg", "Bernard", "Binnenpoorte", "Biton", "Boone", "Breukers", "Brown", "Burks", "Byrne", "Calderon", "Carpenter", "Carver", "Chadad", "Christensen", "Cindy Sutton", "Claes", "Clark", "Clarke", "Clements", "Cohen", "Cornell Noble", "Cox", "Dahan", "Daniel", "David", "Davies", "Davis", "de Keijzer", "Desiree Luna", "Dijk", "Dubois", "Durand", "Ferdinand Rasmussen", "Friedman", "Gabai", "Garcia", "Gonzalez", "Goossens", "Green", "Gruber", "Guerrero", "Gutierrez", "Hall", "Hansen", "Harris", "Head", "Hebert", "Henderson", "Hermelink", "Hernandez", "Howard", "Huber", "Hunter", "IJs", "Ivanov", "Jackson", "Jacobs", "James", "Jansen", "Janssen", "Janssens", "Jensen", "Jeremiah Collier", "Jeurnink", "Jimenez", "Johnathon Fernandez", "Johnson", "Jones", "Kamman", "Katers-Ingelse", "Katz", "Kelly", "Kermit Graham", "Khan", "King", "Kozlov", "Krebber-Hulsbos", "Kuznetsov", "Lambert", "Larsen", "Lebedev", "Lee", "Leroy", "Levi", "Lewis", "Lloyd", "Lopez", "Lorie Reynolds", "Macias", "Madden", "Maes", "Malcah", "Maldonado Mosley", "Maldonado", "Marisa Alexander", "Martin", "Martinez", "Mason", "Mayer", "Mcintosh", "Mcknight", "Mcneil", "Mertens", "Meyer", "Miller", "Mitchell", "Mizrachi", "Montoya", "Moore", "Mora", "Morales", "Morgan", "Moser", "Mulhof-Bolks", "Muller", "Murphy", "Nash", "Newman", "Nielsen", "Novikov", "Ochion", "Offenberg", "op den Nieuwstad", "Owens", "Page", "Patel", "Pedersen", "Peeters", "Peretz", "Perez", "Petit", "Phillips", "Pichler", "Pleij", "Popov", "Ramirez", "Rasmussen", "Rich", "Richard", "Robert", "Roberts", "Robinson", "Rodriguez", "Rojas", "Rommelent-Overink", "Rose", "Ryan", "Sanchez", "Schmidt", "Scholing", "Schothuis-Meullink", "Scott", "Smirnov", "Smit", "Smith", "Sokolov", "Sorensen", "Steiner", "Taylor", "ter Heege", "Thomas", "Thompson", "Uulders", "van Beijnheim", "van de Aest", "van de Bospoort", "van der Laan", "van der Moolen", "van Ekenstein", "van Zon", "Verna Hoffman", "Visser", "Wagner", "Walker", "Walsh", "Weeks", "White", "Willems", "Williams", "Wilson", "Woodard", "Wouters", "Wright", "York", "Young" ]
6
+ LAST_NAMES = [ "Alexander", "Ali", "Allen", "Amar", "Andersen", "Anderson", "Avraham", "Azulai", "Bakker", "Bauer", "Berg", "Bernard", "Binnenpoorte", "Biton", "Boone", "Breukers", "Brown", "Burks", "Byrne", "Calderon", "Carpenter", "Carver", "Chadad", "Christensen", "Cindy Sutton", "Claes", "Clark", "Clarke", "Clements", "Cohen", "Cornell Noble", "Cox", "Dahan", "Daniel", "David", "Davies", "Davis", "de Keijzer", "Desiree Luna", "Dijk", "Dubois", "Durand", "Ferdinand Rasmussen", "Friedman", "Gabai", "Garcia", "Gonzalez", "Goossens", "Green", "Gruber", "Guerrero", "Gutierrez", "Hall", "Hansen", "Harris", "Head", "Hebert", "Henderson", "Hermelink", "Hernandez", "Howard", "Huber", "Hunter", "IJs", "Ivanov", "Jackson", "Jacobs", "James", "Jansen", "Janssen", "Janssens", "Jensen", "Jeremiah Collier", "Jeurnink", "Jimenez", "Johnathon Fernandez", "Johnson", "Jones", "Kamman", "Katers-Ingelse", "Katz", "Kelly", "Kermit Graham", "Khan", "King", "Kozlov", "Krebber-Hulsbos", "Kuznetsov", "Lambert", "Larsen", "Lebedev", "Lee", "Leroy", "Levi", "Lewis", "Lloyd", "Lopez", "Lorie Reynolds", "Macias", "Madden", "Maes", "Malcah", "Maldonado Mosley", "Maldonado", "Marisa Alexander", "Martin", "Martinez", "Mason", "Mayer", "Mcintosh", "Mcknight", "Mcneil", "Mertens", "Meyer", "Miller", "Mitchell", "Mizrachi", "Montoya", "Moore", "Mora", "Morales", "Morgan", "Moser", "Mulhof-Bolks", "Muller", "Murphy", "Nash", "Newman", "Nielsen", "Novikov", "Ochion", "Offenberg", "op den Nieuwstad", "Owens", "Page", "Patel", "Pedersen", "Peeters", "Peretz", "Perez", "Petit", "Phillips", "Pichler", "Pleij", "Popov", "Ramirez", "Rasmussen", "Rich", "Richard", "Robert", "Roberts", "Robinson", "Rodriguez", "Rojas", "Rommelent-Overink", "Rose", "Ryan", "Sanchez", "Schmidt", "Scholing", "Schothuis-Meullink", "Scott", "Smirnov", "Smit", "Smith", "Sokolov", "Sorensen", "Steiner", "Taylor", "ter Heege", "Thomas", "Thompson", "Uulders", "van Beijnheim", "van de Aest", "van de Bospoort", "van der Laan", "van der Moolen", "van Ekenstein", "van Zon", "Verna Hoffman", "Visser", "Wagner", "Walker", "Walsh", "Weeks", "White", "Willems", "Williams", "Wilson", "Woodard", "Wouters", "Wright", "York", "Young" ].freeze
7
7
 
8
8
  # Dutch names taken from https://github.com/thm/uinames/blob/master/names.json
9
9
 
10
- FIRST_NAMES_NETHERLANDS = [ "Aad", "Aart", "Arjan", "Bart", "Bas", "Boudewijn", "Camiel", "Chris", "Christiaan", "Daan", "Dirk", "Eelco", "Emiel", "Ernst", "Evert", "Florus", "Freek", "Geert", "Gerard", "Gerrit", "Harm", "Henk", "Huib", "Ido", "Ivo", "Jaap", "Jack", "Jan", "Kees", "Klaas", "Lars", "Laurens", "Luuk", "Mark", "Mathijs", "Michiel", "Niek", "Olaf", "Paul", "Peter", "Pieter", "Quintin", "Reinout", "Rik", "Rob", "Sander", "Sieb", "Sjors", "Stefan", "Teun", "Thijs", "Thomas", "Tom", "Twan", "Valentijn", "Victor", "Vincent", "Willem", "Wim", "Wouter", "Anna", "Annelies", "Barbara", "Carlijn", "Christien", "Corien", "Diewertje", "Doortje", "Eefke", "Eline", "Elise", "Emma", "Eva", "Femke", "Floor", "Hanneke", "Heleen", "Hendrika", "Imke", "Ineke", "Jacolien", "Jasmijn", "Johanneke", "Kristien", "Laura", "Leentje", "Lieke", "Lisa", "Lonneke", "Lotte", "Maaike", "Maartje", "Mirthe", "Neeltje", "Nelleke", "Noortje", "Paulien", "Petra", "Renske", "Roos", "Saar", "Sanne", "Sara", "Suzanne", "Thea", "Tineke", "Veerle", "Wies", "Willeke", "Willemijn", "Yasmijn" ]
10
+ FIRST_NAMES_NETHERLANDS = [ "Aad", "Aart", "Arjan", "Bart", "Bas", "Boudewijn", "Camiel", "Chris", "Christiaan", "Daan", "Dirk", "Eelco", "Emiel", "Ernst", "Evert", "Florus", "Freek", "Geert", "Gerard", "Gerrit", "Harm", "Henk", "Huib", "Ido", "Ivo", "Jaap", "Jack", "Jan", "Kees", "Klaas", "Lars", "Laurens", "Luuk", "Mark", "Mathijs", "Michiel", "Niek", "Olaf", "Paul", "Peter", "Pieter", "Quintin", "Reinout", "Rik", "Rob", "Sander", "Sieb", "Sjors", "Stefan", "Teun", "Thijs", "Thomas", "Tom", "Twan", "Valentijn", "Victor", "Vincent", "Willem", "Wim", "Wouter", "Anna", "Annelies", "Barbara", "Carlijn", "Christien", "Corien", "Diewertje", "Doortje", "Eefke", "Eline", "Elise", "Emma", "Eva", "Femke", "Floor", "Hanneke", "Heleen", "Hendrika", "Imke", "Ineke", "Jacolien", "Jasmijn", "Johanneke", "Kristien", "Laura", "Leentje", "Lieke", "Lisa", "Lonneke", "Lotte", "Maaike", "Maartje", "Mirthe", "Neeltje", "Nelleke", "Noortje", "Paulien", "Petra", "Renske", "Roos", "Saar", "Sanne", "Sara", "Suzanne", "Thea", "Tineke", "Veerle", "Wies", "Willeke", "Willemijn", "Yasmijn" ].freeze
11
11
 
12
- LAST_NAMES_NETHERLANDS = [ "Bakker", "Bos", "Bosman", "Brouwer", "de Boer", "de Bruijn", "de Bruin", "de Graaf", "de Groot", "de Haan", "de Jong", "de Koning", "de Lange", "de Leeuw", "de Ruiter", "de Vos", "de Vries", "de Wit", "Dekker", "Dijkstra", "Evers", "Gerritsen", "Groen", "Hendriks", "Hermans", "Hoekstra", "Hofman", "Huisman", "Jacobs", "Jansen", "Jonker", "Kok", "Koning", "Koster", "Kramer", "Kuijpers", "Kuiper", "Kuipers", "Maas", "Meijer", "Mol", "Molenaar", "Mulder", "Peters", "Post", "Postma", "Prins", "Sanders", "Schipper", "Scholten", "Schouten", "Smeets", "Smit", "Smits", "Timmermans", "van Beek", "van Dam", "van de Velde", "van den Berg", "van den Brink", "van den Broek", "van den Heuvel", "van der Heijden", "van der Horst", "van der Laan", "van der Linden", "van der Meer", "van der Meulen", "van der Pol", "van der Veen", "van der Velden", "van der Ven", "van der Wal", "van Dijk", "van Dongen", "van Doorn", "van Leeuwen", "van Loon", "van Veen", "van Vliet", "van Wijk", "Veenstra", "Verbeek", "Verhoeven", "Vermeulen", "Vink", "Visser", "Vos", "Willems", "Willemsen", "Wolters" ]
12
+ LAST_NAMES_NETHERLANDS = [ "Bakker", "Bos", "Bosman", "Brouwer", "de Boer", "de Bruijn", "de Bruin", "de Graaf", "de Groot", "de Haan", "de Jong", "de Koning", "de Lange", "de Leeuw", "de Ruiter", "de Vos", "de Vries", "de Wit", "Dekker", "Dijkstra", "Evers", "Gerritsen", "Groen", "Hendriks", "Hermans", "Hoekstra", "Hofman", "Huisman", "Jacobs", "Jansen", "Jonker", "Kok", "Koning", "Koster", "Kramer", "Kuijpers", "Kuiper", "Kuipers", "Maas", "Meijer", "Mol", "Molenaar", "Mulder", "Peters", "Post", "Postma", "Prins", "Sanders", "Schipper", "Scholten", "Schouten", "Smeets", "Smit", "Smits", "Timmermans", "van Beek", "van Dam", "van de Velde", "van den Berg", "van den Brink", "van den Broek", "van den Heuvel", "van der Heijden", "van der Horst", "van der Laan", "van der Linden", "van der Meer", "van der Meulen", "van der Pol", "van der Veen", "van der Velden", "van der Ven", "van der Wal", "van Dijk", "van Dongen", "van Doorn", "van Leeuwen", "van Loon", "van Veen", "van Vliet", "van Wijk", "Veenstra", "Verbeek", "Verhoeven", "Vermeulen", "Vink", "Visser", "Vos", "Willems", "Willemsen", "Wolters" ].freeze
13
13
 
14
- SUPERHERO_NAMES = [ "Bad Commander", "Barbaric Scarecrow", "Beast Dirty", "Bitter Soldier", "Bursting Electron", "Cheerful Devil", "Concrete King", "Cool Anaconda", "Danger Flaming Power", "Demon Dirty", "Disappointed Falcon", "El Arrow", "Elastic Psycho", "Fierce Invader", "Furious Alien Guardian", "Furious Leader", "Ghostly Giant", "Headless Arrow", "Liquid Leather", "Morbid Demon", "Nasty Devil", "Nasty Dragonfly", "Nasty Psycho", "Nasty Sherif", "Nervous Major", "Ogre Skilled", "Old Clown", "Old Dog", "Orange Dinosaur", "Ostrich Restless", "Poseidon Dog", "Poseidon Smuggler", "Pure Kangaroo", "Pure Skunk", "Raving Warrior", "Rider Young", "Rockhard Barbarian", "Ruby Moose", "Silver Gangster", "Spider Solid", "Steamy Craw", "Strawberry Sword", "Striking Sword", "Supersonic Doctor", "The Aimless Spear", "The Chief", "The Lone Hawk", "The Prince", "The Quick Power", "The Rough Soldier", "The Wrench", "Tough Beast", "Toxic Flea" ]
14
+ SUPERHERO_NAMES = [ "Bad Commander", "Barbaric Scarecrow", "Beast Dirty", "Bitter Soldier", "Bursting Electron", "Cheerful Devil", "Concrete King", "Cool Anaconda", "Danger Flaming Power", "Demon Dirty", "Disappointed Falcon", "El Arrow", "Elastic Psycho", "Fierce Invader", "Furious Alien Guardian", "Furious Leader", "Ghostly Giant", "Headless Arrow", "Liquid Leather", "Morbid Demon", "Nasty Devil", "Nasty Dragonfly", "Nasty Psycho", "Nasty Sherif", "Nervous Major", "Ogre Skilled", "Old Clown", "Old Dog", "Orange Dinosaur", "Ostrich Restless", "Poseidon Dog", "Poseidon Smuggler", "Pure Kangaroo", "Pure Skunk", "Raving Warrior", "Rider Young", "Rockhard Barbarian", "Ruby Moose", "Silver Gangster", "Spider Solid", "Steamy Craw", "Strawberry Sword", "Striking Sword", "Supersonic Doctor", "The Aimless Spear", "The Chief", "The Lone Hawk", "The Prince", "The Quick Power", "The Rough Soldier", "The Wrench", "Tough Beast", "Toxic Flea" ].freeze
15
15
 
16
- ELF_NAMES = [ "Ahanna Folmer Fearlock", "Airis Idon", "Amarisa Abdun", "Amarisa Nildale Kilden", "Aslan Vacon", "Bathelie Nildale", "Bathelie Syth Xenil", "Brynhilde Casdon Elik", "Calina Madon Eldor", "Connell Acaman", "Cos Telpur", "Eckard Geth", "Elfdorn Cordale Abardon", "Eloon Uhrd", "Elson Cyton", "Fildon Velpar", "Frederika Letor", "Gametris Rikar Xenil", "Geth Agon Kimdar", "Gothar Naphazw", "Gothor Cos", "Irina Waytel", "Jethol Ohmar", "Kaldar Mezo Gothor", "Kilia Secor", "Kimdar Vethelot", "Laracal Touck Elmut", "Lerin Achard Yesirn", "Lox Kildar Vethelot", "Lox Meldin", "Luna Yesirn Nothar", "Lyna Xithyl", "Mezo Dismer Samon", "Nelena Mafur", "Niktohal Ibfist Achard", "Onathe Staph Lalfar", "Parthinia Modric Keran", "Philadona Lahorn", "Relboron Meldin", "Sabalz Uhmar", "Sothale Laracal", "Sutlin Shard", "Synestra Kelar", "Synestra Peitar", "Teressa Alderman", "Teressa Dokohan", "Tok Kafar Sutlin", "Urda Zilz", "Voltain Baduk", "Waytel Quid", "Weshin Nadorn", "Yeta Hecton", "Zena Mezo", "Zotar Seryth", "Zyneste Calden" ]
16
+ ELF_NAMES = [ "Ahanna Folmer Fearlock", "Airis Idon", "Amarisa Abdun", "Amarisa Nildale Kilden", "Aslan Vacon", "Bathelie Nildale", "Bathelie Syth Xenil", "Brynhilde Casdon Elik", "Calina Madon Eldor", "Connell Acaman", "Cos Telpur", "Eckard Geth", "Elfdorn Cordale Abardon", "Eloon Uhrd", "Elson Cyton", "Fildon Velpar", "Frederika Letor", "Gametris Rikar Xenil", "Geth Agon Kimdar", "Gothar Naphazw", "Gothor Cos", "Irina Waytel", "Jethol Ohmar", "Kaldar Mezo Gothor", "Kilia Secor", "Kimdar Vethelot", "Laracal Touck Elmut", "Lerin Achard Yesirn", "Lox Kildar Vethelot", "Lox Meldin", "Luna Yesirn Nothar", "Lyna Xithyl", "Mezo Dismer Samon", "Nelena Mafur", "Niktohal Ibfist Achard", "Onathe Staph Lalfar", "Parthinia Modric Keran", "Philadona Lahorn", "Relboron Meldin", "Sabalz Uhmar", "Sothale Laracal", "Sutlin Shard", "Synestra Kelar", "Synestra Peitar", "Teressa Alderman", "Teressa Dokohan", "Tok Kafar Sutlin", "Urda Zilz", "Voltain Baduk", "Waytel Quid", "Weshin Nadorn", "Yeta Hecton", "Zena Mezo", "Zotar Seryth", "Zyneste Calden" ].freeze
17
17
 
18
- ROBOT_NAMES = [ "Abasx", "Advanced Peacekeeping Drone", "Anem", "Bult", "Compact Nullification Golem", "Compact Nullification Technology", "Cybernetic Emulation Machine", "Cybernetic Repairation Juggernaut", "Cylinder", "Dot", "Egol", "Elix", "Extraterrestial Life Emulation Automaton", "Extreme Waste Collection Device", "Gearz", "General Excevation Cyborg", "Global Data Analyzing Juggernaut", "Global Domination Technology", "Humanoid Life Protection Emulator", "Ina", "Independent Sabotage Golem", "Jin", "Mechi", "Mig", "Neohuman Garbage Disposal Prototype", "Neohuman Personal Protection Prototype", "Norbit", "Oduhroid", "Onoyator", "Otis", "Ozo", "Preliminary Management Drone", "Proto", "Ratcher", "Robbie", "Robotic Battle Automaton", "Scrap", "Scrappie", "Screwie", "Sensory Network Defense Android", "Shrimp", "Skip", "Spanner", "Synchronized Planet Survey Entity", "Tech", "Ufoq", "Ultimate Emulation Entity", "Ultimate Space Navigation Robot", "Uqk" ]
18
+ ROBOT_NAMES = [ "Abasx", "Advanced Peacekeeping Drone", "Anem", "Bult", "Compact Nullification Golem", "Compact Nullification Technology", "Cybernetic Emulation Machine", "Cybernetic Repairation Juggernaut", "Cylinder", "Dot", "Egol", "Elix", "Extraterrestial Life Emulation Automaton", "Extreme Waste Collection Device", "Gearz", "General Excevation Cyborg", "Global Data Analyzing Juggernaut", "Global Domination Technology", "Humanoid Life Protection Emulator", "Ina", "Independent Sabotage Golem", "Jin", "Mechi", "Mig", "Neohuman Garbage Disposal Prototype", "Neohuman Personal Protection Prototype", "Norbit", "Oduhroid", "Onoyator", "Otis", "Ozo", "Preliminary Management Drone", "Proto", "Ratcher", "Robbie", "Robotic Battle Automaton", "Scrap", "Scrappie", "Screwie", "Sensory Network Defense Android", "Shrimp", "Skip", "Spanner", "Synchronized Planet Survey Entity", "Tech", "Ufoq", "Ultimate Emulation Entity", "Ultimate Space Navigation Robot", "Uqk" ].freeze
19
19
 
20
20
  def self.first_name
21
21
  FIRST_NAMES.sample
@@ -1,7 +1,7 @@
1
1
  module Mockdata
2
2
  class TimeZones
3
3
 
4
- TIME_ZONES = [{"International Date Line West"=>"Pacific/Midway"}, {"Midway Island"=>"Pacific/Midway"}, {"Samoa"=>"Pacific/Pago_Pago"}, {"Hawaii"=>"Pacific/Honolulu"}, {"Alaska"=>"America/Juneau"}, {"Pacific Time (US & Canada)"=>"America/Los_Angeles"}, {"Tijuana"=>"America/Tijuana"}, {"Mountain Time (US & Canada)"=>"America/Denver"}, {"Arizona"=>"America/Phoenix"}, {"Chihuahua"=>"America/Chihuahua"}, {"Mazatlan"=>"America/Mazatlan"}, {"Central Time (US & Canada)"=>"America/Chicago"}, {"Saskatchewan"=>"America/Regina"}, {"Guadalajara"=>"America/Mexico_City"}, {"Mexico City"=>"America/Mexico_City"}, {"Monterrey"=>"America/Monterrey"}, {"Central America"=>"America/Guatemala"}, {"Eastern Time (US & Canada)"=>"America/New_York"}, {"Indiana (East)"=>"America/Indiana/Indianapolis"}, {"Bogota"=>"America/Bogota"}, {"Lima"=>"America/Lima"}, {"Quito"=>"America/Lima"}, {"Atlantic Time (Canada)"=>"America/Halifax"}, {"Caracas"=>"America/Caracas"}, {"La Paz"=>"America/La_Paz"}, {"Santiago"=>"America/Santiago"}, {"Newfoundland"=>"America/St_Johns"}, {"Brasilia"=>"America/Sao_Paulo"}, {"Buenos Aires"=>"America/Argentina/Buenos_Aires"}, {"Georgetown"=>"America/Guyana"}, {"Greenland"=>"America/Godthab"}, {"Mid-Atlantic"=>"Atlantic/South_Georgia"}, {"Azores"=>"Atlantic/Azores"}, {"Cape Verde Is."=>"Atlantic/Cape_Verde"}, {"Dublin"=>"Europe/Dublin"}, {"Edinburgh"=>"Europe/London"}, {"Lisbon"=>"Europe/Lisbon"}, {"London"=>"Europe/London"}, {"Casablanca"=>"Africa/Casablanca"}, {"Monrovia"=>"Africa/Monrovia"}, {"UTC"=>"Etc/UTC"}, {"Belgrade"=>"Europe/Belgrade"}, {"Bratislava"=>"Europe/Bratislava"}, {"Budapest"=>"Europe/Budapest"}, {"Ljubljana"=>"Europe/Ljubljana"}, {"Prague"=>"Europe/Prague"}, {"Sarajevo"=>"Europe/Sarajevo"}, {"Skopje"=>"Europe/Skopje"}, {"Warsaw"=>"Europe/Warsaw"}, {"Zagreb"=>"Europe/Zagreb"}, {"Brussels"=>"Europe/Brussels"}, {"Copenhagen"=>"Europe/Copenhagen"}, {"Madrid"=>"Europe/Madrid"}, {"Paris"=>"Europe/Paris"}, {"Amsterdam"=>"Europe/Amsterdam"}, {"Berlin"=>"Europe/Berlin"}, {"Bern"=>"Europe/Berlin"}, {"Rome"=>"Europe/Rome"}, {"Stockholm"=>"Europe/Stockholm"}, {"Vienna"=>"Europe/Vienna"}, {"West Central Africa"=>"Africa/Algiers"}, {"Bucharest"=>"Europe/Bucharest"}, {"Cairo"=>"Africa/Cairo"}, {"Helsinki"=>"Europe/Helsinki"}, {"Kyiv"=>"Europe/Kiev"}, {"Riga"=>"Europe/Riga"}, {"Sofia"=>"Europe/Sofia"}, {"Tallinn"=>"Europe/Tallinn"}, {"Vilnius"=>"Europe/Vilnius"}, {"Athens"=>"Europe/Athens"}, {"Istanbul"=>"Europe/Istanbul"}, {"Minsk"=>"Europe/Minsk"}, {"Jerusalem"=>"Asia/Jerusalem"}, {"Harare"=>"Africa/Harare"}, {"Pretoria"=>"Africa/Johannesburg"}, {"Moscow"=>"Europe/Moscow"}, {"St. Petersburg"=>"Europe/Moscow"}, {"Volgograd"=>"Europe/Moscow"}, {"Kuwait"=>"Asia/Kuwait"}, {"Riyadh"=>"Asia/Riyadh"}, {"Nairobi"=>"Africa/Nairobi"}, {"Baghdad"=>"Asia/Baghdad"}, {"Tehran"=>"Asia/Tehran"}, {"Abu Dhabi"=>"Asia/Muscat"}, {"Muscat"=>"Asia/Muscat"}, {"Baku"=>"Asia/Baku"}, {"Tbilisi"=>"Asia/Tbilisi"}, {"Yerevan"=>"Asia/Yerevan"}, {"Kabul"=>"Asia/Kabul"}, {"Ekaterinburg"=>"Asia/Yekaterinburg"}, {"Islamabad"=>"Asia/Karachi"}, {"Karachi"=>"Asia/Karachi"}, {"Tashkent"=>"Asia/Tashkent"}, {"Chennai"=>"Asia/Kolkata"}, {"Kolkata"=>"Asia/Kolkata"}, {"Mumbai"=>"Asia/Kolkata"}, {"New Delhi"=>"Asia/Kolkata"}, {"Kathmandu"=>"Asia/Kathmandu"}, {"Astana"=>"Asia/Dhaka"}, {"Dhaka"=>"Asia/Dhaka"}, {"Sri Jayawardenepura"=>"Asia/Colombo"}, {"Almaty"=>"Asia/Almaty"}, {"Novosibirsk"=>"Asia/Novosibirsk"}, {"Rangoon"=>"Asia/Rangoon"}, {"Bangkok"=>"Asia/Bangkok"}, {"Hanoi"=>"Asia/Bangkok"}, {"Jakarta"=>"Asia/Jakarta"}, {"Krasnoyarsk"=>"Asia/Krasnoyarsk"}, {"Beijing"=>"Asia/Shanghai"}, {"Chongqing"=>"Asia/Chongqing"}, {"Hong Kong"=>"Asia/Hong_Kong"}, {"Urumqi"=>"Asia/Urumqi"}, {"Kuala Lumpur"=>"Asia/Kuala_Lumpur"}, {"Singapore"=>"Asia/Singapore"}, {"Taipei"=>"Asia/Taipei"}, {"Perth"=>"Australia/Perth"}, {"Irkutsk"=>"Asia/Irkutsk"}, {"Ulaan Bataar"=>"Asia/Ulaanbaatar"}, {"Seoul"=>"Asia/Seoul"}, {"Osaka"=>"Asia/Tokyo"}, {"Sapporo"=>"Asia/Tokyo"}, {"Tokyo"=>"Asia/Tokyo"}, {"Yakutsk"=>"Asia/Yakutsk"}, {"Darwin"=>"Australia/Darwin"}, {"Adelaide"=>"Australia/Adelaide"}, {"Canberra"=>"Australia/Melbourne"}, {"Melbourne"=>"Australia/Melbourne"}, {"Sydney"=>"Australia/Sydney"}, {"Brisbane"=>"Australia/Brisbane"}, {"Hobart"=>"Australia/Hobart"}, {"Vladivostok"=>"Asia/Vladivostok"}, {"Guam"=>"Pacific/Guam"}, {"Port Moresby"=>"Pacific/Port_Moresby"}, {"Magadan"=>"Asia/Magadan"}, {"Solomon Is."=>"Asia/Magadan"}, {"New Caledonia"=>"Pacific/Noumea"}, {"Fiji"=>"Pacific/Fiji"}, {"Kamchatka"=>"Asia/Kamchatka"}, {"Marshall Is."=>"Pacific/Majuro"}, {"Auckland"=>"Pacific/Auckland"}, {"Wellington"=>"Pacific/Auckland"}, {"Nuku'alofa"=>"Pacific/Tongatapu"}]
4
+ TIME_ZONES = [{"International Date Line West"=>"Pacific/Midway"}, {"Midway Island"=>"Pacific/Midway"}, {"Samoa"=>"Pacific/Pago_Pago"}, {"Hawaii"=>"Pacific/Honolulu"}, {"Alaska"=>"America/Juneau"}, {"Pacific Time (US & Canada)"=>"America/Los_Angeles"}, {"Tijuana"=>"America/Tijuana"}, {"Mountain Time (US & Canada)"=>"America/Denver"}, {"Arizona"=>"America/Phoenix"}, {"Chihuahua"=>"America/Chihuahua"}, {"Mazatlan"=>"America/Mazatlan"}, {"Central Time (US & Canada)"=>"America/Chicago"}, {"Saskatchewan"=>"America/Regina"}, {"Guadalajara"=>"America/Mexico_City"}, {"Mexico City"=>"America/Mexico_City"}, {"Monterrey"=>"America/Monterrey"}, {"Central America"=>"America/Guatemala"}, {"Eastern Time (US & Canada)"=>"America/New_York"}, {"Indiana (East)"=>"America/Indiana/Indianapolis"}, {"Bogota"=>"America/Bogota"}, {"Lima"=>"America/Lima"}, {"Quito"=>"America/Lima"}, {"Atlantic Time (Canada)"=>"America/Halifax"}, {"Caracas"=>"America/Caracas"}, {"La Paz"=>"America/La_Paz"}, {"Santiago"=>"America/Santiago"}, {"Newfoundland"=>"America/St_Johns"}, {"Brasilia"=>"America/Sao_Paulo"}, {"Buenos Aires"=>"America/Argentina/Buenos_Aires"}, {"Georgetown"=>"America/Guyana"}, {"Greenland"=>"America/Godthab"}, {"Mid-Atlantic"=>"Atlantic/South_Georgia"}, {"Azores"=>"Atlantic/Azores"}, {"Cape Verde Is."=>"Atlantic/Cape_Verde"}, {"Dublin"=>"Europe/Dublin"}, {"Edinburgh"=>"Europe/London"}, {"Lisbon"=>"Europe/Lisbon"}, {"London"=>"Europe/London"}, {"Casablanca"=>"Africa/Casablanca"}, {"Monrovia"=>"Africa/Monrovia"}, {"UTC"=>"Etc/UTC"}, {"Belgrade"=>"Europe/Belgrade"}, {"Bratislava"=>"Europe/Bratislava"}, {"Budapest"=>"Europe/Budapest"}, {"Ljubljana"=>"Europe/Ljubljana"}, {"Prague"=>"Europe/Prague"}, {"Sarajevo"=>"Europe/Sarajevo"}, {"Skopje"=>"Europe/Skopje"}, {"Warsaw"=>"Europe/Warsaw"}, {"Zagreb"=>"Europe/Zagreb"}, {"Brussels"=>"Europe/Brussels"}, {"Copenhagen"=>"Europe/Copenhagen"}, {"Madrid"=>"Europe/Madrid"}, {"Paris"=>"Europe/Paris"}, {"Amsterdam"=>"Europe/Amsterdam"}, {"Berlin"=>"Europe/Berlin"}, {"Bern"=>"Europe/Berlin"}, {"Rome"=>"Europe/Rome"}, {"Stockholm"=>"Europe/Stockholm"}, {"Vienna"=>"Europe/Vienna"}, {"West Central Africa"=>"Africa/Algiers"}, {"Bucharest"=>"Europe/Bucharest"}, {"Cairo"=>"Africa/Cairo"}, {"Helsinki"=>"Europe/Helsinki"}, {"Kyiv"=>"Europe/Kiev"}, {"Riga"=>"Europe/Riga"}, {"Sofia"=>"Europe/Sofia"}, {"Tallinn"=>"Europe/Tallinn"}, {"Vilnius"=>"Europe/Vilnius"}, {"Athens"=>"Europe/Athens"}, {"Istanbul"=>"Europe/Istanbul"}, {"Minsk"=>"Europe/Minsk"}, {"Jerusalem"=>"Asia/Jerusalem"}, {"Harare"=>"Africa/Harare"}, {"Pretoria"=>"Africa/Johannesburg"}, {"Moscow"=>"Europe/Moscow"}, {"St. Petersburg"=>"Europe/Moscow"}, {"Volgograd"=>"Europe/Moscow"}, {"Kuwait"=>"Asia/Kuwait"}, {"Riyadh"=>"Asia/Riyadh"}, {"Nairobi"=>"Africa/Nairobi"}, {"Baghdad"=>"Asia/Baghdad"}, {"Tehran"=>"Asia/Tehran"}, {"Abu Dhabi"=>"Asia/Muscat"}, {"Muscat"=>"Asia/Muscat"}, {"Baku"=>"Asia/Baku"}, {"Tbilisi"=>"Asia/Tbilisi"}, {"Yerevan"=>"Asia/Yerevan"}, {"Kabul"=>"Asia/Kabul"}, {"Ekaterinburg"=>"Asia/Yekaterinburg"}, {"Islamabad"=>"Asia/Karachi"}, {"Karachi"=>"Asia/Karachi"}, {"Tashkent"=>"Asia/Tashkent"}, {"Chennai"=>"Asia/Kolkata"}, {"Kolkata"=>"Asia/Kolkata"}, {"Mumbai"=>"Asia/Kolkata"}, {"New Delhi"=>"Asia/Kolkata"}, {"Kathmandu"=>"Asia/Kathmandu"}, {"Astana"=>"Asia/Dhaka"}, {"Dhaka"=>"Asia/Dhaka"}, {"Sri Jayawardenepura"=>"Asia/Colombo"}, {"Almaty"=>"Asia/Almaty"}, {"Novosibirsk"=>"Asia/Novosibirsk"}, {"Rangoon"=>"Asia/Rangoon"}, {"Bangkok"=>"Asia/Bangkok"}, {"Hanoi"=>"Asia/Bangkok"}, {"Jakarta"=>"Asia/Jakarta"}, {"Krasnoyarsk"=>"Asia/Krasnoyarsk"}, {"Beijing"=>"Asia/Shanghai"}, {"Chongqing"=>"Asia/Chongqing"}, {"Hong Kong"=>"Asia/Hong_Kong"}, {"Urumqi"=>"Asia/Urumqi"}, {"Kuala Lumpur"=>"Asia/Kuala_Lumpur"}, {"Singapore"=>"Asia/Singapore"}, {"Taipei"=>"Asia/Taipei"}, {"Perth"=>"Australia/Perth"}, {"Irkutsk"=>"Asia/Irkutsk"}, {"Ulaan Bataar"=>"Asia/Ulaanbaatar"}, {"Seoul"=>"Asia/Seoul"}, {"Osaka"=>"Asia/Tokyo"}, {"Sapporo"=>"Asia/Tokyo"}, {"Tokyo"=>"Asia/Tokyo"}, {"Yakutsk"=>"Asia/Yakutsk"}, {"Darwin"=>"Australia/Darwin"}, {"Adelaide"=>"Australia/Adelaide"}, {"Canberra"=>"Australia/Melbourne"}, {"Melbourne"=>"Australia/Melbourne"}, {"Sydney"=>"Australia/Sydney"}, {"Brisbane"=>"Australia/Brisbane"}, {"Hobart"=>"Australia/Hobart"}, {"Vladivostok"=>"Asia/Vladivostok"}, {"Guam"=>"Pacific/Guam"}, {"Port Moresby"=>"Pacific/Port_Moresby"}, {"Magadan"=>"Asia/Magadan"}, {"Solomon Is."=>"Asia/Magadan"}, {"New Caledonia"=>"Pacific/Noumea"}, {"Fiji"=>"Pacific/Fiji"}, {"Kamchatka"=>"Asia/Kamchatka"}, {"Marshall Is."=>"Pacific/Majuro"}, {"Auckland"=>"Pacific/Auckland"}, {"Wellington"=>"Pacific/Auckland"}, {"Nuku'alofa"=>"Pacific/Tongatapu"}].freeze
5
5
 
6
6
  def self.pick
7
7
  TIME_ZONES.sample
@@ -1,3 +1,3 @@
1
1
  module Mockdata
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
@@ -2,7 +2,7 @@ module Mockdata
2
2
  class Words
3
3
 
4
4
  # Workplace suitable words (but don't take my word for it)
5
- WORDS = %w{mitt that with they this have from word what were when your said there each which their will other about many then them these some would make like into time look more write number could people than first water been call find long down come made part over sound take only little work know place year live back give most very after thing just name good sentence think great where help through much before line right mean same tell follow came want show also around farm three small does another well large must even such because turn here went read need land different home move kind hand picture again change play spell away animal house point page letter mother answer found study still learn should America world high every near food between below country plant last school father keep tree never start city earth light thought head under story left don't while along might chose something seem next hard open example begin life always those both paper together group often important until children side feet mile night walk white began grow took river four carry state once book hear stop without second late miss idea enough face watch Indian really almost above girl sometimes mountain young talk soon list song being leave family it's best better black blue bring brown clean cold done draw drink eight fall fast five full funny gave giving goes green hold hurt jump laugh myself pick please pretty pull ride round seven shall sing sleep thank today upon warm wash wish yellow bake band bank bell belt bend bent Bess bike bite blast bled blend blimp blink bliss block blond blot bluff blunt bone brag brand brass brat bred bride brig brim broke brunt brute bump bunt bust camp cane can't cape cast clad clam clamp clan clap clasp class cliff cling clink clip close clot club clump clung cone crab craft cram cramp crib crime crisp crop crust cure cute damp dent dime dine dire dive dope draft drag drank dress drift drill drip drop drove drug drum dump dust fact fade fell felt file fill film fine fire fist flag flap flat fled fling flip flop flung flunk frame frank frill frisk frog frost froze fume gasp gaze glad gland glass glint globe glum golf grab grade gram gramp grand grant grape grasp grass grill grim grin grip gripe grump grunt gulp gust hate held hide hint hire hole honk hope hose hung hunt Jane joke junk kept kite lamp lick lift lime limp lock luck lump Mack mask mass mast mate melt mend Mick Mike milk mill mint mist mite mope mule mute neck nest nine nose note pane pant pass past pest Pete pike pile pill pine plan plane plank plate plop plot plug plum plump plus poke pole pomp pond pope prank press pride prime print prize prop punk pure raft ripe robe rock rode romp rope rose Runs runt rust sack sake sand sank save scab scale scalp scan scare scat scope scram scrap script self sell send sent sick site size skate skid skill skim skin skip skit skunk slam slang slant slap slat slate slave sled slept slide slim sling slip slob slope slot slug slum slump smack smell smile smog smoke smug snack snag snake snap sniff snip snipe snub snug sock soft span spank spat sped spend spent spill spin spine spit spite splat splint split spoke spot spun spunk stab stack stale stamp stand stem step stiff sting stink stomp stone stove strand strap strip stripe struck strung stuck stump stun suck sung swam swang swell swift swim swing swung tack tame tape tent test tide tile till tilt trade tramp trap trend trick trim trip trot trunk trust twang twig twin twist vane wave weld wind wine wire yoke absent admit album ball bang banging basket bathtub bedbug bench bill blank blasted blended blush bobsled branch brave brush bunch camping care case catnip cave chest chill chin chip chipmunk chop chunk clock cloth contest crack crash crashing crept cross crush cuff dash deck dentist dish disrupt disrupted drinking dusted expanded fang finishing fish flute Fran fuss gift goblin hall hang Hank himself hotrod huff hunted index insisted insisting insulted invent invented Jack jumping king kiss lane lapdog lasted lending loft lost lunch lung mall mascot math mess napkin pack path picnic pigpen pinball pinch planted plastic problem public publishing puff punishing quake rake rash rented rest rested rich ring ringing safe sale sang sash shack shed shelf shell shifted shine ship shop shrimp shrinking shrunk shut sink sinking sits splash splashing squinted standing Steve stub stuff stunt sunfish sunk sunlit sunset suntan swishing talented tall tank throne thud tick tilted tiptop toss trusted twisted upset vent vest wall whiff whip whiplash wing wink wipe wise yell zigzag called circle friend Mrs. nothing says Beth Bing Blanch bong Buck burnt Burt Carmen Cass caterpillar Chad cheer chomp Chuck chuckle chug Clark click climb clown cluck coal complain croak crunch Curtis curve darts dinner diver doctor doll door Doris Ellen fellow fiddle firm fishing Fitch foam forever forgot forth front Gert gobble gone gosh granddad grandpa grinned grumble hatch Herb hill horse hush insect Jeff jiggle Jill Jill's Josh jumble kick Kirk larch library lived lives market Mitch napper nibble Nick Norm onto owner patch peck perfect ping pong quick quill quilt Quinn quit reward Rick Rivera roam ruff Sanchez served Seth sister Sloan smash snort snuggle soup sparkle sprinkle squirt stick sudden sunburn surprise swimmer tadpole Tess Texas tickle toad Todd turf twinkle twitch umbrella uncle wham whirl whisper whistle wiggle window Winkle writing York zing able added afraid afternoon ahead annoy anything anyway anywhere applaud artist attack attic auto avoid awesome awful awning babble baby baffle bald ballplayer bark base baseball basin basketball batch bath battle beach bead beam bean beanstalk beast beat bedtime beef beehive beet begging behind bird birthday bleach blew blind bloom blow blown bluebird blueprint blur boast boat body boil bold bonnet bonus boost boot born bottle bowl brace braid brain brainstorm brake brawl bread breakfast breath brick bright broil broiler broom bruise bubble buddy built bundle bunk bunny burn burst buses butterfly button buzz cabin cage cake camel candle candy careful cart catch cattle cell cent chain chalk champ charge chart chase chat check cheerful cheese chess chew chick child chime chirp choice chore church churn claim classmate clay clerk clever clue clutch coach coat coax coil coin collect colorful cool core cork corn cowboy cozy crate crawl cream crew crinkle crow cruise cuddle cupcake curb curl daddy dangle Danny dark dart date dawn daylight dead deaf dealt decent deep delight desk dimple dirt ditch doghouse double dragon dragonfly drain dread dream drew driveway droop duck dunk dusk easel easy elbow enjoy ever evergreen everyone everything everywhere explore fabric fail faithful fame fault fawn feast feed feel fence fern fetch fifty fight finish firefighter flagpole flash flashlight flaunt flaw flight float flow fluffy foal foil fold fool forest forget fork form fort fraud fray free fresh Friday fried fright frozen fruit game garden gate germ giggle ginger giraffe gleam glean glow gluestick goat going gold goose Grace graceful grain grapefruit grasshopper grateful gray grew groan grown grown-up growth gumball habit hail handwriting happen happy harm harmful harp haul haunt hawk health heat heavy heel hello helpful herself hidden highway hoist homemade homework hoot hopeful hopscotch horn host houseboat housefly huddle human humid hummingbird hump hungry hunk hurdle hurl inch inside instead itch Jake Jean jeep jelly jellyfish jerk Jimmy jingle Joan join joint juggle juice jungle kickball kingfish kits kitten kitty knack knee kneecap kneel knelt knew knife knight knit knob knock knockout knot knothole known lace lack lake latch launch lawn lazy leap leather lemon less lighthouse limit link lipstick living load loaf loop loose lunchbox Mabel mail main mane march mark match Matt meant meat meet mice middle mild mind mine mitten moan model moist mold moment Monday mood motel munch music muzzle nail nanny Nate neat necktie nerve newscast newspaper nice nickname nighttime nips noise noon north nowhere oatmeal object oink ooze outside pace paddle pail pain painful paint pancake paperback park pause pawn peace peaceful peach peak peddle peep pencil pennies penny perch piano pillow pilot pink pipe pitch ploy poison pony pooch poodle pool popcorn porch port post poster potpie pretzel price proof pupil puppy purple purse puzzle quack queen quicksand rabbit race rack rage rail rain rainbow ranch rang rattle reach ready recycle refund renew restful return ribbon rice riddle rind rink rise road roast robin robot room roost royal ruled rumble runway rush saddle sail sailboat salad sample sandbox sandpaper sandy Saturday sauce saucer scarf scold scorch score scrape scratch scream screen screw scrub seal seat serve settle shade shadow shake shaking shameful shape share shark sharp sheep shipwreck shirt shore short shrink shrub shrug sidewalk sigh sight silence silly simple sips siren slice slick slight slow slur smart smiling smooth snail sneak snooze snore snow snowball snowflake snowman soak soap sofa soil someone somewhere sore sort space spark speak splendid splotch spoil spool spoon sport sprain sprawl spray spread spring sprint spruce spur squawk stage star startle stay steam steep stern stiffer stir stool store stork storm strain strange straw stray stream street stretch strict strike string strong stung suit suitcase sunblock Sunday sunflower sunny sunrise sunshine surf sway sweat sweep sweet swerve swimming swirl switch tablet tail taps tattle taught teach teacher team tease teeth tennis thankful thick thigh thimble thin thinner thinnest third thirst thorn thread threat thrill throat throw Thursday tiger tight tired toast toil told tool tooth topcoat torch torn trace traffic train trash travel tray tread treetop trouble truck trumpet Tuesday tugboat tulip tumble tummy turtle tusk twirl ugly unzip useful value vanish verb verse vine visit visitor voice void vote waddle wage wagon wait wake waves wealth weather weave Wednesday weed week weekend wettest whack whale whatever wheat wheel whenever whisk whiz wide wife wild windmill wonderful wore worn wrap wreath wreck wrench wriggle wrinkle wrist wristwatch written wrong wrote yard yardstick yarn yawn Zack zebra zoom winter wear mitten bait barn bawl beak birth blab blade blame blaze bleed bless blip blurb blurt bond books booth boys brad bran brawn brisk brook broth brother card cash cask cheap cheek chow clack clang clash claw cloak clod coast code cook coop cord cost count crane crick crock crook crown crude crumb cube dear disk dock doze drake drape drawn drive dude east faint flake flame flesh flick flirt flit flock floor flour flown flush fond foot fowl Fred fret frizz frying fuse gang glade glaze glee glen glide glob gloss goal gown grate greet grit grouch growl gruff heal heap hike hood hoof hook hoop howl huge husk intern jail June laid lame leak lend lent lien lint loan loin lone loot lord loud lurk lute maid maze meal mirth mock mole moon mouse mouth murk musk nook nurse paid peek peel pelt perk plain plants player plod plow plums pork prance pray prayer present prim prince probe prod program proud prowl punt raid rant real rent risk Rome roof rude rung scald scar scoop scoot scout scowl scuff scum seek seen shawl sheet shirk shook shoot shot shout shown sift silk sixth skips skirt skull slash slaw slay slid slit slop smear smith smock smoky snare snatch sneeze snob snoop snuff soot sour south speck speech speed spike spry spud spurn spurt stain stall Stan steal stood sulk swamp swan swap swarm swat swatch swept swig swine swish swoop sworn swum tale task tend tenth term thumb tint tock town toys track trail tram trek tribe trod Troy tune tweed tweet twelve twenty twice twine twitter urge uses vase wade wept west whine whir wick wilt woke wood woof wool wove zest zone against American among asked course days didn't during eyes general given however later order possible president rather since states system things though toward united used years color suddenly zipper ache aunt bare bear boom busy dare lose love none rule sure tire tube copy edge else fizz glue hair half hour I'll I've July kill lady lamb leaf liar lion mama mash meow mush obey okay ouch oven papa pour push roll shoe soda tiny worm true U.S. agree alive apple April awake blood break chair cloud cough cover dance erase phone piece whole whose adult angry belly death eagle empty extra hurry maybe money movie nasty party pizza quiet sorry stair sugar table taste threw touch towel truth waist waste woman women won't worse anyone arrive asleep August avenue behave bridge carpet cereal choose cookie corner crayon danger minute banana bucket carrot dollar finger flower gentle handle listen mirror monkey nickel nobody orange parent person pocket potato puppet rocket search secret seesaw shovel shower silent spider sponge squash squeak sticky summer supper they'd ticket tiptoe tissue tomato tongue turkey unfair wonder U.S.A. airport anybody balloon bedroom bicycle brownie cartoon ceiling channel chicken garbage promise squeeze address blanket earache excited good-bye grandma grocery indoors January kitchen lullaby monster morning naughty October pajamas pretend quarter shampoo stomach there's they'll they're they've tonight unhappy airplane alphabet bathroom favorite medicine December dinosaur elephant February football forehead headache hospital lollipop November outdoors question railroad remember sandwich scissors shoulder softball tomorrow upstairs vacation restroom astronaut beautiful bumblebee cardboard chocolate Christmas classroom cranberry drugstore furniture milkshake nightmare telephone difficult everybody hamburger September spaceship spaghetti stoplight underwear yesterday ice cream automobile blackboard downstairs photograph strawberry television toothbrush toothpaste baby-sitter post office grandfather grandmother potato chip upside down kindergarten refrigerator Thanksgiving hide-and-seek United States pumpkin salt melted handed printed landed wanted filled showed hugged tugged planned jogged spilled smelled grilled slammed rushed spelled saved baked named lined smiled closed helped jumped looked clapped tapped kicked dropped zipped wished pitched missed walked worked she'll you'll he'll we're she's he's you're we're jazz}
5
+ WORDS = %w{mitt that with they this have from word what were when your said there each which their will other about many then them these some would make like into time look more write number could people than first water been call find long down come made part over sound take only little work know place year live back give most very after thing just name good sentence think great where help through much before line right mean same tell follow came want show also around farm three small does another well large must even such because turn here went read need land different home move kind hand picture again change play spell away animal house point page letter mother answer found study still learn should America world high every near food between below country plant last school father keep tree never start city earth light thought head under story left don't while along might chose something seem next hard open example begin life always those both paper together group often important until children side feet mile night walk white began grow took river four carry state once book hear stop without second late miss idea enough face watch Indian really almost above girl sometimes mountain young talk soon list song being leave family it's best better black blue bring brown clean cold done draw drink eight fall fast five full funny gave giving goes green hold hurt jump laugh myself pick please pretty pull ride round seven shall sing sleep thank today upon warm wash wish yellow bake band bank bell belt bend bent Bess bike bite blast bled blend blimp blink bliss block blond blot bluff blunt bone brag brand brass brat bred bride brig brim broke brunt brute bump bunt bust camp cane can't cape cast clad clam clamp clan clap clasp class cliff cling clink clip close clot club clump clung cone crab craft cram cramp crib crime crisp crop crust cure cute damp dent dime dine dire dive dope draft drag drank dress drift drill drip drop drove drug drum dump dust fact fade fell felt file fill film fine fire fist flag flap flat fled fling flip flop flung flunk frame frank frill frisk frog frost froze fume gasp gaze glad gland glass glint globe glum golf grab grade gram gramp grand grant grape grasp grass grill grim grin grip gripe grump grunt gulp gust hate held hide hint hire hole honk hope hose hung hunt Jane joke junk kept kite lamp lick lift lime limp lock luck lump Mack mask mass mast mate melt mend Mick Mike milk mill mint mist mite mope mule mute neck nest nine nose note pane pant pass past pest Pete pike pile pill pine plan plane plank plate plop plot plug plum plump plus poke pole pomp pond pope prank press pride prime print prize prop punk pure raft ripe robe rock rode romp rope rose Runs runt rust sack sake sand sank save scab scale scalp scan scare scat scope scram scrap script self sell send sent sick site size skate skid skill skim skin skip skit skunk slam slang slant slap slat slate slave sled slept slide slim sling slip slob slope slot slug slum slump smack smell smile smog smoke smug snack snag snake snap sniff snip snipe snub snug sock soft span spank spat sped spend spent spill spin spine spit spite splat splint split spoke spot spun spunk stab stack stale stamp stand stem step stiff sting stink stomp stone stove strand strap strip stripe struck strung stuck stump stun suck sung swam swang swell swift swim swing swung tack tame tape tent test tide tile till tilt trade tramp trap trend trick trim trip trot trunk trust twang twig twin twist vane wave weld wind wine wire yoke absent admit album ball bang banging basket bathtub bedbug bench bill blank blasted blended blush bobsled branch brave brush bunch camping care case catnip cave chest chill chin chip chipmunk chop chunk clock cloth contest crack crash crashing crept cross crush cuff dash deck dentist dish disrupt disrupted drinking dusted expanded fang finishing fish flute Fran fuss gift goblin hall hang Hank himself hotrod huff hunted index insisted insisting insulted invent invented Jack jumping king kiss lane lapdog lasted lending loft lost lunch lung mall mascot math mess napkin pack path picnic pigpen pinball pinch planted plastic problem public publishing puff punishing quake rake rash rented rest rested rich ring ringing safe sale sang sash shack shed shelf shell shifted shine ship shop shrimp shrinking shrunk shut sink sinking sits splash splashing squinted standing Steve stub stuff stunt sunfish sunk sunlit sunset suntan swishing talented tall tank throne thud tick tilted tiptop toss trusted twisted upset vent vest wall whiff whip whiplash wing wink wipe wise yell zigzag called circle friend Mrs. nothing says Beth Bing Blanch bong Buck burnt Burt Carmen Cass caterpillar Chad cheer chomp Chuck chuckle chug Clark click climb clown cluck coal complain croak crunch Curtis curve darts dinner diver doctor doll door Doris Ellen fellow fiddle firm fishing Fitch foam forever forgot forth front Gert gobble gone gosh granddad grandpa grinned grumble hatch Herb hill horse hush insect Jeff jiggle Jill Jill's Josh jumble kick Kirk larch library lived lives market Mitch napper nibble Nick Norm onto owner patch peck perfect ping pong quick quill quilt Quinn quit reward Rick Rivera roam ruff Sanchez served Seth sister Sloan smash snort snuggle soup sparkle sprinkle squirt stick sudden sunburn surprise swimmer tadpole Tess Texas tickle toad Todd turf twinkle twitch umbrella uncle wham whirl whisper whistle wiggle window Winkle writing York zing able added afraid afternoon ahead annoy anything anyway anywhere applaud artist attack attic auto avoid awesome awful awning babble baby baffle bald ballplayer bark base baseball basin basketball batch bath battle beach bead beam bean beanstalk beast beat bedtime beef beehive beet begging behind bird birthday bleach blew blind bloom blow blown bluebird blueprint blur boast boat body boil bold bonnet bonus boost boot born bottle bowl brace braid brain brainstorm brake brawl bread breakfast breath brick bright broil broiler broom bruise bubble buddy built bundle bunk bunny burn burst buses butterfly button buzz cabin cage cake camel candle candy careful cart catch cattle cell cent chain chalk champ charge chart chase chat check cheerful cheese chess chew chick child chime chirp choice chore church churn claim classmate clay clerk clever clue clutch coach coat coax coil coin collect colorful cool core cork corn cowboy cozy crate crawl cream crew crinkle crow cruise cuddle cupcake curb curl daddy dangle Danny dark dart date dawn daylight dead deaf dealt decent deep delight desk dimple dirt ditch doghouse double dragon dragonfly drain dread dream drew driveway droop duck dunk dusk easel easy elbow enjoy ever evergreen everyone everything everywhere explore fabric fail faithful fame fault fawn feast feed feel fence fern fetch fifty fight finish firefighter flagpole flash flashlight flaunt flaw flight float flow fluffy foal foil fold fool forest forget fork form fort fraud fray free fresh Friday fried fright frozen fruit game garden gate germ giggle ginger giraffe gleam glean glow gluestick goat going gold goose Grace graceful grain grapefruit grasshopper grateful gray grew groan grown grown-up growth gumball habit hail handwriting happen happy harm harmful harp haul haunt hawk health heat heavy heel hello helpful herself hidden highway hoist homemade homework hoot hopeful hopscotch horn host houseboat housefly huddle human humid hummingbird hump hungry hunk hurdle hurl inch inside instead itch Jake Jean jeep jelly jellyfish jerk Jimmy jingle Joan join joint juggle juice jungle kickball kingfish kits kitten kitty knack knee kneecap kneel knelt knew knife knight knit knob knock knockout knot knothole known lace lack lake latch launch lawn lazy leap leather lemon less lighthouse limit link lipstick living load loaf loop loose lunchbox Mabel mail main mane march mark match Matt meant meat meet mice middle mild mind mine mitten moan model moist mold moment Monday mood motel munch music muzzle nail nanny Nate neat necktie nerve newscast newspaper nice nickname nighttime nips noise noon north nowhere oatmeal object oink ooze outside pace paddle pail pain painful paint pancake paperback park pause pawn peace peaceful peach peak peddle peep pencil pennies penny perch piano pillow pilot pink pipe pitch ploy poison pony pooch poodle pool popcorn porch port post poster potpie pretzel price proof pupil puppy purple purse puzzle quack queen quicksand rabbit race rack rage rail rain rainbow ranch rang rattle reach ready recycle refund renew restful return ribbon rice riddle rind rink rise road roast robin robot room roost royal ruled rumble runway rush saddle sail sailboat salad sample sandbox sandpaper sandy Saturday sauce saucer scarf scold scorch score scrape scratch scream screen screw scrub seal seat serve settle shade shadow shake shaking shameful shape share shark sharp sheep shipwreck shirt shore short shrink shrub shrug sidewalk sigh sight silence silly simple sips siren slice slick slight slow slur smart smiling smooth snail sneak snooze snore snow snowball snowflake snowman soak soap sofa soil someone somewhere sore sort space spark speak splendid splotch spoil spool spoon sport sprain sprawl spray spread spring sprint spruce spur squawk stage star startle stay steam steep stern stiffer stir stool store stork storm strain strange straw stray stream street stretch strict strike string strong stung suit suitcase sunblock Sunday sunflower sunny sunrise sunshine surf sway sweat sweep sweet swerve swimming swirl switch tablet tail taps tattle taught teach teacher team tease teeth tennis thankful thick thigh thimble thin thinner thinnest third thirst thorn thread threat thrill throat throw Thursday tiger tight tired toast toil told tool tooth topcoat torch torn trace traffic train trash travel tray tread treetop trouble truck trumpet Tuesday tugboat tulip tumble tummy turtle tusk twirl ugly unzip useful value vanish verb verse vine visit visitor voice void vote waddle wage wagon wait wake waves wealth weather weave Wednesday weed week weekend wettest whack whale whatever wheat wheel whenever whisk whiz wide wife wild windmill wonderful wore worn wrap wreath wreck wrench wriggle wrinkle wrist wristwatch written wrong wrote yard yardstick yarn yawn Zack zebra zoom winter wear mitten bait barn bawl beak birth blab blade blame blaze bleed bless blip blurb blurt bond books booth boys brad bran brawn brisk brook broth brother card cash cask cheap cheek chow clack clang clash claw cloak clod coast code cook coop cord cost count crane crick crock crook crown crude crumb cube dear disk dock doze drake drape drawn drive dude east faint flake flame flesh flick flirt flit flock floor flour flown flush fond foot fowl Fred fret frizz frying fuse gang glade glaze glee glen glide glob gloss goal gown grate greet grit grouch growl gruff heal heap hike hood hoof hook hoop howl huge husk intern jail June laid lame leak lend lent lien lint loan loin lone loot lord loud lurk lute maid maze meal mirth mock mole moon mouse mouth murk musk nook nurse paid peek peel pelt perk plain plants player plod plow plums pork prance pray prayer present prim prince probe prod program proud prowl punt raid rant real rent risk Rome roof rude rung scald scar scoop scoot scout scowl scuff scum seek seen shawl sheet shirk shook shoot shot shout shown sift silk sixth skips skirt skull slash slaw slay slid slit slop smear smith smock smoky snare snatch sneeze snob snoop snuff soot sour south speck speech speed spike spry spud spurn spurt stain stall Stan steal stood sulk swamp swan swap swarm swat swatch swept swig swine swish swoop sworn swum tale task tend tenth term thumb tint tock town toys track trail tram trek tribe trod Troy tune tweed tweet twelve twenty twice twine twitter urge uses vase wade wept west whine whir wick wilt woke wood woof wool wove zest zone against American among asked course days didn't during eyes general given however later order possible president rather since states system things though toward united used years color suddenly zipper ache aunt bare bear boom busy dare lose love none rule sure tire tube copy edge else fizz glue hair half hour I'll I've July kill lady lamb leaf liar lion mama mash meow mush obey okay ouch oven papa pour push roll shoe soda tiny worm true U.S. agree alive apple April awake blood break chair cloud cough cover dance erase phone piece whole whose adult angry belly death eagle empty extra hurry maybe money movie nasty party pizza quiet sorry stair sugar table taste threw touch towel truth waist waste woman women won't worse anyone arrive asleep August avenue behave bridge carpet cereal choose cookie corner crayon danger minute banana bucket carrot dollar finger flower gentle handle listen mirror monkey nickel nobody orange parent person pocket potato puppet rocket search secret seesaw shovel shower silent spider sponge squash squeak sticky summer supper they'd ticket tiptoe tissue tomato tongue turkey unfair wonder U.S.A. airport anybody balloon bedroom bicycle brownie cartoon ceiling channel chicken garbage promise squeeze address blanket earache excited good-bye grandma grocery indoors January kitchen lullaby monster morning naughty October pajamas pretend quarter shampoo stomach there's they'll they're they've tonight unhappy airplane alphabet bathroom favorite medicine December dinosaur elephant February football forehead headache hospital lollipop November outdoors question railroad remember sandwich scissors shoulder softball tomorrow upstairs vacation restroom astronaut beautiful bumblebee cardboard chocolate Christmas classroom cranberry drugstore furniture milkshake nightmare telephone difficult everybody hamburger September spaceship spaghetti stoplight underwear yesterday ice cream automobile blackboard downstairs photograph strawberry television toothbrush toothpaste baby-sitter post office grandfather grandmother potato chip upside down kindergarten refrigerator Thanksgiving hide-and-seek United States pumpkin salt melted handed printed landed wanted filled showed hugged tugged planned jogged spilled smelled grilled slammed rushed spelled saved baked named lined smiled closed helped jumped looked clapped tapped kicked dropped zipped wished pitched missed walked worked she'll you'll he'll we're she's he's you're we're jazz}.freeze
6
6
 
7
7
  def self.one
8
8
  WORDS.sample
@@ -21,16 +21,16 @@ module Mockdata
21
21
  end
22
22
 
23
23
  # Return _number words
24
- def self.pick(_number)
24
+ def self.pick(number)
25
25
  arr = []
26
- 1.upto(_number) { arr << WORDS.sample }
26
+ 1.upto(number) { arr << WORDS.sample }
27
27
  arr.join(" ")
28
28
  end
29
29
 
30
30
  # Return _range (x..y) words
31
- def self.some(_range)
31
+ def self.some(range)
32
32
  arr = []
33
- count = rand(_range)
33
+ count = rand(range)
34
34
  1.upto(count) { arr << one }
35
35
  arr.join(" ")
36
36
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mockdata
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Erik van Eykelen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-07-12 00:00:00.000000000 Z
11
+ date: 2016-12-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -83,7 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
83
83
  version: '0'
84
84
  requirements: []
85
85
  rubyforge_project:
86
- rubygems_version: 2.5.1
86
+ rubygems_version: 2.5.2
87
87
  signing_key:
88
88
  specification_version: 4
89
89
  summary: Random data generator for test purposes