keith 0.0.3

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.
Files changed (6) hide show
  1. checksums.yaml +15 -0
  2. data/Rakefile +8 -0
  3. data/bin/keith +4 -0
  4. data/lib/keith.rb +51 -0
  5. data/test/test_keith.rb +8 -0
  6. metadata +48 -0
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ NDc5ZWUyNjFhZDg2OWU0ZjZhZjNjY2I3Y2U1OTI5MTI1YzBhYTliNw==
5
+ data.tar.gz: !binary |-
6
+ ZjdlNjQ3NDk5YjNjNTBkN2FkOTQ5YmY5ZmE5MDkwNTQzNTc3OTBkYg==
7
+ !binary "U0hBNTEy":
8
+ metadata.gz: !binary |-
9
+ OTE5Mzc4OWYzN2RkNmY3NjNkZTNkOWYwN2RmOGFlMDkzNzAxMTNhYzEyZmVj
10
+ MzMwNWY2OTg1NWFlNDBiZDk1YTMzODA1ZTBmYzRlYTZlNTY0MjE1YzVlNThm
11
+ YzM5NDViODQ2YTRjMzU2NTY2MTZhNmM5ZTU0ZmMwNjJmYzYzNWE=
12
+ data.tar.gz: !binary |-
13
+ OGQ2ZmZhNjc4Nzg2NzQ1YmFmMzVkODQ3ZmU0NmM3NzM0MTNkOWM0MzM3MmNj
14
+ NWYyODVlOTEyN2IzMzllZDk0ZjRjOTUwY2MxMzFkMTY0YWJlMGFmNjQwZGE2
15
+ NjE4NDcxYzU4N2JmMzllNTI2ZGU2YjBkYzBkZmJlNTQxOGRlNWU=
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ require 'rake/testtask'
2
+
3
+ Rake::TestTask.new do |t|
4
+ t.libs << 'test'
5
+ end
6
+
7
+ desc "Run tests"
8
+ task :default => :test
data/bin/keith ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'keith'
4
+ puts Keith.hi
data/lib/keith.rb ADDED
@@ -0,0 +1,51 @@
1
+ class Keith
2
+ def self.hi
3
+ [
4
+ 'Keith is Leghorn',
5
+ 'Keith has never not been bald',
6
+ 'Keith pretends to know German',
7
+ 'Keith does all his work in dreamweaver',
8
+ "Keith's favorite color is transparent",
9
+ "Keith owns ten pairs of jeggings",
10
+ "Keith finds Kierkegaard's presupposition on existentialliasm to be rather pedantic",
11
+ "Keith dreams in colors. Specifically in #ggg.",
12
+ "Keith can refactor the entire source code of Citizen using just CSS.",
13
+ "Keith can adapt to any culture thanks to his responsive grid",
14
+ "Keith holds the copyright for the word Keith. In every market domain. Worldwide. Forever.",
15
+ "The real first name of Chuck Norris is Keith, but he changed it for respect to the real Keith.",
16
+ "Keith's favorite design software is Corel Draw 6.",
17
+ "Keith occupies the 345th position in the line of succession to the British throne.",
18
+ "CMYK stands for Cyan, Magenta, Yellow, Keith",
19
+ "Keith can design an artistic masterpiece on a calculator",
20
+ "Keith once challenged Andy Warhol to a design-off. The loser had to start painting cans of soup",
21
+ "Keith can win a game of Connect Four in only three moves",
22
+ "Keith knows the other name for Thesaurus",
23
+ "Keith pays for his fonts",
24
+ "Keith owns a precision scale that can measure font weight",
25
+ "Keith is so low-res he can't even save for web",
26
+ "Keith added Tooth Brush to his Photoshop",
27
+ "Keith can Edit > Undo real life events.",
28
+ "Keith had a small part in Star Wars",
29
+ "Keith shot the serif (but he didn't shoot the deputy)",
30
+ "Underneath Keith's beard is a Wacom tablet.",
31
+ "Keith once sneezed into a tissue and handed it to a struggling artist for inspiration - that artist was Jackson Pollock.",
32
+ "Keith invented this joke: What happened when #ff0000 had a baby with #ffff00? #ff6600",
33
+ "The reason Banksy decided to have a secret identity? Keith told him to do it.",
34
+ "Keith is currently in his blue period",
35
+ "Keith can grant you three wishes if you ask politely",
36
+ "GOOD was initially known as The GOOD. Keith suggested to drop The.",
37
+ "Keith can round pixels even though he can't count.",
38
+ "Keith only orders from a dropdown menu.",
39
+ "Keith's New Year's resolution is 300dpi.",
40
+ "Keith can spot serifs a mile away.",
41
+ "Keith's handwriting is Comic Sans.",
42
+ "Keith is terrified of dying and going to Helvetica.",
43
+ "Keith thinks 'kern' is on the cob.",
44
+ "Keith is a trademark, but everyone can use it as long as they credit Keith.",
45
+ "Keith's grandparents were half French and half Italic.",
46
+ "Lorem Ipsum is Keith's native tongue.",
47
+ "Keith got his first haircut in utero.",
48
+ "Keith's cat makes him sleep on the floor."
49
+ ].sample
50
+ end
51
+ end
@@ -0,0 +1,8 @@
1
+ require 'test/unit'
2
+ require 'keith'
3
+
4
+ class KeithTest < Test::Unit::TestCase
5
+ def test_keith
6
+ assert_match "Keith", Keith.hi
7
+ end
8
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: keith
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3
5
+ platform: ruby
6
+ authors:
7
+ - Claudio B
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2010-04-03 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Keith makes shit happen
14
+ email: claudiob@gmail.com
15
+ executables:
16
+ - keith
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - Rakefile
21
+ - lib/keith.rb
22
+ - bin/keith
23
+ - test/test_keith.rb
24
+ homepage: http://rubygems.org/gems/keith
25
+ licenses: []
26
+ metadata: {}
27
+ post_install_message:
28
+ rdoc_options: []
29
+ require_paths:
30
+ - lib
31
+ required_ruby_version: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ! '>='
34
+ - !ruby/object:Gem::Version
35
+ version: '0'
36
+ required_rubygems_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ! '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ requirements: []
42
+ rubyforge_project:
43
+ rubygems_version: 2.0.2
44
+ signing_key:
45
+ specification_version: 3
46
+ summary: Keith!
47
+ test_files:
48
+ - test/test_keith.rb