auther 8.0.0 → 8.1.0

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: 9b255589ee50005b28e3d71d9af78bdea017cafd
4
- data.tar.gz: 8011faaa46c102996f969a9804bee444c0b2fe96
3
+ metadata.gz: 4b78d4b32b439255f70cb8d4a921ff7d614be7a3
4
+ data.tar.gz: 930c8d17213a45e52f92ea7124f708b2307c3de7
5
5
  SHA512:
6
- metadata.gz: ca2c0e51984a53536a86208352caed9fefe5597599bf4842e6a417eca272c8ef736f14908591e737c38924ae7ac036efe1c59a3ee935390a653bede8d05aae48
7
- data.tar.gz: 7239e284321dcee0a61977875b5133282d8b6a2bc47071e13d503296b1b6888915867bca0c9b3a6f72c3c420f5caf0cf664b9f25b954a83526e3f6a9ee66ee35
6
+ metadata.gz: d914126518709aa2a355c5dd0ac502913b06e209cf2bbe63bf647aa3c1315531edbfd5b2231ef00a2a8d8f0d31a7cff7d6e221d417eb1b6071fddcf1705383b5
7
+ data.tar.gz: 3653f0ca4f3a15dbf6a0e73a82af43fb8c4fea6775bbf1a9f4c3df936d8d902bc3c0df93bb052087024fdaafbdb07fdc1a3f4a45f6a2caf70b7c881d29bd6828
checksums.yaml.gz.sig CHANGED
@@ -1 +1,2 @@
1
- {�Ѳ��=��VX��~/so�f��$�<�|˂d�����ម}����������j�Ƃ&����5�#x�I>-��Ǔ�2=^��$fw��[��D�:�[Ak�p��������I��o�����<�+Mk�n�����Ag����H,t�.����'?�Yϡ� (���y�;��A�u"E��c zn�r^G�������^<i���}��Կ���)]��.�:&+���\��/Hj�ǖ� �5�T
1
+ }t���W�LA��q*�hMr.�w�׀� T|����m3q3Hs��6���f+:�Y���b�-�Vapw��=b1�5�<�{�O���sH��4{�-�d���FQ���G�Q��ǂ|��j�� h�I�cg錡�|e���Y�M=��?T��M��/�����D*����k�/d�l��'CY�$z[��k` �;6���y�CmBZJӇf}������B
2
+ D���=�(j蔈\��~^p�
data.tar.gz.sig CHANGED
Binary file
data/README.md CHANGED
@@ -84,8 +84,8 @@ Run the generator to configure and initialize your application:
84
84
 
85
85
  ## Usage
86
86
 
87
- Assuming you are using something like [direnv](https://direnv.net), add the following to your `.env`
88
- file:
87
+ Assuming you are using something like [direnv](https://direnv.net), add the following to your
88
+ `.envrc` file:
89
89
 
90
90
  AUTHER_SECRET=281047a438dcd3f1f1401954d779025e496dc938ba79703bcf6ca0605ca350e7
91
91
  AUTHER_ADMIN_LOGIN=V0lMaDFBK2o3SngvSHUySUZOYVJ3dC82QmlQaDRWcUhKOEFkUjFsYkF3ND0tLXpMZDBhdCtJaHVsVnpWNkFWVWUxVVE9PQ==--d8595331720f8475090763d5a3a3103b3f6a9259
@@ -120,7 +120,7 @@ The initializer comes installed with the following settings:
120
120
  secret: [ENV["AUTHER_SECRET"]].pack("H*")
121
121
  }
122
122
 
123
- **IMPORTANT**: The encrypted secret, login, and password used in the `.env` setup above must be
123
+ **IMPORTANT**: The encrypted secret, login, and password used in the `.envrc` setup above must be
124
124
  unique and re-encrypted before deploying to production (don't use the provided examples)! To
125
125
  encrypt/decrypt account credentials, launch a rails console and run the following:
126
126
 
@@ -129,10 +129,10 @@ encrypt/decrypt account credentials, launch a rails console and run the followin
129
129
  # `auther_settings`.
130
130
  cipher = Auther::Cipher.new "f106a7169a5cfb90f016105b31b595282011a1090d843b7868103c770e35e38e"
131
131
 
132
- # Do this to encrypt an unecrypted value.
132
+ # Use the following to encrypt an unecrypted value.
133
133
  cipher.encrypt "test@test.com"
134
134
 
135
- # Do this to decrypt an encrypted value.
135
+ # Use the following to decrypt an encrypted value.
136
136
  cipher.decrypt "cEgyd2hHSit6NkpwN000aUNiU3BkNThxcjRRd1AyT1RmbFFqaGJRR0FjVT0tLWR6Mm1sUmxscHlxQU1leHF2d3ZoZ2c9PQ==--6d4b8bfadc54bfba6a41164675b14980caf01445"
137
137
 
138
138
  The initializer can be customized as follows:
@@ -142,19 +142,19 @@ The initializer can be customized as follows:
142
142
  - *label* - Optional. The page label (what would appear above the form). Default: "Authorization".
143
143
  - *secret* - Required. The secret passphrase used to encrypt/decrypt account credentials.
144
144
  - *accounts* - Required. The array of accounts with different or similar access to the application.
145
- - *name* - Required. The account name that uniquely identifies the account.
146
- - *encrypted_login* - Required. The encrypted account login.
147
- - *encrypted_password* - Required. The encrypted account password.
148
- - *paths* - Required. The array of blacklisted paths for which only this account has access to.
149
- - *authorized_url* - Optional. The URL to redirect to upon successful authorization. Authorized
150
- redirection works in the order defined:
151
- 0. The blacklisted path (if requested prior to authorization but now authorized).
152
- 0. The authorized URL (if defined and the blacklisted path wasn't requested).
153
- 0. The root path (if none of the above).
154
- - *deauthorized_url* - Optional. The URL to redirect to upon successful deauthorization (i.e.
155
- logout). Deauthorized redirections works as follows (in the order defined):
156
- 0. The deauthorized URL (if defined).
157
- 0. The auth URL.
145
+ - *name* - Required. The account name that uniquely identifies the account.
146
+ - *encrypted_login* - Required. The encrypted account login.
147
+ - *encrypted_password* - Required. The encrypted account password.
148
+ - *paths* - Required. The array of blacklisted paths for which only this account has access to.
149
+ - *authorized_url* - Optional. The URL to redirect to upon successful authorization. Authorized
150
+ redirection works in the order defined:
151
+ - The blacklisted path (if requested prior to authorization but now authorized).
152
+ - The authorized URL (if defined and the blacklisted path wasn't requested).
153
+ - The root path (if none of the above).
154
+ - *deauthorized_url* - Optional. The URL to redirect to upon successful deauthorization (i.e.
155
+ logout). Deauthorized redirections works as follows (in the order defined):
156
+ - The deauthorized URL (if defined).
157
+ - The auth URL.
158
158
  - *auth_url* - Optional. The URL to redirect to when enforcing authentication. Default: “/login”.
159
159
  - *logger* - Optional. The logger used to log path/account authorization messages. Default:
160
160
  `Auther::NullLogger`.
@@ -12,7 +12,7 @@ module Auther
12
12
  end
13
13
 
14
14
  def self.version
15
- "8.0.0"
15
+ "8.1.0"
16
16
  end
17
17
 
18
18
  def self.version_label
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: 8.0.0
4
+ version: 8.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
@@ -12,25 +12,25 @@ cert_chain:
12
12
  -----BEGIN CERTIFICATE-----
13
13
  MIIDeDCCAmCgAwIBAgIBATANBgkqhkiG9w0BAQUFADBBMQ8wDQYDVQQDDAZicm9v
14
14
  a2UxGjAYBgoJkiaJk/IsZAEZFgphbGNoZW1pc3RzMRIwEAYKCZImiZPyLGQBGRYC
15
- aW8wHhcNMTYxMDE5MTY0NDEzWhcNMTcxMDE5MTY0NDEzWjBBMQ8wDQYDVQQDDAZi
15
+ aW8wHhcNMTcxMDI5MjExMDE0WhcNMTgxMDI5MjExMDE0WjBBMQ8wDQYDVQQDDAZi
16
16
  cm9va2UxGjAYBgoJkiaJk/IsZAEZFgphbGNoZW1pc3RzMRIwEAYKCZImiZPyLGQB
17
- GRYCaW8wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCgryPL4/IbWDcL
18
- fnqpnoJALqj+ega7hSsvvD8sac57HPNLeKcOmSafFiQLAnTmmE132ZlFc8kyZRVn
19
- zmqSESowO5jd+ggFuy1ySqQJXhwgik04KedKRUjpIDZePrjw+M5UJT1qzKCKL2xI
20
- nx5cOKP1fSWJ1RRu8JhaDeSloGtYMdw2c28wnKPNIsWDood4xhbLcY9IqeISft2e
21
- oTAHTHandHbvt24X3/n67ceNjLBbsVZPXCC1C8C8ccjHjA4Tm2uiFoDwThMcPggg
22
- 90H6fh0vLFcNAobdPEchbge8tWtfmMPz2+C4yklANn81GA+ANsBS1uwx6mxJoMQU
23
- BNVp0aLvAgMBAAGjezB5MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQW
24
- BBRS85Rn1BaqeIONByw4t46DMDMzHDAfBgNVHREEGDAWgRRicm9va2VAYWxjaGVt
17
+ GRYCaW8wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCw5ljqJRwCHI+L
18
+ DHJM8mLBNg/PMlK/pVlesbOOnw9yOh04cUX4FNDzGG7MUIbZel55a2FCGpnPcR23
19
+ rXNYbdJ69G4pCEZVRHd93EV3mTldlr3cqdJM+V4F9kk3Y5G0AdkEjet0U9CgmNg/
20
+ J8fp7mek76hsG5AFZ+maZ2bOGTlA4Gnpp/wenFm6i9Y5upNfa0zHqpAlgOOIWRCx
21
+ nVYTPpMrBUVE4B1eoWBkcQwYkj4bi+CZnZdOZNmA1ELXzD7o8fcQc+WyEuvSbQNE
22
+ 5G/I2z/u3zvXAw4U8PjrCzmqnX4WeshYe+iXTyEkWyDHyGwaWgNvoM/Vqjc91+vh
23
+ jYLquh2zAgMBAAGjezB5MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQW
24
+ BBTiE6OzW/ceoLiVO4SM9+loBja7OjAfBgNVHREEGDAWgRRicm9va2VAYWxjaGVt
25
25
  aXN0cy5pbzAfBgNVHRIEGDAWgRRicm9va2VAYWxjaGVtaXN0cy5pbzANBgkqhkiG
26
- 9w0BAQUFAAOCAQEAZMb57Y4wdpbX8XxTukEO7VC1pndccUsxdbziGsAOiuHET3Aq
27
- ygLvrfdYrN88/w+qxncW5bxbO3a6UGkuhIFUPM8zRSE/rh6bCcJljTJrExVt42eV
28
- aYCb7WJNsx3eNXHn3uQodq3tD+lmNJzz2bFeT3smGSKEnALBjqorO/2mpDh4FJ3S
29
- 4CcDYsJ1ywep8LDJDBBGdKz9moL+axryzpeTpgTT/fFYFzRzWrURPyDvPOikh9TX
30
- n/LUZ1dKhIHzfKx1B4+TEIefArObGfkLIDM8+Dq1RX7TF1k81Men7iu4MgE9bYBn
31
- 3dE+xI3FdB5gWcdWxdtgRCmWjtXeYYyb4z6NQQ==
26
+ 9w0BAQUFAAOCAQEAUlRO4tInUyc1/mZiYVkRiCEIiIwSXELsMKWh6m8DxAz+LX6E
27
+ f8h0dQjc3u/VLnaLvbyoOTREAWrH+Cw/YiYJQASiZlcxHFXW0Ot80oM1voUJz2Yx
28
+ 9VnYfwk9o8lnK/rlE+n76UctPqYC07etDZqEnPC+Znbn3/rQM8ZeUWQb3E/Dwg4e
29
+ 3f4nvMy3WbUv7zq8PrM64D+vQPvLrFwlrQkhHnd20IC6LTrInnr3TJybMnmho45j
30
+ MQXa5aqjoFEODxVbBBI6NyNVH4gMKDsILEFlH/mcBQKKQwXj2McJmB8jIG+WuKoE
31
+ GyTL6s+8CnN9sL2Spfh/YdRn/29r4g2qi6FomQ==
32
32
  -----END CERTIFICATE-----
33
- date: 2017-08-19 00:00:00.000000000 Z
33
+ date: 2017-10-29 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: rails
@@ -47,145 +47,145 @@ dependencies:
47
47
  - !ruby/object:Gem::Version
48
48
  version: '5.0'
49
49
  - !ruby/object:Gem::Dependency
50
- name: slim-rails
50
+ name: sass-rails
51
51
  requirement: !ruby/object:Gem::Requirement
52
52
  requirements:
53
53
  - - "~>"
54
54
  - !ruby/object:Gem::Version
55
- version: '3.1'
55
+ version: '5.0'
56
56
  type: :runtime
57
57
  prerelease: false
58
58
  version_requirements: !ruby/object:Gem::Requirement
59
59
  requirements:
60
60
  - - "~>"
61
61
  - !ruby/object:Gem::Version
62
- version: '3.1'
62
+ version: '5.0'
63
63
  - !ruby/object:Gem::Dependency
64
- name: sass-rails
64
+ name: slim-rails
65
65
  requirement: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - "~>"
68
68
  - !ruby/object:Gem::Version
69
- version: '5.0'
69
+ version: '3.1'
70
70
  type: :runtime
71
71
  prerelease: false
72
72
  version_requirements: !ruby/object:Gem::Requirement
73
73
  requirements:
74
74
  - - "~>"
75
75
  - !ruby/object:Gem::Version
76
- version: '5.0'
76
+ version: '3.1'
77
77
  - !ruby/object:Gem::Dependency
78
- name: rake
78
+ name: ammeter
79
79
  requirement: !ruby/object:Gem::Requirement
80
80
  requirements:
81
81
  - - "~>"
82
82
  - !ruby/object:Gem::Version
83
- version: '12.0'
83
+ version: '1.1'
84
84
  type: :development
85
85
  prerelease: false
86
86
  version_requirements: !ruby/object:Gem::Requirement
87
87
  requirements:
88
88
  - - "~>"
89
89
  - !ruby/object:Gem::Version
90
- version: '12.0'
90
+ version: '1.1'
91
91
  - !ruby/object:Gem::Dependency
92
- name: gemsmith
92
+ name: awesome_print
93
93
  requirement: !ruby/object:Gem::Requirement
94
94
  requirements:
95
95
  - - "~>"
96
96
  - !ruby/object:Gem::Version
97
- version: '10.2'
97
+ version: '1.8'
98
98
  type: :development
99
99
  prerelease: false
100
100
  version_requirements: !ruby/object:Gem::Requirement
101
101
  requirements:
102
102
  - - "~>"
103
103
  - !ruby/object:Gem::Version
104
- version: '10.2'
104
+ version: '1.8'
105
105
  - !ruby/object:Gem::Dependency
106
- name: pg
106
+ name: bond
107
107
  requirement: !ruby/object:Gem::Requirement
108
108
  requirements:
109
109
  - - "~>"
110
110
  - !ruby/object:Gem::Version
111
- version: '0.21'
111
+ version: '0.5'
112
112
  type: :development
113
113
  prerelease: false
114
114
  version_requirements: !ruby/object:Gem::Requirement
115
115
  requirements:
116
116
  - - "~>"
117
117
  - !ruby/object:Gem::Version
118
- version: '0.21'
118
+ version: '0.5'
119
119
  - !ruby/object:Gem::Dependency
120
- name: pry
120
+ name: bundler-audit
121
121
  requirement: !ruby/object:Gem::Requirement
122
122
  requirements:
123
123
  - - "~>"
124
124
  - !ruby/object:Gem::Version
125
- version: '0.10'
125
+ version: '0.6'
126
126
  type: :development
127
127
  prerelease: false
128
128
  version_requirements: !ruby/object:Gem::Requirement
129
129
  requirements:
130
130
  - - "~>"
131
131
  - !ruby/object:Gem::Version
132
- version: '0.10'
132
+ version: '0.6'
133
133
  - !ruby/object:Gem::Dependency
134
- name: pry-byebug
134
+ name: codeclimate-test-reporter
135
135
  requirement: !ruby/object:Gem::Requirement
136
136
  requirements:
137
137
  - - "~>"
138
138
  - !ruby/object:Gem::Version
139
- version: '3.4'
139
+ version: '1.0'
140
140
  type: :development
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: '3.4'
146
+ version: '1.0'
147
147
  - !ruby/object:Gem::Dependency
148
- name: pry-state
148
+ name: gemsmith
149
149
  requirement: !ruby/object:Gem::Requirement
150
150
  requirements:
151
151
  - - "~>"
152
152
  - !ruby/object:Gem::Version
153
- version: '0.1'
153
+ version: '10.4'
154
154
  type: :development
155
155
  prerelease: false
156
156
  version_requirements: !ruby/object:Gem::Requirement
157
157
  requirements:
158
158
  - - "~>"
159
159
  - !ruby/object:Gem::Version
160
- version: '0.1'
160
+ version: '10.4'
161
161
  - !ruby/object:Gem::Dependency
162
- name: bond
162
+ name: git-cop
163
163
  requirement: !ruby/object:Gem::Requirement
164
164
  requirements:
165
165
  - - "~>"
166
166
  - !ruby/object:Gem::Version
167
- version: '0.5'
167
+ version: '1.6'
168
168
  type: :development
169
169
  prerelease: false
170
170
  version_requirements: !ruby/object:Gem::Requirement
171
171
  requirements:
172
172
  - - "~>"
173
173
  - !ruby/object:Gem::Version
174
- version: '0.5'
174
+ version: '1.6'
175
175
  - !ruby/object:Gem::Dependency
176
- name: wirb
176
+ name: guard-rspec
177
177
  requirement: !ruby/object:Gem::Requirement
178
178
  requirements:
179
179
  - - "~>"
180
180
  - !ruby/object:Gem::Version
181
- version: '2.1'
181
+ version: '4.7'
182
182
  type: :development
183
183
  prerelease: false
184
184
  version_requirements: !ruby/object:Gem::Requirement
185
185
  requirements:
186
186
  - - "~>"
187
187
  - !ruby/object:Gem::Version
188
- version: '2.1'
188
+ version: '4.7'
189
189
  - !ruby/object:Gem::Dependency
190
190
  name: hirb
191
191
  requirement: !ruby/object:Gem::Requirement
@@ -201,117 +201,117 @@ dependencies:
201
201
  - !ruby/object:Gem::Version
202
202
  version: '0.7'
203
203
  - !ruby/object:Gem::Dependency
204
- name: awesome_print
204
+ name: pg
205
205
  requirement: !ruby/object:Gem::Requirement
206
206
  requirements:
207
207
  - - "~>"
208
208
  - !ruby/object:Gem::Version
209
- version: '1.8'
209
+ version: '0.21'
210
210
  type: :development
211
211
  prerelease: false
212
212
  version_requirements: !ruby/object:Gem::Requirement
213
213
  requirements:
214
214
  - - "~>"
215
215
  - !ruby/object:Gem::Version
216
- version: '1.8'
216
+ version: '0.21'
217
217
  - !ruby/object:Gem::Dependency
218
- name: rspec-rails
218
+ name: pry
219
219
  requirement: !ruby/object:Gem::Requirement
220
220
  requirements:
221
221
  - - "~>"
222
222
  - !ruby/object:Gem::Version
223
- version: '3.6'
223
+ version: '0.10'
224
224
  type: :development
225
225
  prerelease: false
226
226
  version_requirements: !ruby/object:Gem::Requirement
227
227
  requirements:
228
228
  - - "~>"
229
229
  - !ruby/object:Gem::Version
230
- version: '3.6'
230
+ version: '0.10'
231
231
  - !ruby/object:Gem::Dependency
232
- name: ammeter
232
+ name: pry-byebug
233
233
  requirement: !ruby/object:Gem::Requirement
234
234
  requirements:
235
235
  - - "~>"
236
236
  - !ruby/object:Gem::Version
237
- version: '1.1'
237
+ version: '3.5'
238
238
  type: :development
239
239
  prerelease: false
240
240
  version_requirements: !ruby/object:Gem::Requirement
241
241
  requirements:
242
242
  - - "~>"
243
243
  - !ruby/object:Gem::Version
244
- version: '1.1'
244
+ version: '3.5'
245
245
  - !ruby/object:Gem::Dependency
246
- name: guard-rspec
246
+ name: rake
247
247
  requirement: !ruby/object:Gem::Requirement
248
248
  requirements:
249
249
  - - "~>"
250
250
  - !ruby/object:Gem::Version
251
- version: '4.7'
251
+ version: '12.0'
252
252
  type: :development
253
253
  prerelease: false
254
254
  version_requirements: !ruby/object:Gem::Requirement
255
255
  requirements:
256
256
  - - "~>"
257
257
  - !ruby/object:Gem::Version
258
- version: '4.7'
258
+ version: '12.0'
259
259
  - !ruby/object:Gem::Dependency
260
- name: git-cop
260
+ name: reek
261
261
  requirement: !ruby/object:Gem::Requirement
262
262
  requirements:
263
263
  - - "~>"
264
264
  - !ruby/object:Gem::Version
265
- version: '1.5'
265
+ version: '4.7'
266
266
  type: :development
267
267
  prerelease: false
268
268
  version_requirements: !ruby/object:Gem::Requirement
269
269
  requirements:
270
270
  - - "~>"
271
271
  - !ruby/object:Gem::Version
272
- version: '1.5'
272
+ version: '4.7'
273
273
  - !ruby/object:Gem::Dependency
274
- name: reek
274
+ name: rspec-rails
275
275
  requirement: !ruby/object:Gem::Requirement
276
276
  requirements:
277
277
  - - "~>"
278
278
  - !ruby/object:Gem::Version
279
- version: '4.7'
279
+ version: '3.7'
280
280
  type: :development
281
281
  prerelease: false
282
282
  version_requirements: !ruby/object:Gem::Requirement
283
283
  requirements:
284
284
  - - "~>"
285
285
  - !ruby/object:Gem::Version
286
- version: '4.7'
286
+ version: '3.7'
287
287
  - !ruby/object:Gem::Dependency
288
288
  name: rubocop
289
289
  requirement: !ruby/object:Gem::Requirement
290
290
  requirements:
291
291
  - - "~>"
292
292
  - !ruby/object:Gem::Version
293
- version: '0.49'
293
+ version: '0.51'
294
294
  type: :development
295
295
  prerelease: false
296
296
  version_requirements: !ruby/object:Gem::Requirement
297
297
  requirements:
298
298
  - - "~>"
299
299
  - !ruby/object:Gem::Version
300
- version: '0.49'
300
+ version: '0.51'
301
301
  - !ruby/object:Gem::Dependency
302
- name: codeclimate-test-reporter
302
+ name: wirb
303
303
  requirement: !ruby/object:Gem::Requirement
304
304
  requirements:
305
305
  - - "~>"
306
306
  - !ruby/object:Gem::Version
307
- version: '1.0'
307
+ version: '2.1'
308
308
  type: :development
309
309
  prerelease: false
310
310
  version_requirements: !ruby/object:Gem::Requirement
311
311
  requirements:
312
312
  - - "~>"
313
313
  - !ruby/object:Gem::Version
314
- version: '1.0'
314
+ version: '2.1'
315
315
  description:
316
316
  email:
317
317
  - brooke@alchemists.io
@@ -363,7 +363,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
363
363
  version: '0'
364
364
  requirements: []
365
365
  rubyforge_project:
366
- rubygems_version: 2.6.12
366
+ rubygems_version: 2.6.14
367
367
  signing_key:
368
368
  specification_version: 4
369
369
  summary: Enhances Rails with multi-account, form-based, database-less, application-wide
metadata.gz.sig CHANGED
@@ -1,3 +1 @@
1
- `�����݉$H�ԇ��_=�=�Nzvv���D6}3]�_�5
2
- ��`�Xʋ:Y�$�7� ��TN�.0� .���ɭ�u45���[߫Z�FDf븗�@p,�M�`�]�nu*e���W��NИ���
3
- �١�ޔ�J�M���ϔ��;�E��Ƶ�^��3�����Cɀ��W@d��ȧ�� >t~�ӟ�mT�6z"l�<�Ɗ����0�7��#��/�K��"Z�
1
+ U�茆��T�8��F���UК5��`��<��>�]).-<tB�ڈ����g�{ֆ���:��(��W��w���b.������*7���W��M�G� �yk.�WV�vń��ϼz�8��8�`]�c.3Z_���&U�>VN����o��G�ϐ��R0 ꩤ� �V��h��V�S섦� P�[9����;y�����4-���Le�,‹qA�]s��x�G���˭<�z�) ��O\���@�*�5/�x����φ����