lita-hackersays 1.0.0 → 1.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 +4 -4
- data/lib/lita/handlers/hackersays.rb +1 -1
- data/lita-hackersays.gemspec +1 -1
- data/spec/lita/handlers/hackersays_spec.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aefae8bc0f721432bb3df24f754c65efa39ae789
|
4
|
+
data.tar.gz: a6ca2ced801348a52e07732aef757d3aabfaaed3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f9e8a038c941ae9aa750433f5afdc8d36802f7dcd26bae34065dd1d7c3190f58374ca36b7dddbae812d75d0b04467acb4427c729bfbd95fd196a551ead41e64a
|
7
|
+
data.tar.gz: 65842221630d90e1f93ccf0552bf997577c3310abfb66b87b536230dba7fe7c298a151f2d1b58c42d2ef9df9145e79d03a7fd92f7a118042a200b75a6c6f1f50
|
data/lita-hackersays.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |spec|
|
2
2
|
spec.name = "lita-hackersays"
|
3
|
-
spec.version = "1.0.
|
3
|
+
spec.version = "1.0.1"
|
4
4
|
spec.authors = ["Jarmo Pertman"]
|
5
5
|
spec.email = ["jarmo.p@gmail.com"]
|
6
6
|
spec.description = %q{Handler for Lita Chat bot that provides quotes from hackers backed by hackersays.com.}
|
@@ -12,7 +12,7 @@ describe Lita::Handlers::Hackersays, lita_handler: true do
|
|
12
12
|
"a" => "Alan J. Perlis"
|
13
13
|
)
|
14
14
|
send_command "hackersays"
|
15
|
-
expect(replies.last).to eq("
|
15
|
+
expect(replies.last).to eq("Fools ignore complexity. Pragmatists suffer it. Some can avoid it. Geniuses remove it. — Alan J. Perlis")
|
16
16
|
end
|
17
17
|
|
18
18
|
it "handles errors" do
|