openra-irc_bot 0.5.1 → 0.6.0
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/README.md +9 -0
- data/VERSION +1 -1
- data/lib/openra/irc_bot/plugins.rb +1 -0
- data/lib/openra/irc_bot/plugins/five_aces_out.rb +15 -0
- data/lib/openra/irc_bot/plugins/orb.rb +5 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c7472163af13b4245463d6e562b42d14a7d76aca1f8130108e538937b7a136fd
|
4
|
+
data.tar.gz: 8b9ae5c32c35a5a697a78f0e50939b1d85cbaa27454959beac4cd33523cffa96
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b10f28ae72b5dc23dce79b062f20acd98278b228777bc7623a0f982bb34346314320283ce3c9a8fba20b6dfe7be8ee9c2c9785718d21402a5a8e3dbb0998ad67
|
7
|
+
data.tar.gz: efdd690f016d69ef24f704aa3644b601690b572f3341aafc3a7aec41ace19f41aca14c81bcced569a6acabaee01cce87f527beaf3c6f66c0d8b4cd2201efa202
|
data/README.md
CHANGED
@@ -12,6 +12,11 @@ Yeh nah gg... lol, jk, I win!
|
|
12
12
|
Hey hey people, FiveAces here!
|
13
13
|
```
|
14
14
|
|
15
|
+
#### `!fiveacesout` - `Openra::IRCBot::Plugins::FiveAcesOut`
|
16
|
+
```
|
17
|
+
FiveAces out...
|
18
|
+
```
|
19
|
+
|
15
20
|
#### `!gatekeeper` - `Openra::IRCBot::Plugins::Gatekeeper`
|
16
21
|
```
|
17
22
|
Yeh nah gg
|
@@ -30,7 +35,10 @@ argument with my rebbutal of no substance
|
|
30
35
|
|
31
36
|
#### `!orb` - `Openra::IRCBot::Plugins::Orb`
|
32
37
|
```
|
38
|
+
# Either
|
33
39
|
I'm not playing this map, it's imbalanced!
|
40
|
+
# or
|
41
|
+
Not playing this map, it has oils that I don't know that are there
|
34
42
|
```
|
35
43
|
|
36
44
|
#### `!pinkman` - `Openra::IRCBot::Plugins::Pinkman`
|
@@ -77,6 +85,7 @@ bot = Openra::IRCBot.new do
|
|
77
85
|
config.plugins.plugins = [
|
78
86
|
Openra::IRCBot::Plugins::Eskimo,
|
79
87
|
Openra::IRCBot::Plugins::FiveAces,
|
88
|
+
Openra::IRCBot::Plugins::FiveAcesOut,
|
80
89
|
Openra::IRCBot::Plugins::Gatekeeper,
|
81
90
|
Openra::IRCBot::Plugins::Happy,
|
82
91
|
Openra::IRCBot::Plugins::Na,
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.6.0
|
@@ -7,7 +7,11 @@ module Openra
|
|
7
7
|
match 'orb'
|
8
8
|
|
9
9
|
def execute(m)
|
10
|
-
|
10
|
+
if [true, false].sample
|
11
|
+
m.reply "I'm not playing this map, it's imbalanced!"
|
12
|
+
else
|
13
|
+
m.reply "Not playing this map, it has oils that I don't know that are there"
|
14
|
+
end
|
11
15
|
end
|
12
16
|
end
|
13
17
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: openra-irc_bot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenRA Community
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-11-
|
11
|
+
date: 2018-11-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -101,6 +101,7 @@ files:
|
|
101
101
|
- lib/openra/irc_bot/plugins.rb
|
102
102
|
- lib/openra/irc_bot/plugins/eskimo.rb
|
103
103
|
- lib/openra/irc_bot/plugins/five_aces.rb
|
104
|
+
- lib/openra/irc_bot/plugins/five_aces_out.rb
|
104
105
|
- lib/openra/irc_bot/plugins/gatekeeper.rb
|
105
106
|
- lib/openra/irc_bot/plugins/happy.rb
|
106
107
|
- lib/openra/irc_bot/plugins/na.rb
|