cinch_channel_list 0.0.1 → 0.0.4
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 +7 -7
- data/lib/cinch_channel_list.rb +5 -0
- metadata +34 -31
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
---
|
|
2
|
-
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
5
|
-
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 5021e0d5a96e2ac2f343fb4575794c25fd7af398
|
|
4
|
+
data.tar.gz: f6d0cfbafdbb84507756069c8094f35f2b45c4ee
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 2001d2de77417efc02d00a4ac402386e2fd1f29eb5ee01110005fac20c581034217e643755830c8a6fbabb9fcc3afa7ac2c8c0cd80f68f0ad8a493501ee0723e
|
|
7
|
+
data.tar.gz: ccefd2802696a6fd412319dd7321cd31006bae0fe725080350cbf80ed6e519432be26e7cb2b904777478f2b39a04c5c794af47231b622aefd4bccde3ab59499d
|
data/lib/cinch_channel_list.rb
CHANGED
|
@@ -10,6 +10,11 @@ class ChannelList
|
|
|
10
10
|
listen_to Cinch::Constants::RPL_LIST, :method => :add_channel
|
|
11
11
|
listen_to Cinch::Constants::RPL_LISTEND, :method => :send_channel_list
|
|
12
12
|
|
|
13
|
+
def initialize(bot)
|
|
14
|
+
@channels = {}
|
|
15
|
+
super(bot)
|
|
16
|
+
end
|
|
17
|
+
|
|
13
18
|
def send_list(message)
|
|
14
19
|
bot.irc.send "LIST"
|
|
15
20
|
end
|
metadata
CHANGED
|
@@ -1,61 +1,64 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cinch_channel_list
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
|
-
authors:
|
|
6
|
+
authors:
|
|
7
7
|
- Jonathan Chapman
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
|
|
12
|
+
date: 2014-05-09 00:00:00 Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
14
15
|
name: cinch
|
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
|
16
|
-
requirements:
|
|
17
|
-
- - "~>"
|
|
18
|
-
- !ruby/object:Gem::Version
|
|
19
|
-
version: '2.0'
|
|
20
|
-
type: :runtime
|
|
21
16
|
prerelease: false
|
|
22
|
-
|
|
23
|
-
requirements:
|
|
24
|
-
- -
|
|
25
|
-
- !ruby/object:Gem::Version
|
|
26
|
-
version:
|
|
17
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
18
|
+
requirements:
|
|
19
|
+
- - ~>
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: "2.0"
|
|
22
|
+
type: :runtime
|
|
23
|
+
version_requirements: *id001
|
|
27
24
|
description: A Cinch IRC plugin for getting channel lists
|
|
28
25
|
email: glitch@glitchwrks.com
|
|
29
26
|
executables: []
|
|
27
|
+
|
|
30
28
|
extensions: []
|
|
29
|
+
|
|
31
30
|
extra_rdoc_files: []
|
|
32
|
-
|
|
31
|
+
|
|
32
|
+
files:
|
|
33
33
|
- LICENSE
|
|
34
34
|
- README.md
|
|
35
35
|
- examples/list_channels.rb
|
|
36
36
|
- lib/cinch_channel_list.rb
|
|
37
37
|
homepage: https://github.com/chapmajs/cinch_channel_list
|
|
38
|
-
licenses:
|
|
38
|
+
licenses:
|
|
39
39
|
- GPLv3
|
|
40
40
|
metadata: {}
|
|
41
|
+
|
|
41
42
|
post_install_message:
|
|
42
43
|
rdoc_options: []
|
|
43
|
-
|
|
44
|
+
|
|
45
|
+
require_paths:
|
|
44
46
|
- lib
|
|
45
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
46
|
-
requirements:
|
|
47
|
-
-
|
|
48
|
-
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
version: '0'
|
|
47
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
48
|
+
requirements:
|
|
49
|
+
- &id002
|
|
50
|
+
- ">="
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: "0"
|
|
53
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
54
|
+
requirements:
|
|
55
|
+
- *id002
|
|
55
56
|
requirements: []
|
|
57
|
+
|
|
56
58
|
rubyforge_project:
|
|
57
59
|
rubygems_version: 2.2.2
|
|
58
60
|
signing_key:
|
|
59
61
|
specification_version: 4
|
|
60
62
|
summary: Cinch Channel List
|
|
61
63
|
test_files: []
|
|
64
|
+
|