simple_token_auth 0.0.3 → 0.0.4

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: 2aaf16b1c965cf81c5493fd2ea2631c88c603442
4
- data.tar.gz: 13e203296f723ba40b6d26e66260b18624723877
3
+ metadata.gz: 5ffe54dc1844bc6b11609b5cd0e378e285be41bc
4
+ data.tar.gz: 51f6898cf32e1363e352ff6826a54f834c37023e
5
5
  SHA512:
6
- metadata.gz: 33b9131c03bb9b7b28c83f8c4c3c953a095c3de2c562cd530284e376ff11e45be70726cb8075424a3f7ecfcb4e355cf2659ffadc4752ef942cf1c036c1e26aa6
7
- data.tar.gz: 6743e331d39a3854367b804f94cec344a434bb42d2a01f46028a52063a024546929b49c0c0a8b0fe8c9c8ef520cd8db6327cc9388c1f2d1ff2444dc0b5cd6e5c
6
+ metadata.gz: 3b69f8da457be6828c0c3dee784b39fbd52ae4e279619e02e79ad32e12e90f64523351be17b8b07aeac7f3628287a67a972f29a830bccd52c8f59d2aba9953f8
7
+ data.tar.gz: 795282ca5041628c91613ebea0a9ac65cc21a2c40205d44b5c0b82a987650df4d2e87988545d6800a8f1b8f7162edf1382f2b05ad9aecfe1206e0d0fa5a244df
@@ -1,3 +1,3 @@
1
1
  module SimpleTokenAuth
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_token_auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lin He
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-04 00:00:00.000000000 Z
11
+ date: 2015-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: 4.1.6
20
+ - - "<="
21
+ - !ruby/object:Gem::Version
22
+ version: 4.2.1
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
25
28
  - !ruby/object:Gem::Version
26
29
  version: 4.1.6
30
+ - - "<="
31
+ - !ruby/object:Gem::Version
32
+ version: 4.2.1
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: sqlite3
29
35
  requirement: !ruby/object:Gem::Requirement
@@ -60,21 +66,23 @@ executables: []
60
66
  extensions: []
61
67
  extra_rdoc_files: []
62
68
  files:
69
+ - MIT-LICENSE
70
+ - Rakefile
63
71
  - lib/generators/active_record/simple_token_auth_generator.rb
64
72
  - lib/generators/simple_token_auth/install_generator.rb
65
73
  - lib/generators/simple_token_auth/simple_token_auth_generator.rb
66
74
  - lib/generators/templates/api_key.rb
67
75
  - lib/generators/templates/migration.rb
68
76
  - lib/generators/templates/simple_token_auth.rb
77
+ - lib/simple_token_auth.rb
69
78
  - lib/simple_token_auth/authenticate_with_token.rb
70
79
  - lib/simple_token_auth/configuration.rb
71
80
  - lib/simple_token_auth/helpers.rb
72
81
  - lib/simple_token_auth/token_authenticatable.rb
73
82
  - lib/simple_token_auth/version.rb
74
- - lib/simple_token_auth.rb
75
83
  - lib/tasks/simple_token_auth_tasks.rake
76
- - MIT-LICENSE
77
- - Rakefile
84
+ - test/dummy/README.rdoc
85
+ - test/dummy/Rakefile
78
86
  - test/dummy/app/assets/javascripts/application.js
79
87
  - test/dummy/app/assets/javascripts/users.js
80
88
  - test/dummy/app/assets/stylesheets/application.css
@@ -88,6 +96,7 @@ files:
88
96
  - test/dummy/bin/bundle
89
97
  - test/dummy/bin/rails
90
98
  - test/dummy/bin/rake
99
+ - test/dummy/config.ru
91
100
  - test/dummy/config/application.rb
92
101
  - test/dummy/config/boot.rb
93
102
  - test/dummy/config/database.yml
@@ -107,7 +116,6 @@ files:
107
116
  - test/dummy/config/locales/en.yml
108
117
  - test/dummy/config/routes.rb
109
118
  - test/dummy/config/secrets.yml
110
- - test/dummy/config.ru
111
119
  - test/dummy/db/development.sqlite3
112
120
  - test/dummy/db/migrate/20141015200820_create_users.rb
113
121
  - test/dummy/db/migrate/20141203034209_simple_token_auth_migration.rb
@@ -119,8 +127,6 @@ files:
119
127
  - test/dummy/public/422.html
120
128
  - test/dummy/public/500.html
121
129
  - test/dummy/public/favicon.ico
122
- - test/dummy/Rakefile
123
- - test/dummy/README.rdoc
124
130
  - test/simple_token_auth/integration_test.rb
125
131
  - test/simple_token_auth/user_test.rb
126
132
  - test/simple_token_auth_test.rb
@@ -145,7 +151,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
145
151
  version: '0'
146
152
  requirements: []
147
153
  rubyforge_project:
148
- rubygems_version: 2.0.14
154
+ rubygems_version: 2.4.5
149
155
  signing_key:
150
156
  specification_version: 4
151
157
  summary: Simple and safe token authentication library that uses Rails' `authenticate_or_request_with_http_token`
@@ -201,4 +207,3 @@ test_files:
201
207
  - test/simple_token_auth/user_test.rb
202
208
  - test/simple_token_auth_test.rb
203
209
  - test/test_helper.rb
204
- has_rdoc: