faker-stoked 0.2.4 → 0.2.5
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 +4 -4
- data/.ruby-gemset +1 -1
- data/VERSION +1 -1
- data/faker-stoked.gemspec +10 -11
- data/lib/{faker_bro_bio.rb → faker/bio.rb} +0 -0
- data/lib/{faker_bro_words.rb → faker/bro_words.rb} +0 -0
- data/lib/faker/stokebot/intro.rb +58 -0
- data/lib/faker/stokebot/object.rb +34 -0
- data/lib/faker/stokebot/subject.rb +35 -0
- data/lib/faker/stokebot/verb.rb +34 -0
- data/lib/faker/stokebot.rb +84 -0
- data/lib/stoked.rb +9 -0
- data/test/helper.rb +1 -2
- data/test/test_faker-stoked.rb +53 -1
- metadata +10 -11
- data/lib/faker/stoked.rb +0 -5
- data/lib/intro_file.txt +0 -39
- data/lib/object_file.txt +0 -17
- data/lib/stoke_bot.rb +0 -86
- data/lib/subject_file.txt +0 -18
- data/lib/verb_file.txt +0 -17
- data/test/test_faker-stokebot.rb +0 -22
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8d561d016ff504ed2f761dae1eaafd4125ef6ec9
|
|
4
|
+
data.tar.gz: 0e0b1470a0fd035dcdbba7233c000cc6f3750962
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1a3f76ca01fa59a07372d8aef89101633547b1f86c1938f96b0832ceb7a3689899f3bc7b4a0c0d92de22b8060da0ea74ade603b3b2ad3480000fb467354fc586
|
|
7
|
+
data.tar.gz: bdf1ec02d54f14b0326441b6c654d0149f7f56ef814d5071406c060e8f5b18829b5d49214b8ce5fd66335d09ae01a52b53ab0c8cc94713a729deb825ff11b36c
|
data/.ruby-gemset
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
faker-stoked
|
|
1
|
+
faker-stoked
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.5
|
data/faker-stoked.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "faker-stoked"
|
|
8
|
-
s.version = "0.2.
|
|
8
|
+
s.version = "0.2.5"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Frederick D. Schoeneman"]
|
|
12
|
-
s.date = "2013-12-
|
|
12
|
+
s.date = "2013-12-06"
|
|
13
13
|
s.description = "This is an extension of the faker gem, allowing stoked bros and brodies to effortlessly generate stoked bios, that are both radical and awesome while simultaneously pitted. It also provides a rich, creamy variety of methods to generate bro words."
|
|
14
14
|
s.email = "fred.schoeneman@gmail.com"
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -28,16 +28,15 @@ Gem::Specification.new do |s|
|
|
|
28
28
|
"Rakefile",
|
|
29
29
|
"VERSION",
|
|
30
30
|
"faker-stoked.gemspec",
|
|
31
|
-
"lib/faker/
|
|
32
|
-
"lib/
|
|
33
|
-
"lib/
|
|
34
|
-
"lib/
|
|
35
|
-
"lib/
|
|
36
|
-
"lib/
|
|
37
|
-
"lib/
|
|
38
|
-
"lib/
|
|
31
|
+
"lib/faker/bio.rb",
|
|
32
|
+
"lib/faker/bro_words.rb",
|
|
33
|
+
"lib/faker/stokebot.rb",
|
|
34
|
+
"lib/faker/stokebot/intro.rb",
|
|
35
|
+
"lib/faker/stokebot/object.rb",
|
|
36
|
+
"lib/faker/stokebot/subject.rb",
|
|
37
|
+
"lib/faker/stokebot/verb.rb",
|
|
38
|
+
"lib/stoked.rb",
|
|
39
39
|
"test/helper.rb",
|
|
40
|
-
"test/test_faker-stokebot.rb",
|
|
41
40
|
"test/test_faker-stoked.rb"
|
|
42
41
|
]
|
|
43
42
|
s.homepage = "http://github.com/fdschoeneman/faker-stoked"
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
|
|
2
|
+
module Faker
|
|
3
|
+
|
|
4
|
+
class Stoked
|
|
5
|
+
|
|
6
|
+
class << self
|
|
7
|
+
|
|
8
|
+
def intros
|
|
9
|
+
[
|
|
10
|
+
"To properly understand a stoke factor (S),",
|
|
11
|
+
"On the other hand,",
|
|
12
|
+
"From the non-racical point of view",
|
|
13
|
+
"This suggests that",
|
|
14
|
+
"It appears that",
|
|
15
|
+
"Furthermore,",
|
|
16
|
+
"We will blow your mind with the following paradigm:",
|
|
17
|
+
"To bestow a bodacious structure for T(Z,K),",
|
|
18
|
+
"From C1, it follows that",
|
|
19
|
+
"For any radicalization which is sufficiently awesome in pursuit of any level of stoke,",
|
|
20
|
+
"Bronalogously,",
|
|
21
|
+
"Crystal clearly,",
|
|
22
|
+
"Note that",
|
|
23
|
+
"Of course,",
|
|
24
|
+
"Whoah?",
|
|
25
|
+
"Bro?",
|
|
26
|
+
"Suppose, like, for instance, that",
|
|
27
|
+
"Thus",
|
|
28
|
+
"Por ejemplo",
|
|
29
|
+
"With this trip,",
|
|
30
|
+
"Conversely,",
|
|
31
|
+
"We have already been knowledge that",
|
|
32
|
+
"By combining stoke and certain reformulations of the dominant extreme paradigm,",
|
|
33
|
+
"I suggested that these bodaciouus images would flow from the realization that",
|
|
34
|
+
"If the gestalt of the grinding in (99c) were only partially tangible to stokeologists,",
|
|
35
|
+
"However, this awe-assumption is not correct, since",
|
|
36
|
+
"Comparing these extreme stoked videos with their bestoked gap aficionados in (96) and (97), we see that",
|
|
37
|
+
"In the discussion of stoked endeavors following (81),",
|
|
38
|
+
"So far,",
|
|
39
|
+
"Nevertheless,",
|
|
40
|
+
"For one thing,",
|
|
41
|
+
"Summarizing, then, we assume that",
|
|
42
|
+
"A consequence of the approach just knowledged to you is that",
|
|
43
|
+
"Presumably,",
|
|
44
|
+
"On our assumptions,",
|
|
45
|
+
"It may be, then, that",
|
|
46
|
+
"It must be emphasized, once again, that",
|
|
47
|
+
"Let us continue to suppose that",
|
|
48
|
+
"Notice, incidentally, that"
|
|
49
|
+
|
|
50
|
+
]
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
def intro
|
|
54
|
+
intros.sample
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
end
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
module Faker
|
|
2
|
+
|
|
3
|
+
class Stoked
|
|
4
|
+
|
|
5
|
+
class << self
|
|
6
|
+
|
|
7
|
+
def objects
|
|
8
|
+
[
|
|
9
|
+
"problems of athletic and free-spirited analysis.",
|
|
10
|
+
"a corpus of bro-isms and bro-sayings upon which conformity has been defined by the paired bro-ism text.",
|
|
11
|
+
"the traditional practice of stoked bros.",
|
|
12
|
+
"the levels of stoke from fairly high (eg (99a)) to virtual clown car antics (eg (98d)).",
|
|
13
|
+
"a stipulation to place the stoked/awesome/radical/clowncar into these various categories.",
|
|
14
|
+
"a bromazing fact.",
|
|
15
|
+
"a YOLO gap bro-ism.",
|
|
16
|
+
"the extended YOLO/BrOLO construct discussed in connection with (34).",
|
|
17
|
+
"the ultimate standard that determines the brohemian level of any proposed radicalization.",
|
|
18
|
+
"the system of base bro-words exclusive of the bro dialect.",
|
|
19
|
+
"irrelevant intervening contexts in selectional rules.",
|
|
20
|
+
"nondistinctness in the sense of distinctive bro theory.",
|
|
21
|
+
"a general convention regarding the forms of the stoke linguistics.",
|
|
22
|
+
"an abstract underlying sub-stoke order.",
|
|
23
|
+
"an important distinction in stoked language use.",
|
|
24
|
+
"the requirement that stoke-branching is not tolerated within the dominance stoke-scope of a complex bro-symbol.",
|
|
25
|
+
"the strong generative capacity of the stoke-theory."
|
|
26
|
+
]
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
def object
|
|
30
|
+
objects.sample
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
end
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
module Faker
|
|
2
|
+
|
|
3
|
+
class Stoked
|
|
4
|
+
|
|
5
|
+
class << self
|
|
6
|
+
|
|
7
|
+
def subjects
|
|
8
|
+
[
|
|
9
|
+
"the notion of level of awesomeness or even pitted awesomeness",
|
|
10
|
+
"a case of pitted stoke of a different sort",
|
|
11
|
+
"most of the methodological fearlessness rampant in modern stokeology",
|
|
12
|
+
"a subset of stoked concepts interesting on pitted, yet non-determinate grounds",
|
|
13
|
+
"the natural general bro-principle that will stoke this case",
|
|
14
|
+
"an important bro-property or broperty of these three stochetypes of EC",
|
|
15
|
+
"any broficient supporting stoke graph",
|
|
16
|
+
"the appearance of non-stoked gaps in domains relatively immune to ordinary pitted radicalization",
|
|
17
|
+
"the athlete/groupie constructed intuition or bro-sense",
|
|
18
|
+
"the descriptive power of the base bro-paradigm",
|
|
19
|
+
"the earlier bro discussion of brofanity",
|
|
20
|
+
"this analysis of a stoked construct as a pair of sets of awesome features",
|
|
21
|
+
"this selectionally introduced bro-contextual feature",
|
|
22
|
+
"a descriptively adequate bro-language",
|
|
23
|
+
"the fundamental error of regarding bros and/or brodies as less than intellectual",
|
|
24
|
+
"relational information vis-a-vis stoke-factor and bro/brodiness",
|
|
25
|
+
"the systematic and stoked use of complex bro-isms",
|
|
26
|
+
"the theory of stoked bro characteristics developed earlier"
|
|
27
|
+
]
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
def subject
|
|
31
|
+
subjects.sample
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
end
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
module Faker
|
|
2
|
+
|
|
3
|
+
class Stoked
|
|
4
|
+
|
|
5
|
+
class << self
|
|
6
|
+
|
|
7
|
+
def verbs
|
|
8
|
+
[
|
|
9
|
+
"can be defined in such a way as to impose",
|
|
10
|
+
"delimits in a stoked/non-stoked construct",
|
|
11
|
+
"suffices to account for",
|
|
12
|
+
"cannot be non-pitted in",
|
|
13
|
+
"is not stoked or pitted to",
|
|
14
|
+
"does not readily tolerate",
|
|
15
|
+
"raises all-natural doubts about",
|
|
16
|
+
"is not quite bronalogous to",
|
|
17
|
+
"does not bromanticize the structure of",
|
|
18
|
+
"may remedy and, at the same time, de-fearify",
|
|
19
|
+
"is not to be considered in bro metamorphosis",
|
|
20
|
+
"is to be regarded as",
|
|
21
|
+
"is unspecified with respect to",
|
|
22
|
+
"is, apparently, brotesquley cerebralized by",
|
|
23
|
+
"is necessary to impose an interpretation on",
|
|
24
|
+
"appears to correlate rather fearelessly with",
|
|
25
|
+
"is rather bronificent relative to"
|
|
26
|
+
]
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
def verb
|
|
30
|
+
verbs.sample
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
end
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
module Faker
|
|
2
|
+
|
|
3
|
+
class Stoked
|
|
4
|
+
|
|
5
|
+
class << self
|
|
6
|
+
|
|
7
|
+
def paragraphs(paragraph_count = 3)
|
|
8
|
+
paragraphs = []
|
|
9
|
+
paragraph_count.times do
|
|
10
|
+
paragraphs << paragraph
|
|
11
|
+
end
|
|
12
|
+
paragraphs.join(" ")
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
# a stoked developer brodie might want multiple stoked paragraphs for her bros
|
|
16
|
+
# and/or brodies, and can pass in the number of paragraphs she would
|
|
17
|
+
# like go generate as an argument. Output similar to sentences()
|
|
18
|
+
#
|
|
19
|
+
# Faker::StokeBot.paragraphs(2)
|
|
20
|
+
# => ""Whoah? the athlete/groupie constructed intuition suffices to account
|
|
21
|
+
# for an important distinction in language use. By combining stoke and certain
|
|
22
|
+
# reformulations of the dominant extreme paradigm, the appearance of
|
|
23
|
+
# non-stoked gaps in domains relatively inaccessible to ordinary
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
def paragraph
|
|
27
|
+
sentences(5)
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
# a stoked developer bro might multiple stoked sentences for his bros,
|
|
31
|
+
# in which case the bro would pass in the number of sentences he would
|
|
32
|
+
# like go generate as an argument. shout out to chomskybot, bro.
|
|
33
|
+
#
|
|
34
|
+
# Faker::StokeBot.sentence(8)
|
|
35
|
+
# => ""Whoah? the athlete/groupie constructed intuition suffices to account
|
|
36
|
+
# for an important distinction in language use. By combining stoke and certain
|
|
37
|
+
# reformulations of the dominant extreme paradigm, the appearance of
|
|
38
|
+
# non-stoked gaps in domains relatively inaccessible to ordinary
|
|
39
|
+
# radicalization raises serious doubts about irrelevant intervening
|
|
40
|
+
# contexts in selectional rules. Note that this analysis of a stoked
|
|
41
|
+
# construct as a pair of sets of awesome features appears to correlate
|
|
42
|
+
# rather closely with the system of base rules exclusive of the bro dialect.
|
|
43
|
+
# For one thing, the systematic use of complex bro-isms is not subject to
|
|
44
|
+
# the strong generative capacity of the theory. To bestow a bodacious structure
|
|
45
|
+
# for T(Z,K), the systematic use of complex bro-isms is not to be considered
|
|
46
|
+
# in determining a descriptive fact. From C1, it follows that a case of
|
|
47
|
+
# semicenteredness of a different sort raises serious doubts about an abstract
|
|
48
|
+
# underlying order. So far, the earlier discussion of deviance is, apparently,
|
|
49
|
+
# ...
|
|
50
|
+
def sentences(sentence_count = 3)
|
|
51
|
+
sentences = []
|
|
52
|
+
sentence_count.times do
|
|
53
|
+
sentences << sentence
|
|
54
|
+
end
|
|
55
|
+
sentences.join(" ")
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
# a stoked developer bro might need a stoked sentence for his bros
|
|
59
|
+
#
|
|
60
|
+
# Faker::StokeBot.sentence
|
|
61
|
+
# => "Brotastic but stokealicious skeleton rider. Love shredding sick pow,
|
|
62
|
+
# brodacious raising money for breast cancer, Gordon Lightfoot.
|
|
63
|
+
def sentence
|
|
64
|
+
[intro, subject, verb, object].join(" ")
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
# def intro
|
|
68
|
+
# File.readlines("lib/intro_file.txt").sample.delete("\n")
|
|
69
|
+
# end
|
|
70
|
+
|
|
71
|
+
# def subject
|
|
72
|
+
# File.readlines("lib/subject_file.txt").sample.delete("\n")
|
|
73
|
+
# end
|
|
74
|
+
|
|
75
|
+
# def verb
|
|
76
|
+
# File.readlines("lib/verb_file.txt").sample.delete("\n")
|
|
77
|
+
# end
|
|
78
|
+
|
|
79
|
+
# def object
|
|
80
|
+
# File.readlines("lib/object_file.txt").sample.delete("\n")
|
|
81
|
+
# end
|
|
82
|
+
end
|
|
83
|
+
end
|
|
84
|
+
end
|
data/lib/stoked.rb
ADDED
data/test/helper.rb
CHANGED
|
@@ -11,8 +11,7 @@ require 'minitest/autorun'
|
|
|
11
11
|
|
|
12
12
|
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
|
13
13
|
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
14
|
-
require '
|
|
15
|
-
require 'stoke_bot'
|
|
14
|
+
require 'stoked'
|
|
16
15
|
|
|
17
16
|
# class MiniTest::Unit::TestCase
|
|
18
17
|
# end
|
data/test/test_faker-stoked.rb
CHANGED
|
@@ -7,7 +7,7 @@ class TestFakerStoked < Minitest::Test
|
|
|
7
7
|
describe "Stoked" do
|
|
8
8
|
|
|
9
9
|
stoked_methods = Faker::Stoked.methods(false)
|
|
10
|
-
standalone_methods = [:bio, :intmodifier]
|
|
10
|
+
standalone_methods = [:bio, :intmodifier, :sentences, :paragraphs, :sentence, :paragraph]
|
|
11
11
|
stoked_methods.each do |stoked_method|
|
|
12
12
|
|
|
13
13
|
it "must respond to #{stoked_method}" do
|
|
@@ -51,5 +51,57 @@ class TestFakerStoked < Minitest::Test
|
|
|
51
51
|
(10..30).to_a.must_include bio.split.size
|
|
52
52
|
end
|
|
53
53
|
end
|
|
54
|
+
|
|
55
|
+
describe "sentence" do
|
|
56
|
+
|
|
57
|
+
it "must return a string" do
|
|
58
|
+
sentence = Faker::Stoked.sentence()
|
|
59
|
+
sentence.class.must_equal String
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
it "must be more than a few words long" do
|
|
63
|
+
bio = Faker::Stoked.sentence
|
|
64
|
+
bio.split.size.must_be :>=, 10
|
|
65
|
+
end
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
describe "paragraph" do
|
|
69
|
+
|
|
70
|
+
it "must return a string" do
|
|
71
|
+
sentence = Faker::Stoked.sentence()
|
|
72
|
+
sentence.class.must_equal String
|
|
73
|
+
end
|
|
74
|
+
|
|
75
|
+
it "must be more than a few words long" do
|
|
76
|
+
bio = Faker::Stoked.paragraph()
|
|
77
|
+
bio.split.size.must_be :>=, 25
|
|
78
|
+
end
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
describe "sentences()" do
|
|
82
|
+
|
|
83
|
+
it "must return a string" do
|
|
84
|
+
sentence = Faker::Stoked.sentences(5)
|
|
85
|
+
sentence.class.must_equal String
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
it "must be more than a few words long" do
|
|
89
|
+
bio = Faker::Stoked.sentences(5)
|
|
90
|
+
bio.split.size.must_be :>=, 100
|
|
91
|
+
end
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
describe "paragraphs()" do
|
|
95
|
+
|
|
96
|
+
it "must return a string" do
|
|
97
|
+
sentence = Faker::Stoked.paragraphs()
|
|
98
|
+
sentence.class.must_equal String
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
it "must be more than a few words long" do
|
|
102
|
+
bio = Faker::Stoked.paragraphs()
|
|
103
|
+
bio.split.size.must_be :>=, 250
|
|
104
|
+
end
|
|
105
|
+
end
|
|
54
106
|
end
|
|
55
107
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: faker-stoked
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Frederick D. Schoeneman
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-12-
|
|
11
|
+
date: 2013-12-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faker
|
|
@@ -129,16 +129,15 @@ files:
|
|
|
129
129
|
- Rakefile
|
|
130
130
|
- VERSION
|
|
131
131
|
- faker-stoked.gemspec
|
|
132
|
-
- lib/faker/
|
|
133
|
-
- lib/
|
|
134
|
-
- lib/
|
|
135
|
-
- lib/
|
|
136
|
-
- lib/
|
|
137
|
-
- lib/
|
|
138
|
-
- lib/
|
|
139
|
-
- lib/
|
|
132
|
+
- lib/faker/bio.rb
|
|
133
|
+
- lib/faker/bro_words.rb
|
|
134
|
+
- lib/faker/stokebot.rb
|
|
135
|
+
- lib/faker/stokebot/intro.rb
|
|
136
|
+
- lib/faker/stokebot/object.rb
|
|
137
|
+
- lib/faker/stokebot/subject.rb
|
|
138
|
+
- lib/faker/stokebot/verb.rb
|
|
139
|
+
- lib/stoked.rb
|
|
140
140
|
- test/helper.rb
|
|
141
|
-
- test/test_faker-stokebot.rb
|
|
142
141
|
- test/test_faker-stoked.rb
|
|
143
142
|
homepage: http://github.com/fdschoeneman/faker-stoked
|
|
144
143
|
licenses:
|
data/lib/faker/stoked.rb
DELETED
data/lib/intro_file.txt
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
To properly understand a stoke factor (S),
|
|
2
|
-
On the other hand,
|
|
3
|
-
From the non-racical point of view
|
|
4
|
-
This suggests that
|
|
5
|
-
It appears that
|
|
6
|
-
Furthermore,
|
|
7
|
-
We will blow your mind with the following paradigm:
|
|
8
|
-
To bestow a bodacious structure for T(Z,K),
|
|
9
|
-
From C1, it follows that
|
|
10
|
-
For any radicalization which is sufficiently awesome in pursuit of any level of stoke,
|
|
11
|
-
Analogously,
|
|
12
|
-
Crystal clearly,
|
|
13
|
-
Note that
|
|
14
|
-
Of course,
|
|
15
|
-
Whoah?
|
|
16
|
-
Bro?
|
|
17
|
-
Suppose, like, for instance, that
|
|
18
|
-
Thus
|
|
19
|
-
Por ejemplo
|
|
20
|
-
With this trip,
|
|
21
|
-
Conversely,
|
|
22
|
-
We have already been knowledge that
|
|
23
|
-
By combining stoke and certain reformulations of the dominant extreme paradigm,
|
|
24
|
-
I suggested that these bodaciouus images would flow from the realization that
|
|
25
|
-
If the gestalt of the grinding in (99c) were only partially tangible to stokeologists,
|
|
26
|
-
However, this awe-assumption is not correct, since
|
|
27
|
-
Comparing these extreme stoked videos with their bestoked gap aficionados in (96) and (97), we see that
|
|
28
|
-
In the discussion of stoked endeavors following (81),
|
|
29
|
-
So far,
|
|
30
|
-
Nevertheless,
|
|
31
|
-
For one thing,
|
|
32
|
-
Summarizing, then, we assume that
|
|
33
|
-
A consequence of the approach just knowledged to you is that
|
|
34
|
-
Presumably,
|
|
35
|
-
On our assumptions,
|
|
36
|
-
It may be, then, that
|
|
37
|
-
It must be emphasized, once again, that
|
|
38
|
-
Let us continue to suppose that
|
|
39
|
-
Notice, incidentally, that
|
data/lib/object_file.txt
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
problems of athletic and free-spirited analysis.
|
|
2
|
-
a corpus of bro-isms and bro-sayings upon which conformity has been defined by the paired bro-ism text.
|
|
3
|
-
the traditional practice of stoked bros.
|
|
4
|
-
the levels of stoke from fairly high (eg (99a)) to virtual clown car antics (eg (98d)).
|
|
5
|
-
a stipulation to place the stoked/awesome/radical/clowncar into these various categories.
|
|
6
|
-
a bromazing fact.
|
|
7
|
-
a YOLO gap bro-ism.
|
|
8
|
-
the extended YOLO/BrOLO construct discussed in connection with (34).
|
|
9
|
-
the ultimate standard that determines the brohemian level of any proposed radicalization.
|
|
10
|
-
the system of base bro-words exclusive of the bro dialect.
|
|
11
|
-
irrelevant intervening contexts in selectional rules.
|
|
12
|
-
nondistinctness in the sense of distinctive bro theory.
|
|
13
|
-
a general convention regarding the forms of the stoke linguistics.
|
|
14
|
-
an abstract underlying sub-stoke order.
|
|
15
|
-
an important distinction in stoked language use.
|
|
16
|
-
the requirement that stoke-branching is not tolerated within the dominance stoke-scope of a complex bro-symbol.
|
|
17
|
-
the strong generative capacity of the stoke-theory.
|
data/lib/stoke_bot.rb
DELETED
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
module Faker
|
|
2
|
-
|
|
3
|
-
class StokeBot
|
|
4
|
-
|
|
5
|
-
class << self
|
|
6
|
-
|
|
7
|
-
# A stoked developer might want multiple stoked paragraphs for her bros
|
|
8
|
-
# and/or brodies. Takes an argument for the desired number of paragraphs and
|
|
9
|
-
# sentences per paragraph with a default of two paragraphs with 3 sentences
|
|
10
|
-
# in each paragraph.
|
|
11
|
-
#
|
|
12
|
-
# Faker::StokeBot.paragraphs(2, 3)
|
|
13
|
-
# "Whoah? the athlete/groupie constructed intuition suffices to account
|
|
14
|
-
# for an important distinction in language use. By combining stoke and certain
|
|
15
|
-
# reformulations of the dominant extreme paradigm, the appearance of
|
|
16
|
-
# non-stoked gaps in domains relatively inaccessible to ordinary..."
|
|
17
|
-
|
|
18
|
-
def paragraphs(paragraph_count = 2, sentence_count = 3)
|
|
19
|
-
paragraphs = []
|
|
20
|
-
paragraph_count.times do
|
|
21
|
-
paragraphs << paragraph(sentence_count)
|
|
22
|
-
end
|
|
23
|
-
paragraphs.join("\n ")
|
|
24
|
-
end
|
|
25
|
-
|
|
26
|
-
def paragraph(sentence_count = 3)
|
|
27
|
-
sentences(sentence_count)
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
# A stoked developer might want multiple stoked sentences for her bros and/or
|
|
31
|
-
# brokies, in which case would would pass in the desired number fof sentences
|
|
32
|
-
# as an argument. Shout out to chomskybot by John Lawler and Kevin McGowan
|
|
33
|
-
# (http://www-personal.umich.edu/~jlawler/foggy.faq.html)
|
|
34
|
-
#
|
|
35
|
-
# Faker::StokeBot.sentences(8)
|
|
36
|
-
# "Whoah? the athlete/groupie constructed intuition suffices to account
|
|
37
|
-
# for an important distinction in language use. By combining stoke and certain
|
|
38
|
-
# reformulations of the dominant extreme paradigm, the appearance of
|
|
39
|
-
# non-stoked gaps in domains relatively inaccessible to ordinary
|
|
40
|
-
# radicalization raises serious doubts about irrelevant intervening
|
|
41
|
-
# contexts in selectional rules. Note that this analysis of a stoked
|
|
42
|
-
# construct as a pair of sets of awesome features appears to correlate
|
|
43
|
-
# rather closely with the system of base rules exclusive of the bro dialect.
|
|
44
|
-
# For one thing, the systematic use of complex bro-isms is not subject to
|
|
45
|
-
# the strong generative capacity of the theory. To bestow a bodacious structure
|
|
46
|
-
# for T(Z,K), the systematic use of complex bro-isms is not to be considered
|
|
47
|
-
# in determining a descriptive fact. From C1, it follows that a case of
|
|
48
|
-
# semicenteredness of a different sort raises serious doubts about an abstract
|
|
49
|
-
# underlying order. So far, the earlier discussion of deviance is, apparently,
|
|
50
|
-
# ...""
|
|
51
|
-
def sentences(sentence_count = 3)
|
|
52
|
-
sentences = []
|
|
53
|
-
sentence_count.times do
|
|
54
|
-
sentences << sentence
|
|
55
|
-
end
|
|
56
|
-
sentences.join(" ")
|
|
57
|
-
end
|
|
58
|
-
|
|
59
|
-
# A stoked developer bro might need a stoked sentence for his bros
|
|
60
|
-
#
|
|
61
|
-
# Faker::StokeBot.sentence
|
|
62
|
-
# "By combining stoke and certain reformulations of the dominant extreme
|
|
63
|
-
# paradigm, any broficient supporting stoke graph suffices to account
|
|
64
|
-
# for the system of base bro-words exclusive of the bro dialect."
|
|
65
|
-
def sentence
|
|
66
|
-
[intro, subject, verb, object].join(" ")
|
|
67
|
-
end
|
|
68
|
-
|
|
69
|
-
def intro
|
|
70
|
-
File.readlines("lib/intro_file.txt").sample.delete("\n")
|
|
71
|
-
end
|
|
72
|
-
|
|
73
|
-
def subject
|
|
74
|
-
File.readlines("lib/subject_file.txt").sample.delete("\n")
|
|
75
|
-
end
|
|
76
|
-
|
|
77
|
-
def verb
|
|
78
|
-
File.readlines("lib/verb_file.txt").sample.delete("\n")
|
|
79
|
-
end
|
|
80
|
-
|
|
81
|
-
def object
|
|
82
|
-
File.readlines("lib/object_file.txt").sample.delete("\n")
|
|
83
|
-
end
|
|
84
|
-
end
|
|
85
|
-
end
|
|
86
|
-
end
|
data/lib/subject_file.txt
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
the notion of level of awesomeness or even pitted awesomeness
|
|
2
|
-
a case of pitted stoke of a different sort
|
|
3
|
-
most of the methodological fearlessness rampant in modern stokeology
|
|
4
|
-
a subset of stoked concepts interesting on pitted, yet non-determinate grounds
|
|
5
|
-
the natural general bro-principle that will stoke this case
|
|
6
|
-
an important bro-property or broperty of these three stochetypes of EC
|
|
7
|
-
any broficient supporting stoke graph
|
|
8
|
-
the appearance of non-stoked gaps in domains relatively immune to ordinary pitted radicalization
|
|
9
|
-
the athlete/groupie constructed intuition or bro-sense
|
|
10
|
-
the descriptive power of the base bro-paradigm
|
|
11
|
-
the earlier bro discussion of brofanity
|
|
12
|
-
this analysis of a stoked construct as a pair of sets of awesome features
|
|
13
|
-
this selectionally introduced bro-contextual feature
|
|
14
|
-
a descriptively adequate bro-language
|
|
15
|
-
the fundamental error of regarding bros and/or brodies as less than intellectual
|
|
16
|
-
relational information vis-a-vis stoke-factor and bro/brodiness
|
|
17
|
-
the systematic and stoked use of complex bro-isms
|
|
18
|
-
the theory of stoked bro characteristics developed earlier
|
data/lib/verb_file.txt
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
can be defined in such a way as to impose
|
|
2
|
-
delimits in a stoked/non-stoked construct
|
|
3
|
-
suffices to account for
|
|
4
|
-
cannot be non-pitted in
|
|
5
|
-
is not stoked or pitted to
|
|
6
|
-
does not readily tolerate
|
|
7
|
-
raises all-natural doubts about
|
|
8
|
-
is not quite bronalogous to
|
|
9
|
-
does not bromanticize the structure of
|
|
10
|
-
may remedy and, at the same time, de-fearify
|
|
11
|
-
is not to be considered in bro metamorphosis
|
|
12
|
-
is to be regarded as
|
|
13
|
-
is unspecified with respect to
|
|
14
|
-
is, apparently, brotesquley cerebralized by
|
|
15
|
-
is necessary to impose an interpretation on
|
|
16
|
-
appears to correlate rather fearelessly with
|
|
17
|
-
is rather bronificent relative to
|
data/test/test_faker-stokebot.rb
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
require 'helper'
|
|
2
|
-
require 'active_support/inflector'
|
|
3
|
-
require 'debugger'
|
|
4
|
-
|
|
5
|
-
class TestFakerStokeBot < Minitest::Test
|
|
6
|
-
|
|
7
|
-
describe "StokeBot" do
|
|
8
|
-
|
|
9
|
-
stokebot_methods = Faker::StokeBot.methods(false)
|
|
10
|
-
stokebot_methods.each do |stokebot_method|
|
|
11
|
-
|
|
12
|
-
it "must respond to #{stokebot_method}" do
|
|
13
|
-
Faker::StokeBot.must_respond_to(stokebot_method.to_sym)
|
|
14
|
-
end
|
|
15
|
-
|
|
16
|
-
it "#{stokebot_method} must return a string" do
|
|
17
|
-
stokebot_output = Faker::StokeBot.send(stokebot_method)
|
|
18
|
-
stokebot_output.class.must_equal String
|
|
19
|
-
end
|
|
20
|
-
end
|
|
21
|
-
end
|
|
22
|
-
end
|