recaptcha 1.0.0 → 1.0.1

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
  SHA1:
3
- metadata.gz: 19150c1891f5ef4fda5c568d941c8035ef19c0aa
4
- data.tar.gz: ffac23399306ce2b5c6c5199389cc755abfe2833
3
+ metadata.gz: b99d7b45252d2e17515aafdfba506545331c7095
4
+ data.tar.gz: 08800635fabf62f3cc28f71abe15ec691702ee7b
5
5
  SHA512:
6
- metadata.gz: 0734d303c81f727913edef8c3f637b2fbf4d2f4612f170656bf1899b9a2be45fdd06401e63bd8eb9a98dac8eb57f9ffbc139a2d2d17a09f93ed0986cd349d452
7
- data.tar.gz: cd08fa57ef7c4b3afdc03f8311ab7f4299d0c056686289a7bdff87dd87b6aa6fb5979a7313d0437c3b49ce9730c92000451f429aafe521fc66b5103f5989b8a5
6
+ metadata.gz: 221010e1640f03080062fba349a89bc0727379d1b9354952a630083434437e23c443ab317f21260c3279159209296bae20767e78d23657e5924315bb4d4f17f5
7
+ data.tar.gz: b2c99f635d5afcbcc59087b2045ef73f56e4a6305e9be04a3e2bed2ad451a014f6051653501c0a11e2675d82758ae8667090953f9bf5778b97c2e9c04e0f25ce
data/CHANGELOG.md CHANGED
@@ -1,14 +1,14 @@
1
- ## NEXT
1
+ ## 1.0.0 - 2015-11-30
2
2
  * remove api v1 support
3
3
  * remove ssl_api_server_url, nonssl_api_server_url, change api_server_url to always need ssl option
4
4
  * removed activesupport dependency for .to_query
5
5
  * made flash and models both have descriptive errors
6
6
 
7
- ## 0.6.0
7
+ ## 0.6.0 - 2015-11-19
8
8
  * extract token module
9
9
  * need to use `gem "recaptcha", require: "recaptcha/rails"` to get rails helpers installed
10
10
 
11
- ## 0.5.0
11
+ ## 0.5.0 - 2015-11-18
12
12
  * size option
13
13
  * support disabling stoken
14
14
  * support Rails.env
@@ -1,13 +1,11 @@
1
1
  require 'net/http'
2
2
  require 'recaptcha'
3
3
 
4
- module Rails
5
- module Recaptcha
6
- class Railtie < Rails::Railtie
7
- initializer :recaptcha do
8
- ActionView::Base.send(:include, ::Recaptcha::ClientHelper)
9
- ActionController::Base.send(:include, ::Recaptcha::Verify)
10
- end
4
+ module Recaptcha
5
+ class Railtie < Rails::Railtie
6
+ initializer :recaptcha do
7
+ ActionView::Base.send(:include, ::Recaptcha::ClientHelper)
8
+ ActionController::Base.send(:include, ::Recaptcha::Verify)
11
9
  end
12
10
  end
13
11
  end
@@ -1,3 +1,3 @@
1
1
  module Recaptcha
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: recaptcha
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason L Perry