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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 42e2210625c130d8d4470705673a842a0dd2a730c5f77ee918b03e3dd2c5dccb
4
- data.tar.gz: e79b400f3f437e06179a9d20b7835f338285535c8a7f85a106f89522be8cb0ef
3
+ metadata.gz: c7472163af13b4245463d6e562b42d14a7d76aca1f8130108e538937b7a136fd
4
+ data.tar.gz: 8b9ae5c32c35a5a697a78f0e50939b1d85cbaa27454959beac4cd33523cffa96
5
5
  SHA512:
6
- metadata.gz: e71284a6f675a3cab65eff92141e946ae15f3aa21f2fe93dd721c19f845afbf3520c69bdc9b6fc5a09f54f3a47fb9afd3822f414459090e79595c6f33efd76ee
7
- data.tar.gz: 348b9e6525d3d78eac2d2e6fd9619a89a5e3f771379d56ad6662bd38a96d645abd3872ce3ffdfbf32d0589eff561cd454f58ad4c6c36b1b200e9bff1f064d555
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.5.1
1
+ 0.6.0
@@ -1,5 +1,6 @@
1
1
  require 'openra/irc_bot/plugins/eskimo'
2
2
  require 'openra/irc_bot/plugins/five_aces'
3
+ require 'openra/irc_bot/plugins/five_aces_out'
3
4
  require 'openra/irc_bot/plugins/gatekeeper'
4
5
  require 'openra/irc_bot/plugins/happy'
5
6
  require 'openra/irc_bot/plugins/na'
@@ -0,0 +1,15 @@
1
+ module Openra
2
+ class IRCBot < Cinch::Bot
3
+ module Plugins
4
+ class FiveAcesOut
5
+ include Cinch::Plugin
6
+
7
+ match 'fiveacesout'
8
+
9
+ def execute(m)
10
+ m.reply 'FiveAces out...'
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
@@ -7,7 +7,11 @@ module Openra
7
7
  match 'orb'
8
8
 
9
9
  def execute(m)
10
- m.reply "I'm not playing this map, it's imbalanced!"
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.5.1
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-03 00:00:00.000000000 Z
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