antispam 0.2.8 → 0.2.10

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a68d75de5897063bea19649fbf62e3e75c56196412003615d22c1bf6d465150e
4
- data.tar.gz: 5e731f9168becf1eb99e28bcd29b2b2b5d72cd251f6e08bcd2efccecdeb0139b
3
+ metadata.gz: 4b9976b110e83413c117ba4e2aadebe3ee782a2e22075b4d005b8ee23f859b6c
4
+ data.tar.gz: b103e465db532012980a7a37e01d0b337a11bf58c5182e6951471ee2a344c427
5
5
  SHA512:
6
- metadata.gz: 6a1395289f3440fc68ff37f25bf33611a1d871bd70524d98e20d5ed1152939e94225eadfbf800ed28edadef06b7e14596cfd5ca7a6ec722a5532c81fb882e6f6
7
- data.tar.gz: 1d33c4449ef09163e9454a36db0e82df7b5723ad429b9fef17467181394f6a231d4cf654549e86385f5b1bc7d9aacfb69a9b394bea76fa6e0439b2ab5082d36e
6
+ metadata.gz: c74852eabd842ab4d54b5dc99cc99224ee40c930d4a1e047a77506c3cc4a6a04bb445c0a92d3946dbdbf81116c1f9334046e4631574af9001b4b13bfee8eebaf
7
+ data.tar.gz: 34c5bd57b1db3f574f16a7b467a9e16fb3eb01271a172491eca71d6362f454f8df42cd4c468bfa7059e72466904fbe778f5e26aa7748f29c45bf53820ffb72bf
data/README.md CHANGED
@@ -108,7 +108,7 @@ You need to add this to your routes.rb
108
108
  Then add to your application controller:
109
109
  ```
110
110
  before_action do
111
- check_ip_against_database({ip_blacklists: {default: 'your_api_key_here'}, verbose: true})
111
+ check_ip_against_database(ip_blacklists: {default: 'your_api_key_here'}, verbose: true)
112
112
  end
113
113
  ```
114
114
 
@@ -2,7 +2,12 @@ module Antispam
2
2
  module Tools
3
3
  # Checks spam against an IP database of spammers.
4
4
  # Usage: before_action :check_ip_against_database
5
- def check_ip_against_database(options = {ip_blacklists: {default: ''}})
5
+ def check_ip_against_database(
6
+ ip_blacklists: { default: '' },
7
+ methods: nil,
8
+ scrutinize_countries_except: nil,
9
+ verbose: false
10
+ )
6
11
  if (options[:methods])
7
12
  return if request.get? unless options[:methods].include?(:get)
8
13
  return if request.post? unless options[:methods].include?(:post)
@@ -1,3 +1,3 @@
1
1
  module Antispam
2
- VERSION = '0.2.8'
2
+ VERSION = '0.2.10'
3
3
  end
data/lib/antispam.rb CHANGED
@@ -8,14 +8,6 @@ require "antispam/results"
8
8
 
9
9
  module Antispam
10
10
  ActiveSupport.on_load(:action_controller_base) do
11
- # Include Antispam::Tools into the application's ApplicationController
12
- # Use ::ApplicationController to reference the top-level class
13
- if defined?(::ApplicationController)
14
- ::ApplicationController.include Antispam::Tools
15
- else
16
- Rails.application.config.to_prepare do
17
- ::ApplicationController.include Antispam::Tools
18
- end
19
- end
11
+ ActionController::Base.include Antispam::Tools
20
12
  end
21
13
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: antispam
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.8
4
+ version: 0.2.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Kopf