knock 1.4.1 → 1.4.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- Y2JmMzAwNjRhMDNiZTQ4ZWQwYzRjNDlhNzhjMzA1YzZmY2QzMTY2Yw==
4
+ MmQ1NDdiNjFmNjkyNTEyMTIwYjlmNWNjZmU3ZDI3NjhkNTM4ZGNiNA==
5
5
  data.tar.gz: !binary |-
6
- ZDMyNWRkNDA4NGI3NTk0MDBmNmI4ZGJlZmUzNDgyNTc0MmEyNGNhOQ==
6
+ YzlkOGFkZTZkNDRiMzFhNDA1YzQ4NGFiM2NkYTNjMzkxZTA3MjUwOQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YmIwZjc3Njc5NzdjMmMyMGM1NzlhNmY5Y2EyNWNiNzFhZDA2MWJkOWNhNjQ4
10
- NTZlNWQwOTdlM2ZiZmY5OGZhY2Y3YjVjNDIzYThlZjJkZDcxNThiYmNlMDEw
11
- MTJiMTllMGVmOTE5MjhiYTlkNTgzYjI2YzIxZGQwZGM1M2ZiNGM=
9
+ ODgxOWJmMTQxNTkzMWYzN2QyMGU0ZGZkNDkyNTE0M2RkMzM4MGVhMTQ5NjA5
10
+ ZjcxOTdhNTlkNjFiNzlmZTMxYTExODg1OGI5ZjIwZmI4MjRkN2U0ZjhmODk1
11
+ Y2FjMmZjMjQxYzkxZThmYTFiOTY5NzMzMTI4MmVmMDVlNWY0N2U=
12
12
  data.tar.gz: !binary |-
13
- YjNiMWJmODQwNWI4MThlODBjYzVjNjBjY2ZhODU2YmRiNDNkMGM4NjllM2Q2
14
- MTQyYjlhYTMwOGM3MzYyMDM1YWQwY2M0NjUwYWUwMTEwNjc5YjkyODVlOTFh
15
- NDk3ODJkZjU3OTQyZDU2MTY2MzEzOGE5NTA0YTBmMGQzYmU1OGQ=
13
+ ZWY5ZTczMGJmOTkwYThmZmIzMzgzMWUxZDNmZDU3YjJkY2RlODk0NDJmNWY4
14
+ ZDM4NTI1MDQ3ZjFlYjZlYmUyZjViMjllNDE4NWE4OWFiZGM3Y2NhNGM0ZGYx
15
+ NjFjZTZkNjU4ZTViNGUxNmNiNWM2NjJjOGU3NjRkMDU5NWYzMmM=
@@ -1,9 +1,7 @@
1
1
  module Knock::Authenticable
2
2
  def current_user
3
3
  @current_user ||= begin
4
- token = params[:token] ||
5
- request.headers['Authorization'].match(/^Bearer (.*)$/)[1]
6
-
4
+ token = params[:token] || request.headers['Authorization'].split.last
7
5
  Knock::AuthToken.new(token: token).current_user
8
6
  rescue
9
7
  nil
@@ -1,3 +1,3 @@
1
1
  module Knock
2
- VERSION = "1.4.1"
2
+ VERSION = "1.4.2"
3
3
  end
Binary file
@@ -1,86 +1,74 @@
1
-  (3.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar NOT NULL, "password_digest" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2
-  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1
+  (1.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar NOT NULL, "password_digest" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3
3
   (0.1ms) select sqlite_version(*)
4
-  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
5
   (0.1ms) SELECT version FROM "schema_migrations"
6
-  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150713101607')
7
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8
-  (0.1ms) begin transaction
9
- Fixture Delete (0.2ms) DELETE FROM "users"
10
- Fixture Insert (0.2ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at", "id") VALUES ('one@example.net', '$2a$04$p5uJvjODelWvUMamobUYm.l7v1cL4QMmQQsFmdlQpZWa4xyWD6Zsa', '2016-01-08 12:37:37', '2016-01-08 12:37:37', 980190962)
11
- Fixture Insert (0.1ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at", "id") VALUES ('two@example.net', '$2a$04$2hM6WVXy88h9vqb31eD4l.6jkUb6ppqstn5w.ixGo9hN3Sb76n5Ei', '2016-01-08 12:37:37', '2016-01-08 12:37:37', 298486374)
12
-  (1.4ms) commit transaction
13
-  (0.0ms) begin transaction
14
- ---------------------------------------
15
- KnockTest: test_setup_block_yields_self
16
- ---------------------------------------
17
-  (0.0ms) rollback transaction
6
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150713101607')
7
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
8
+  (0.2ms) begin transaction
9
+ Fixture Delete (0.3ms) DELETE FROM "users"
10
+ Fixture Insert (0.1ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at", "id") VALUES ('one@example.net', '$2a$04$Ftx/SLqnunNsiEOQGJB7SugvltRumkLLDUxzyJinlzeP2PmuuCd8O', '2016-01-28 23:20:53', '2016-01-28 23:20:53', 980190962)
11
+ Fixture Insert (0.1ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at", "id") VALUES ('two@example.net', '$2a$04$0R8O7gQYRNgKRiJ/A4J63eCUKwK7iD9emys6U6L5LXs.TedzD6wEq', '2016-01-28 23:20:53', '2016-01-28 23:20:53', 298486374)
12
+  (2.1ms) commit transaction
18
13
   (0.1ms) begin transaction
19
- --------------------------------------------------
20
- CurrentUsersControllerTest: test_responds_with_200
21
- --------------------------------------------------
22
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
23
- Processing by CurrentUsersController#show as HTML
24
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
25
- Completed 200 OK in 2ms (ActiveRecord: 0.1ms)
26
-  (0.1ms) rollback transaction
27
-  (0.0ms) begin transaction
28
- ---------------------------------------------------------------------------
29
- CurrentUsersControllerTest: test_responds_with_404_if_user_is_not_logged_in
30
- ---------------------------------------------------------------------------
31
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
32
- Processing by CurrentUsersController#show as HTML
33
- Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
14
+ -----------------------------------------------------------------------------
15
+ Knock::AuthTokenControllerTest: test_responds_with_404_if_user_does_not_exist
16
+ -----------------------------------------------------------------------------
17
+ Processing by Knock::AuthTokenController#create as HTML
18
+ Parameters: {"auth"=>{"email"=>"wrong@example.net", "password"=>"[FILTERED]"}}
19
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "wrong@example.net"]]
20
+ Completed 404 Not Found in 7ms (ActiveRecord: 0.3ms)
21
+  (0.1ms) rollback transaction
22
+  (0.1ms) begin transaction
23
+ -----------------------------------------------------------------------------
24
+ Knock::AuthTokenControllerTest: test_responds_with_404_if_password_is_invalid
25
+ -----------------------------------------------------------------------------
26
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
27
+ Processing by Knock::AuthTokenController#create as HTML
28
+ Parameters: {"auth"=>{"email"=>"one@example.net", "password"=>"[FILTERED]"}}
29
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "one@example.net"]]
30
+ Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms)
34
31
   (0.1ms) rollback transaction
35
32
   (0.1ms) begin transaction
36
33
  ------------------------------------------------------
37
34
  Knock::AuthTokenControllerTest: test_responds_with_201
38
35
  ------------------------------------------------------
39
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
36
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
40
37
  Processing by Knock::AuthTokenController#create as HTML
41
38
  Parameters: {"auth"=>{"email"=>"one@example.net", "password"=>"[FILTERED]"}}
42
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "one@example.net"]]
39
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "one@example.net"]]
43
40
  User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "one@example.net"]]
44
- Completed 201 Created in 3ms (Views: 0.2ms | ActiveRecord: 0.2ms)
41
+ Completed 201 Created in 5ms (Views: 0.3ms | ActiveRecord: 0.2ms)
45
42
   (0.1ms) rollback transaction
46
-  (0.0ms) begin transaction
47
- -----------------------------------------------------------------------------
48
- Knock::AuthTokenControllerTest: test_responds_with_404_if_password_is_invalid
49
- -----------------------------------------------------------------------------
43
+  (0.1ms) begin transaction
44
+ -------------------------------------------------------------------------------------
45
+ ProtectedResourcesControllerTest: test_accepts_any_prefix_in_the_authorization_header
46
+ -------------------------------------------------------------------------------------
50
47
  User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
51
- Processing by Knock::AuthTokenController#create as HTML
52
- Parameters: {"auth"=>{"email"=>"one@example.net", "password"=>"[FILTERED]"}}
53
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "one@example.net"]]
54
- Completed 404 Not Found in 2ms (ActiveRecord: 0.1ms)
48
+ Processing by ProtectedResourcesController#index as HTML
49
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
50
+ Completed 200 OK in 1ms (ActiveRecord: 0.1ms)
55
51
   (0.1ms) rollback transaction
56
52
   (0.1ms) begin transaction
57
- -----------------------------------------------------------------------------
58
- Knock::AuthTokenControllerTest: test_responds_with_404_if_user_does_not_exist
59
- -----------------------------------------------------------------------------
60
- Processing by Knock::AuthTokenController#create as HTML
61
- Parameters: {"auth"=>{"email"=>"wrong@example.net", "password"=>"[FILTERED]"}}
62
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "wrong@example.net"]]
63
- Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms)
64
-  (0.1ms) rollback transaction
65
-  (0.1ms) begin transaction
66
- -----------------------------------------------------------------
67
- ProtectedResourcesControllerTest: test_responds_with_unauthorized
68
- -----------------------------------------------------------------
69
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
53
+ ------------------------------------------------------------------------------
54
+ ProtectedResourcesControllerTest: test_responds_with_success_with_token_in_url
55
+ ------------------------------------------------------------------------------
56
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
70
57
  Processing by ProtectedResourcesController#index as HTML
71
- Filter chain halted as :authenticate rendered or redirected
72
- Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
58
+ Parameters: {"token"=>"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE0NTQxMDk2NTMsImF1ZCI6ZmFsc2UsInN1YiI6OTgwMTkwOTYyfQ.d4fLV6Mmra4gxopgyHq0c_vz9GVe8Jzku38Waw3jOgM"}
59
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
60
+ Completed 200 OK in 1ms (ActiveRecord: 0.1ms)
73
61
   (0.1ms) rollback transaction
74
-  (0.0ms) begin transaction
75
- ---------------------------------------------------------------------------------------
76
- ProtectedResourcesControllerTest: test_responds_with_success_with_valid_token_in_header
77
- ---------------------------------------------------------------------------------------
62
+  (0.1ms) begin transaction
63
+ ------------------------------------------------------------------------------
64
+ ProtectedResourcesControllerTest: test_has_a_current_user_after_authentication
65
+ ------------------------------------------------------------------------------
78
66
  User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
79
67
  Processing by ProtectedResourcesController#index as HTML
80
- User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
81
- Completed 200 OK in 1ms (ActiveRecord: 0.0ms)
68
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
69
+ Completed 200 OK in 1ms (ActiveRecord: 0.1ms)
82
70
   (0.1ms) rollback transaction
83
-  (0.0ms) begin transaction
71
+  (0.1ms) begin transaction
84
72
  -------------------------------------------------------------------------------------------
85
73
  ProtectedResourcesControllerTest: test_responds_with_unauthorized_with_invalid_token_in_url
86
74
  -------------------------------------------------------------------------------------------
@@ -90,16 +78,16 @@ Processing by ProtectedResourcesController#index as HTML
90
78
  Filter chain halted as :authenticate rendered or redirected
91
79
  Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
92
80
   (0.1ms) rollback transaction
93
-  (0.0ms) begin transaction
94
- ------------------------------------------------------------------------------
95
- ProtectedResourcesControllerTest: test_has_a_current_user_after_authentication
96
- ------------------------------------------------------------------------------
81
+  (0.1ms) begin transaction
82
+ ----------------------------------------------------------------------------------
83
+ ProtectedResourcesControllerTest: test_accepts_authorization_header_without_prefix
84
+ ----------------------------------------------------------------------------------
97
85
  User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
98
86
  Processing by ProtectedResourcesController#index as HTML
99
- User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
100
- Completed 200 OK in 1ms (ActiveRecord: 0.0ms)
87
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
88
+ Completed 200 OK in 1ms (ActiveRecord: 0.1ms)
101
89
   (0.1ms) rollback transaction
102
-  (0.0ms) begin transaction
90
+  (0.1ms) begin transaction
103
91
  ----------------------------------------------------------------------------------------------
104
92
  ProtectedResourcesControllerTest: test_responds_with_unauthorized_with_invalid_token_in_header
105
93
  ----------------------------------------------------------------------------------------------
@@ -108,39 +96,69 @@ Processing by ProtectedResourcesController#index as HTML
108
96
  Filter chain halted as :authenticate rendered or redirected
109
97
  Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
110
98
   (0.1ms) rollback transaction
111
-  (0.0ms) begin transaction
112
- ------------------------------------------------------------------------------
113
- ProtectedResourcesControllerTest: test_responds_with_success_with_token_in_url
114
- ------------------------------------------------------------------------------
99
+  (0.1ms) begin transaction
100
+ -----------------------------------------------------------------
101
+ ProtectedResourcesControllerTest: test_responds_with_unauthorized
102
+ -----------------------------------------------------------------
115
103
  User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
116
104
  Processing by ProtectedResourcesController#index as HTML
117
- Parameters: {"token"=>"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE0NTIzNDMwNTcsImF1ZCI6ZmFsc2UsInN1YiI6OTgwMTkwOTYyfQ._LmEq4p__HN1QJJugtREjx2fhFHfDM64ZZ3DYp8E17k"}
118
- User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
119
- Completed 200 OK in 1ms (ActiveRecord: 0.0ms)
120
-  (0.1ms) rollback transaction
121
-  (0.1ms) begin transaction
105
+ Filter chain halted as :authenticate rendered or redirected
106
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
107
+  (0.1ms) rollback transaction
108
+  (0.1ms) begin transaction
109
+ ---------------------------------------------------------------------------------------
110
+ ProtectedResourcesControllerTest: test_responds_with_success_with_valid_token_in_header
111
+ ---------------------------------------------------------------------------------------
112
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
113
+ Processing by ProtectedResourcesController#index as HTML
114
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
115
+ Completed 200 OK in 1ms (ActiveRecord: 0.1ms)
116
+  (0.1ms) rollback transaction
117
+  (0.1ms) begin transaction
122
118
  ----------------------------------------------------------------
123
119
  InstallGeneratorTest: test_Assert_all_files_are_properly_created
124
120
  ----------------------------------------------------------------
125
-  (0.1ms) rollback transaction
126
-  (0.1ms) begin transaction
127
- ----------------------------------------------------
128
- Knock::AuthTokenTest: test_decode_RSA_encoded_tokens
129
- ----------------------------------------------------
130
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
131
121
   (0.1ms) rollback transaction
132
122
   (0.1ms) begin transaction
133
- -------------------------------------------------
134
- Knock::AuthTokenTest: test_encode_tokens_with_RSA
135
- -------------------------------------------------
123
+ --------------------------------------------------
124
+ CurrentUsersControllerTest: test_responds_with_200
125
+ --------------------------------------------------
126
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
127
+ Processing by CurrentUsersController#show as HTML
128
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
129
+ Completed 200 OK in 1ms (ActiveRecord: 0.1ms)
136
130
   (0.1ms) rollback transaction
137
131
   (0.1ms) begin transaction
132
+ ---------------------------------------------------------------------------
133
+ CurrentUsersControllerTest: test_responds_with_404_if_user_is_not_logged_in
134
+ ---------------------------------------------------------------------------
135
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
136
+ Processing by CurrentUsersController#show as HTML
137
+ Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
138
+  (0.1ms) rollback transaction
139
+  (0.1ms) begin transaction
138
140
  -------------------------------------------------------------------------
139
141
  Knock::AuthTokenTest: test_verify_audience_when_token_audience_is_present
140
142
  -------------------------------------------------------------------------
141
-  (0.1ms) rollback transaction
142
-  (0.0ms) begin transaction
143
+  (0.1ms) rollback transaction
144
+  (0.1ms) begin transaction
145
+ -------------------------------------------------
146
+ Knock::AuthTokenTest: test_encode_tokens_with_RSA
147
+ -------------------------------------------------
148
+  (0.1ms) rollback transaction
149
+  (0.1ms) begin transaction
143
150
  -------------------------------------------
144
151
  Knock::AuthTokenTest: test_verify_algorithm
145
152
  -------------------------------------------
153
+  (0.1ms) rollback transaction
154
+  (0.1ms) begin transaction
155
+ ----------------------------------------------------
156
+ Knock::AuthTokenTest: test_decode_RSA_encoded_tokens
157
+ ----------------------------------------------------
158
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
159
+  (0.1ms) rollback transaction
160
+  (0.1ms) begin transaction
161
+ ---------------------------------------
162
+ KnockTest: test_setup_block_yields_self
163
+ ---------------------------------------
146
164
   (0.1ms) rollback transaction
@@ -43,4 +43,20 @@ class ProtectedResourcesControllerTest < ActionController::TestCase
43
43
  assert_response :success
44
44
  assert @controller.current_user.id == @user.id
45
45
  end
46
+
47
+ test "accepts any prefix in the authorization header" do
48
+ @request.env['HTTP_AUTHORIZATION'] = "Other #{@token}"
49
+
50
+ get :index
51
+
52
+ assert_response :success
53
+ end
54
+
55
+ test "accepts authorization header without prefix" do
56
+ @request.env['HTTP_AUTHORIZATION'] = "#{@token}"
57
+
58
+ get :index
59
+
60
+ assert_response :success
61
+ end
46
62
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: knock
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.1
4
+ version: 1.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arnaud MESUREUR
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-01-08 00:00:00.000000000 Z
12
+ date: 2016-01-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails