cinch-urbandict 0.0.1 → 0.0.2
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.
- data/README.md +13 -3
- data/cinch-urbandict.gemspec +2 -2
- data/lib/cinch/plugins/urbandict/version.rb +1 -1
- metadata +4 -4
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Cinch::Urbandict
|
|
1
|
+
# Cinch::Plugins::Urbandict
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Simple Cinch Plugin to fetch Urbandictionary defs.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -18,7 +18,17 @@ Or install it yourself as:
|
|
|
18
18
|
|
|
19
19
|
## Usage
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
Just add the plugin to your list:
|
|
22
|
+
|
|
23
|
+
@bot = Cinch::Bot.new do
|
|
24
|
+
configure do |c|
|
|
25
|
+
c.plugins.plugins = [Cinch::Plugins::UrbanDict]
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
Then in channel use:
|
|
30
|
+
|
|
31
|
+
.ud kitten
|
|
22
32
|
|
|
23
33
|
## Contributing
|
|
24
34
|
|
data/cinch-urbandict.gemspec
CHANGED
|
@@ -17,6 +17,6 @@ Gem::Specification.new do |gem|
|
|
|
17
17
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
18
18
|
gem.require_paths = ["lib"]
|
|
19
19
|
|
|
20
|
-
gem.add_dependency
|
|
21
|
-
gem.add_dependency
|
|
20
|
+
gem.add_dependency('cinch-toolbox', '>= 0.0.3')
|
|
21
|
+
gem.add_dependency('cinch-cooldown')
|
|
22
22
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cinch-urbandict
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-05-
|
|
12
|
+
date: 2013-05-19 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: cinch-toolbox
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>='
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version:
|
|
21
|
+
version: 0.0.3
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ! '>='
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version:
|
|
29
|
+
version: 0.0.3
|
|
30
30
|
- !ruby/object:Gem::Dependency
|
|
31
31
|
name: cinch-cooldown
|
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|