zetabot 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3f3e9747bed525f30b0b409802897b5c7a43ae1e
4
- data.tar.gz: 5c22482965145b4f48bbad2bbaf0d37fcf7c375f
3
+ metadata.gz: 147e2c128ff44a016567129f0ce7a01348379ff8
4
+ data.tar.gz: 715df00d50bd68934a67bcb5bfa83ff0b5f0cad0
5
5
  SHA512:
6
- metadata.gz: 4c031fdd6ba8272c717cc2126555661ca7480c644390718ac350f87aee32481f2f1b5fc30b0851a7773fc3819feb61ccfe3ac9b360cccfecb77b3ced33cb0b68
7
- data.tar.gz: 39051fbc6c89e70a036ba0b21f48034962b5f02faa21c95d15c7c9fd8c2ce8e81239387349f5737c2acaa5934ef865862067809037ef8e226000da83b015aaba
6
+ metadata.gz: dd0b11cb0e6cae2bf916a297fd204236a2179c0bc0bb67822266132add149d696e5fa826bc2694f1c336b0d00e5c49652033bd5ec96a5532f0a091920644ee83
7
+ data.tar.gz: 23b301230233e16a0049d0e4f961d9b276485b2cad70038f790087b73a0caf29e2fee1d976b01f936aa0576d2918ea7c544233cfba8d88ec54939a925223fecb
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- zetabot (0.0.5)
4
+ zetabot (0.0.7)
5
5
  actionview
6
6
  chronic
7
7
  chronic_duration
data/lib/Zeta.rb CHANGED
@@ -1,6 +1,7 @@
1
1
  module Zeta; end
2
2
 
3
3
  require 'Zeta/version'
4
+ require 'Zeta/gems'
4
5
  require 'Zeta/cache'
5
6
  require 'Zeta/config'
6
7
  require 'Zeta/access'
data/lib/Zeta/gems.rb CHANGED
@@ -0,0 +1,4 @@
1
+ require 'hashie'
2
+ require 'action_view'
3
+ require 'rest-client'
4
+ require 'recursive_open_struct'
@@ -1,7 +1,6 @@
1
1
  require 'uri'
2
2
  require 'net/http'
3
3
  require 'ostruct'
4
- require 'action_view'
5
4
 
6
5
  module Plugins
7
6
  class DarkScience
@@ -1,7 +1,7 @@
1
1
  require 'dnsbl/client'
2
2
 
3
3
  module Plugins
4
- class DNSBL
4
+ class DNSBlacklist
5
5
  include Cinch::Plugin
6
6
  include Cinch::Helpers
7
7
 
@@ -33,4 +33,4 @@ module Plugins
33
33
  end
34
34
 
35
35
  # AutoLoad
36
- Bot.config.plugins.plugins.push Plugins::DNSBL
36
+ Bot.config.plugins.plugins.push Plugins::DNSBlacklist
data/lib/Zeta/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Zeta
2
- VERSION = '0.0.6'
2
+ VERSION = '0.0.7'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zetabot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Liothen
@@ -584,7 +584,6 @@ files:
584
584
  - lib/Zeta/plugins/dbz.rb
585
585
  - lib/Zeta/plugins/dcc.rb
586
586
  - lib/Zeta/plugins/dnsbl.rb
587
- - lib/Zeta/plugins/echo.rb
588
587
  - lib/Zeta/plugins/eightball.rb
589
588
  - lib/Zeta/plugins/fml.rb
590
589
  - lib/Zeta/plugins/fnord.rb
@@ -1,15 +0,0 @@
1
- module Plugins
2
- class Echo
3
- include Cinch::Plugin
4
-
5
- enable_acl(:voice)
6
-
7
- match /echo (.+)/, method: :echoed
8
-
9
- def echoed(m,s)
10
- m.reply s
11
- end
12
-
13
- end
14
- end
15
- Bot.config.plugins.plugins.push Plugins::Echo