rails-identity 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/rails_identity/application_controller.rb +57 -27
- data/lib/rails_identity/version.rb +1 -1
- data/test/controllers/rails_identity/sessions_controller_test.rb +1 -1
- data/test/controllers/rails_identity/users_controller_test.rb +51 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +33890 -0
- metadata +6 -5
- data/db/migrate/20160414145851_add_api_key_to_users.rb +0 -5
- data/test/dummy/tmp/cache/A5C/3F0/rails-identity-0.0.1-session-1 +0 -0
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails-identity
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David An
|
@@ -122,7 +122,11 @@ dependencies:
|
|
122
122
|
- - '>='
|
123
123
|
- !ruby/object:Gem::Version
|
124
124
|
version: '0'
|
125
|
-
description:
|
125
|
+
description: |
|
126
|
+
rails-identity is a very simple Rails engine that provides JWT-based session
|
127
|
+
management service for Rails apps. This plugin is suitable for pure RESTful
|
128
|
+
API that does not require an intricate identity service. There are no
|
129
|
+
cookies or non-unique IDs involved in this project.
|
126
130
|
email:
|
127
131
|
- davidan1981@gmail.com
|
128
132
|
executables: []
|
@@ -158,7 +162,6 @@ files:
|
|
158
162
|
- db/migrate/20160323210017_create_rails_identity_sessions.rb
|
159
163
|
- db/migrate/20160401223433_add_reset_token_to_users.rb
|
160
164
|
- db/migrate/20160411215917_add_verification_token_to_users.rb
|
161
|
-
- db/migrate/20160414145851_add_api_key_to_users.rb
|
162
165
|
- lib/rails_identity/engine.rb
|
163
166
|
- lib/rails_identity/version.rb
|
164
167
|
- lib/rails_identity.rb
|
@@ -206,7 +209,6 @@ files:
|
|
206
209
|
- test/dummy/public/favicon.ico
|
207
210
|
- test/dummy/Rakefile
|
208
211
|
- test/dummy/README.rdoc
|
209
|
-
- test/dummy/tmp/cache/A5C/3F0/rails-identity-0.0.1-session-1
|
210
212
|
- test/fixtures/rails_identity/sessions.yml
|
211
213
|
- test/fixtures/rails_identity/users.yml
|
212
214
|
- test/integration/navigation_test.rb
|
@@ -284,7 +286,6 @@ test_files:
|
|
284
286
|
- test/dummy/public/favicon.ico
|
285
287
|
- test/dummy/Rakefile
|
286
288
|
- test/dummy/README.rdoc
|
287
|
-
- test/dummy/tmp/cache/A5C/3F0/rails-identity-0.0.1-session-1
|
288
289
|
- test/fixtures/rails_identity/sessions.yml
|
289
290
|
- test/fixtures/rails_identity/users.yml
|
290
291
|
- test/integration/navigation_test.rb
|
Binary file
|