thing_randomizer 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e254d15ef9fa2c2c0fa639180af558d5ba9ed041
4
+ data.tar.gz: 7e0e492984992c8a822d319c42a0f80a66d36694
5
+ SHA512:
6
+ metadata.gz: 7c71434b3e3ce850df2a1c84f0ff5f7a0b9ebea787988da67c43e1a2ef0c231a42391247077b553a8e31768ac66a0e01a915e5bf277d74a77eac724440db8673
7
+ data.tar.gz: 326e88a364b25bee5429e6732926c85a63331b4b4b4f622b4cb56849984440c3d107cc4b671c383260dccaa2bb4451efd2fe0ebf7888af5c9e7dbc7361383547
@@ -0,0 +1,9 @@
1
+ module ThingRandomizer
2
+ class Name
3
+ NAMES = ["Aaron Milam", "Steve Grossi", "Seth Baughman", 'Kyle Prifogle']
4
+
5
+ def self.get_random
6
+ NAMES.sample
7
+ end
8
+ end
9
+ end
@@ -0,0 +1 @@
1
+ require "thing_randomizer/name"
metadata ADDED
@@ -0,0 +1,45 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: thing_randomizer
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Aaron Milam
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-01-12 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: It's a thing that gives you random things
14
+ email: armilam@gmail.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - lib/thing_randomizer.rb
20
+ - lib/thing_randomizer/name.rb
21
+ homepage: https://github.com/armilam/thing_randomizer
22
+ licenses:
23
+ - MIT
24
+ metadata: {}
25
+ post_install_message:
26
+ rdoc_options: []
27
+ require_paths:
28
+ - lib
29
+ required_ruby_version: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ required_rubygems_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: 1.3.6
39
+ requirements: []
40
+ rubyforge_project:
41
+ rubygems_version: 2.6.6
42
+ signing_key:
43
+ specification_version: 4
44
+ summary: Randomizes Things
45
+ test_files: []