auther 1.1.0 → 1.2.0

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: 97cae72af8c810dbd729e29ee3446b8f27315be8
4
- data.tar.gz: b871b6954ec50f83d7d6e091ba97375a7a8e6889
3
+ metadata.gz: 98f97c242fb1e0ce4bb8b86105692557df24e4b9
4
+ data.tar.gz: ca16c0813966c536e347366e9899acefcfab666a
5
5
  SHA512:
6
- metadata.gz: c7d216214981e7b8439be1a627cc1e12b05922388e02b23bdd59951b0a993fbff954db844fe577ca5e3ee3808dc6a75bb2f86a09fbcaac3885bbcdd862d83502
7
- data.tar.gz: 6fac810efc788f0f1c140567c9a3dabbf565a1072b82b1006f6e2fdc80a28470d4f726718eac03bb4a8e6ee5adafb472cd188410c7f1729d04742599b6cc9415
6
+ metadata.gz: 2775da83a612d96b4411537077150c440c95b12b60d07f3f8e79bfcddb44651e030aafc8c984c92867f53a27051c2a2dbd434e931a61702e3662d48266ec8f24
7
+ data.tar.gz: c224366a29f6f11ad2aad9cc03ae4d9ba72e21f42ddc434bec7091e37feb4cf8d248e18762c9290e99abe9a253e897b6494b46413d321a8ac425b65deb05173b
Binary file
data.tar.gz.sig CHANGED
Binary file
data/README.md CHANGED
@@ -2,7 +2,9 @@
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/auther.png)](http://badge.fury.io/rb/auther)
4
4
  [![Code Climate GPA](https://codeclimate.com/github/bkuhlmann/auther.png)](https://codeclimate.com/github/bkuhlmann/auther)
5
+ [![Gemnasium Status](https://gemnasium.com/bkuhlmann/auther.png)](https://gemnasium.com/bkuhlmann/auther)
5
6
  [![Travis CI Status](https://secure.travis-ci.org/bkuhlmann/auther.png)](http://travis-ci.org/bkuhlmann/auther)
7
+ [![Coverage Status](https://coveralls.io/repos/bkuhlmann/auther/badge.png)](https://coveralls.io/r/bkuhlmann/auther)
6
8
 
7
9
  Provides simple, form-based authentication for apps that need security but don't want to deal with the clunky UI
8
10
  of HTTP Basic Authentication or something as heavyweight as [Devise](https://github.com/plataformatec/devise). It
@@ -36,7 +38,7 @@ making for a pleasent user experience.
36
38
  For a secure install, type the following from the command line (recommended):
37
39
 
38
40
  gem cert --add <(curl -Ls http://www.redalchemist.com/gem-public.pem)
39
- gem install auther -P HighSecurity
41
+ gem install auther --trust-policy HighSecurity
40
42
 
41
43
  ...or, for an insecure install, type the following (not recommended):
42
44
 
@@ -5,16 +5,16 @@ module Auther
5
5
  # Set defaults. Can be overwritten in app config.
6
6
  config.auther_settings = {}
7
7
 
8
- # Add jQuery assets.
9
- jquery_gem_path = Gem.loaded_specs["jquery-rails"].full_gem_path
10
- config.assets.paths << "#{jquery_gem_path}/vendor/assets/javascripts"
8
+ initializer "auther.initialize" do |app|
9
+ # Add jQuery assets.
10
+ jquery_gem_path = Gem.loaded_specs["jquery-rails"].full_gem_path
11
+ app.config.assets.paths << "#{jquery_gem_path}/vendor/assets/javascripts"
11
12
 
12
- # Add Zurb Foundation assets.
13
- foundation_gem_path = Gem.loaded_specs["foundation-rails"].full_gem_path
14
- config.assets.paths << "#{foundation_gem_path}/vendor/assets/stylesheets"
15
- config.assets.paths << "#{foundation_gem_path}/vendor/assets/javascripts"
13
+ # Add Zurb Foundation assets.
14
+ foundation_gem_path = Gem.loaded_specs["foundation-rails"].full_gem_path
15
+ app.config.assets.paths << "#{foundation_gem_path}/vendor/assets/stylesheets"
16
+ app.config.assets.paths << "#{foundation_gem_path}/vendor/assets/javascripts"
16
17
 
17
- initializer "auther.initialize" do |app|
18
18
  # Configure log filter parameters.
19
19
  app.config.filter_parameters += [:login, :password]
20
20
 
@@ -1,3 +1,3 @@
1
1
  module Auther
2
- VERSION = "1.1.0"
2
+ VERSION = "1.2.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: auther
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
@@ -30,7 +30,7 @@ cert_chain:
30
30
  SJpzzzZ8gO6BKn4fhd+ENNQ333Qy3nuNk07TVIaNnlgeHhowUDuD9T7Z8Lka0pt3
31
31
  4PteiTppsf0SSVAM9zSO5IuFngXMRwWgvjOfXE70f43RDuUVTCSyylc=
32
32
  -----END CERTIFICATE-----
33
- date: 2014-02-16 00:00:00.000000000 Z
33
+ date: 2014-04-08 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: pry-byebug
@@ -136,14 +136,14 @@ dependencies:
136
136
  requirements:
137
137
  - - "~>"
138
138
  - !ruby/object:Gem::Version
139
- version: '5.1'
139
+ version: '5.2'
140
140
  type: :runtime
141
141
  prerelease: false
142
142
  version_requirements: !ruby/object:Gem::Requirement
143
143
  requirements:
144
144
  - - "~>"
145
145
  - !ruby/object:Gem::Version
146
- version: '5.1'
146
+ version: '5.2'
147
147
  - !ruby/object:Gem::Dependency
148
148
  name: rake
149
149
  requirement: !ruby/object:Gem::Requirement
@@ -201,7 +201,7 @@ dependencies:
201
201
  - !ruby/object:Gem::Version
202
202
  version: '0'
203
203
  - !ruby/object:Gem::Dependency
204
- name: pry-vterm_aliases
204
+ name: rspec-rails
205
205
  requirement: !ruby/object:Gem::Requirement
206
206
  requirements:
207
207
  - - ">="
@@ -215,7 +215,7 @@ dependencies:
215
215
  - !ruby/object:Gem::Version
216
216
  version: '0'
217
217
  - !ruby/object:Gem::Dependency
218
- name: rspec-rails
218
+ name: rb-fsevent
219
219
  requirement: !ruby/object:Gem::Requirement
220
220
  requirements:
221
221
  - - ">="
@@ -229,7 +229,7 @@ dependencies:
229
229
  - !ruby/object:Gem::Version
230
230
  version: '0'
231
231
  - !ruby/object:Gem::Dependency
232
- name: rb-fsevent
232
+ name: guard-rspec
233
233
  requirement: !ruby/object:Gem::Requirement
234
234
  requirements:
235
235
  - - ">="
@@ -243,7 +243,7 @@ dependencies:
243
243
  - !ruby/object:Gem::Version
244
244
  version: '0'
245
245
  - !ruby/object:Gem::Dependency
246
- name: guard-rspec
246
+ name: coveralls
247
247
  requirement: !ruby/object:Gem::Requirement
248
248
  requirements:
249
249
  - - ">="
metadata.gz.sig CHANGED
@@ -1,3 +1,3 @@
1
- Z{��T7>u��vkD��~U��(�ܕ��!�����>uy�]8.�?��������N��4�E�,S_�*�~_��}��c��n���&���B�qRHDDK[^ ,|;P���BU�>�T�P�{F4R�hN�M���TD��9
2
- Sc[C��Z���cm��!D��lx
3
- ��ڧ���v
1
+ C�J@��e>LWS._�ZF��IS00n�*A!X~�v2��hjG�u�j�/�b�&�
2
+ ;O��D2��vO 8��%���#��IEan̸(A]\���=�+��
3
+ B��Ŭ&�m�!�LA;�;��@N�E��aq��n�o��~���