cinch-quotes 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +3 -1
- data/cinch-quotes.gemspec +1 -1
- data/lib/cinch/plugins/quotes.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -27,8 +27,10 @@ Install the gem and load it in your Cinch bot:
|
|
27
27
|
|
28
28
|
bot = Cinch::Bot.new do
|
29
29
|
configure do |c|
|
30
|
-
# add all required options here
|
31
30
|
c.plugins.plugins = [Cinch::Plugins::Quotes] # optionally add more plugins
|
31
|
+
c.plugins.options[Cinch::Plugins::Quotes] = {
|
32
|
+
:quotes_file => '/path/to/quotes.yml'
|
33
|
+
}
|
32
34
|
end
|
33
35
|
end
|
34
36
|
|
data/cinch-quotes.gemspec
CHANGED
data/lib/cinch/plugins/quotes.rb
CHANGED