middleware_autocomplete 0.1.1 → 0.1.2

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: 46292853444a9cce5aaa263ecff353c2c5ecd696
4
- data.tar.gz: eadd20d77d072ea44b3d687a856da39f84c7ce70
3
+ metadata.gz: 022bc72b62266c8eda27261dff19a33feac71faa
4
+ data.tar.gz: 4fb93e9b86811d10dea27d3d20b9981564d29c8e
5
5
  SHA512:
6
- metadata.gz: 35cbcd283e43f462b985f92e73ad7f3cddcab19cceceacbfee4f6ddfa28b03262b382006727c5c951592e78e20a706008181930ae2af49c25bcf30f01d89e53f
7
- data.tar.gz: 419c20af7308a5ec30ca9b772468629fd54dba44dcb2057a20db6445b465880f139c81b6d178592978e874a13fb7c02ec63cb664a864d28e91ce8c081b67c10b
6
+ metadata.gz: 1457d78c0a8b17f4a6e8902ac6ff3bcb43c94f48104a901e3d92245cd4277763a407bd80ac569be333021074e01ca639841bc63b1ebaadd09955e03bf63e9223
7
+ data.tar.gz: 6c708d4a321ab7830523c2c627cf4c4bccee8a99cbdd000db2f1183e655aaf852a624596d636104bac4fb766629113f5cab75b113b147aa66d846e8282d83a90
@@ -1,3 +1,3 @@
1
1
  module MiddlewareAutocomplete
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
Binary file
@@ -38,3 +38,34 @@ Migrating to CreatePosts (20140414220337)
38
38
  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140414220337"]]
39
39
   (159.9ms) commit transaction
40
40
  ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
41
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
42
+  (0.1ms) begin transaction
43
+ Fixture Delete (0.1ms) DELETE FROM "posts"
44
+ Fixture Insert (0.2ms) INSERT INTO "posts" ("title", "created_at", "updated_at", "id") VALUES ('Title', '2014-04-15 11:04:46', '2014-04-15 11:04:46', 980190962)
45
+ Fixture Insert (0.1ms) INSERT INTO "posts" ("title", "created_at", "updated_at", "id") VALUES ('Second Title', '2014-04-15 11:04:46', '2014-04-15 11:04:46', 298486374)
46
+ Fixture Insert (0.1ms) INSERT INTO "posts" ("title", "created_at", "updated_at", "id") VALUES ('Another One Title', '2014-04-15 11:04:46', '2014-04-15 11:04:46', 113629430)
47
+  (143.2ms) commit transaction
48
+  (0.1ms) begin transaction
49
+ ------------------------------------------
50
+ NavigationTest: test_passes_request_params
51
+ ------------------------------------------
52
+ Started GET "/autocomplete/posts?q=Another" for 127.0.0.1 at 2014-04-15 14:04:47 +0300
53
+  (0.2ms) SELECT "posts"."title" FROM "posts" WHERE (title LIKE 'Another_%') ORDER BY "posts"."title" ASC LIMIT 10
54
+  (0.0ms) rollback transaction
55
+  (0.0ms) begin transaction
56
+ ---------------------------------------------------------
57
+ NavigationTest: test_returns_json_from_autocomplete_route
58
+ ---------------------------------------------------------
59
+ Started GET "/autocomplete/posts" for 127.0.0.1 at 2014-04-15 14:04:47 +0300
60
+  (0.1ms) SELECT "posts"."title" FROM "posts" WHERE (title LIKE '_%') ORDER BY "posts"."title" ASC LIMIT 10
61
+  (0.0ms) rollback transaction
62
+  (0.0ms) begin transaction
63
+ ---------------------------------------------
64
+ MiddlewareAutocompleteTest: test_loads_routes
65
+ ---------------------------------------------
66
+  (0.0ms) rollback transaction
67
+  (0.0ms) begin transaction
68
+ --------------------------------------
69
+ MiddlewareAutocompleteTest: test_truth
70
+ --------------------------------------
71
+  (0.0ms) rollback transaction
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: middleware_autocomplete
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Konstantin Ilchenko