cinch-quotes 0.0.3 → 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.
- 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