descartes 0.7.4 → 0.7.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/lib/descartes/modules/arnaldo.rb +25 -0
- data/lib/descartes/version.rb +1 -1
- metadata +17 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4f7c968f7efbc8bcf21a9cfd1859b5f7751047ec
|
|
4
|
+
data.tar.gz: a9afaeb8787d75fe201a14d9c4940a93a5290bc5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9b1234426f18c2098c105fec695db90d6eaeb07058631140a21191f7954fae82aaa68b743ec2bd4b0caefbba301d32c58f390396ded7a2e0a88caa0b089670e9
|
|
7
|
+
data.tar.gz: 1ce386d647349b11a064c1285c66719af601b6821fce8ecf84786f89874afb4212e21f6540fd26dc42c05f1dd383bd67c3abb9ed7bd7510bd6ca77aaa2477b97
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
##
|
|
2
|
+
# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
|
3
|
+
# Version 2, December 2004
|
|
4
|
+
#
|
|
5
|
+
# Everyone is permitted to copy and distribute verbatim or modified
|
|
6
|
+
# copies of this license document, and changing it is allowed as long
|
|
7
|
+
# as the name is changed.
|
|
8
|
+
#
|
|
9
|
+
# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
|
10
|
+
# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
|
11
|
+
#
|
|
12
|
+
# 0. You just DO WHAT THE FUCK YOU WANT TO.
|
|
13
|
+
##
|
|
14
|
+
require 'arnaldo'
|
|
15
|
+
|
|
16
|
+
class Descartes
|
|
17
|
+
class Arnaldo
|
|
18
|
+
include Cinch::Plugin
|
|
19
|
+
match 'proverb'
|
|
20
|
+
|
|
21
|
+
def execute(m)
|
|
22
|
+
m.reply "“#{::Arnaldo.get}”".colorize
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
data/lib/descartes/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: descartes
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Giovanni Capuano
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-02-
|
|
11
|
+
date: 2014-02-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cinch
|
|
@@ -150,6 +150,20 @@ dependencies:
|
|
|
150
150
|
- - ">="
|
|
151
151
|
- !ruby/object:Gem::Version
|
|
152
152
|
version: '0'
|
|
153
|
+
- !ruby/object:Gem::Dependency
|
|
154
|
+
name: arnaldo
|
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
|
156
|
+
requirements:
|
|
157
|
+
- - ">="
|
|
158
|
+
- !ruby/object:Gem::Version
|
|
159
|
+
version: '0'
|
|
160
|
+
type: :runtime
|
|
161
|
+
prerelease: false
|
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
163
|
+
requirements:
|
|
164
|
+
- - ">="
|
|
165
|
+
- !ruby/object:Gem::Version
|
|
166
|
+
version: '0'
|
|
153
167
|
description: A serious modular ruby IRC bot.
|
|
154
168
|
email: webmaster@giovannicapuano.net
|
|
155
169
|
executables:
|
|
@@ -158,6 +172,7 @@ extensions: []
|
|
|
158
172
|
extra_rdoc_files: []
|
|
159
173
|
files:
|
|
160
174
|
- lib/descartes/descartes.rb
|
|
175
|
+
- lib/descartes/modules/arnaldo.rb
|
|
161
176
|
- lib/descartes/modules/crunchyroll.rb
|
|
162
177
|
- lib/descartes/modules/currency.rb
|
|
163
178
|
- lib/descartes/modules/dicteng.rb
|