farva 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +3 -0
- data/Gemfile +4 -0
- data/Rakefile +2 -0
- data/farva.gemspec +21 -0
- data/lib/farva.rb +42 -0
- data/lib/farva/version.rb +3 -0
- metadata +70 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/Rakefile
ADDED
data/farva.gemspec
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "farva/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "farva"
|
7
|
+
s.version = Farva::VERSION
|
8
|
+
s.platform = Gem::Platform::RUBY
|
9
|
+
s.authors = ["Dan DeMeyere"]
|
10
|
+
s.email = ["dan@thredup.com"]
|
11
|
+
s.homepage = ""
|
12
|
+
s.summary = %q{Generate Office Farva Quotes}
|
13
|
+
s.description = %q{Just about everything.}
|
14
|
+
|
15
|
+
s.rubyforge_project = "farva"
|
16
|
+
|
17
|
+
s.files = `git ls-files`.split("\n")
|
18
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
19
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
20
|
+
s.require_paths = ["lib"]
|
21
|
+
end
|
data/lib/farva.rb
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
module Farva
|
2
|
+
def self.generate_quote
|
3
|
+
quotes = FARVA_QUOTE_LIBRARY.shuffle!
|
4
|
+
quotes.first
|
5
|
+
end
|
6
|
+
|
7
|
+
FARVA_QUOTE_LIBRARY = []
|
8
|
+
FARVA_QUOTE_LIBRARY << "Want me to punch-a-size your face, for free?"
|
9
|
+
FARVA_QUOTE_LIBRARY << "Farva: Gimme a litre o' cola. \r
|
10
|
+
Burger Guy: What? \r
|
11
|
+
Farva: A litre o' cola.\r
|
12
|
+
Burger Guy: Litrecola? Do we sell litrecola? \r
|
13
|
+
Thorny: Will you just order a large, Farva? \r
|
14
|
+
Farva: I don't want a large farva. I want a goddamn litre o' cola!"
|
15
|
+
FARVA_QUOTE_LIBRARY << "Say car Ram-Rod."
|
16
|
+
FARVA_QUOTE_LIBRARY << "Just cleaning out the old locker, she stinks like ass but I'll sure
|
17
|
+
miss her... I guess you could say that about all my girls."
|
18
|
+
FARVA_QUOTE_LIBRARY << "Hey, let's pop some Viagras and issue tickets with raging, mega-huge boners."
|
19
|
+
FARVA_QUOTE_LIBRARY << "Police Chief Grady: I'm sorry about that delousing. Just standard procedure.\r
|
20
|
+
Farva: It's powdered sugar. \r
|
21
|
+
Police Chief Grady: The lice hate the sugar. \r
|
22
|
+
Farva: It's delicious."
|
23
|
+
FARVA_QUOTE_LIBRARY << "You mean Shenanigans?"
|
24
|
+
FARVA_QUOTE_LIBRARY << "Don't call me radio, unit 91."
|
25
|
+
FARVA_QUOTE_LIBRARY << "Farva: What's this? \r
|
26
|
+
Rabbit: A chamois cloth. \r
|
27
|
+
Farva: Ha. Lucky guess. I just lost a buck. To myself."
|
28
|
+
FARVA_QUOTE_LIBRARY << "Rabbit: Oh, look, a bar of soap.\r
|
29
|
+
Farva: Oohoohoh shit. I got you good, you f*****! \r
|
30
|
+
Mac: Awesome prank, Farva. \r
|
31
|
+
Farva: Better'n the crap you pull, Mac."
|
32
|
+
FARVA_QUOTE_LIBRARY << "Who can say \"meow\" the most? You guys are real crazy, hey look out for these guys."
|
33
|
+
FARVA_QUOTE_LIBRARY << "Farva: MacAttack, wanna go punch for punch? \r
|
34
|
+
[Mac punches Farva in the stomach] \r
|
35
|
+
Farva: Oooh good one, I did not specify. Never shit a shitter."
|
36
|
+
FARVA_QUOTE_LIBRARY << "Who wants cream? Nobody? Okay, no cream."
|
37
|
+
FARVA_QUOTE_LIBRARY << "Unit 91, unit 91? C'mon Unit 91, quit counting your pubes we have a pursuit out here"
|
38
|
+
FARVA_QUOTE_LIBRARY << "Captain O'Hagan: There was a time when we'd take a guy like you in the back and beat
|
39
|
+
you with a hose. Now you've got your God-damned unions. \r
|
40
|
+
Farva: Cap'n... you know I'm not a pro-union guy."
|
41
|
+
FARVA_QUOTE_LIBRARY << "Sing it again, rookie biatch!"
|
42
|
+
end
|
metadata
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: farva
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 5
|
8
|
+
- 0
|
9
|
+
version: 0.5.0
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Dan DeMeyere
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2011-06-21 00:00:00 -07:00
|
18
|
+
default_executable:
|
19
|
+
dependencies: []
|
20
|
+
|
21
|
+
description: Just about everything.
|
22
|
+
email:
|
23
|
+
- dan@thredup.com
|
24
|
+
executables: []
|
25
|
+
|
26
|
+
extensions: []
|
27
|
+
|
28
|
+
extra_rdoc_files: []
|
29
|
+
|
30
|
+
files:
|
31
|
+
- .gitignore
|
32
|
+
- Gemfile
|
33
|
+
- Rakefile
|
34
|
+
- farva.gemspec
|
35
|
+
- lib/farva.rb
|
36
|
+
- lib/farva/version.rb
|
37
|
+
has_rdoc: true
|
38
|
+
homepage: ""
|
39
|
+
licenses: []
|
40
|
+
|
41
|
+
post_install_message:
|
42
|
+
rdoc_options: []
|
43
|
+
|
44
|
+
require_paths:
|
45
|
+
- lib
|
46
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
47
|
+
none: false
|
48
|
+
requirements:
|
49
|
+
- - ">="
|
50
|
+
- !ruby/object:Gem::Version
|
51
|
+
segments:
|
52
|
+
- 0
|
53
|
+
version: "0"
|
54
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
55
|
+
none: false
|
56
|
+
requirements:
|
57
|
+
- - ">="
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
segments:
|
60
|
+
- 0
|
61
|
+
version: "0"
|
62
|
+
requirements: []
|
63
|
+
|
64
|
+
rubyforge_project: farva
|
65
|
+
rubygems_version: 1.3.7
|
66
|
+
signing_key:
|
67
|
+
specification_version: 3
|
68
|
+
summary: Generate Office Farva Quotes
|
69
|
+
test_files: []
|
70
|
+
|