autocompl 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/autocompl/version.rb +1 -1
- data/test/dummy/Gemfile.lock +2 -2
- data/test/dummy/log/development.log +17 -0
- metadata +3 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fa893fec4771c8e0ec14be7e01a37b3d66fc1340
|
4
|
+
data.tar.gz: 7ea4e4890c4d420db0a6cf4889f5985f168bdad4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 259895375c1816e2ea8550f1a2d3c6a2c961fa5a9184f58aa0b200ece55e6dfee6397352b2e48d521a6e9dfe6c01741434945b3cd3b777a02ab61cc48a02a021
|
7
|
+
data.tar.gz: 770154cf40c8cfbdb6c556c806c69dc1cb2513e93cdb1277ff5c56c779060766b4d048dc1625460a52bdeeace7d2a86ef41cd3009facaf99ed40853b22c1cacc
|
data/lib/autocompl/version.rb
CHANGED
data/test/dummy/Gemfile.lock
CHANGED
@@ -1977,3 +1977,20 @@ Processing by ProductsController#autocomplete_endpoint as JSON
|
|
1977
1977
|
Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
|
1978
1978
|
|
1979
1979
|
|
1980
|
+
Started GET "/products" for ::1 at 2017-01-25 22:08:31 +0900
|
1981
|
+
DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from block (3 levels) in <class:Railtie> at /Users/takahashiseiji/src/github.com/timakin/autocompl/test/dummy/vendor/bundle/ruby/2.3.0/gems/activerecord-5.0.1/lib/active_record/railtie.rb:113)
|
1982
|
+
[1m[36mActiveRecord::SchemaMigration Load (1.8ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1983
|
+
Processing by ProductsController#index as HTML
|
1984
|
+
Rendering products/index.html.erb within layouts/application
|
1985
|
+
[1m[36mProduct Load (1.5ms)[0m [1m[34mSELECT "products".* FROM "products"[0m
|
1986
|
+
Rendered products/index.html.erb within layouts/application (26.5ms)
|
1987
|
+
Completed 200 OK in 397ms (Views: 388.4ms | ActiveRecord: 2.2ms)
|
1988
|
+
|
1989
|
+
|
1990
|
+
Started GET "/products/autocomplete_endpoint?term=%E3%82%8A%E3%82%93%E3%81%94" for ::1 at 2017-01-25 22:08:35 +0900
|
1991
|
+
Processing by ProductsController#autocomplete_endpoint as JSON
|
1992
|
+
Parameters: {"term"=>"りんご"}
|
1993
|
+
[1m[36mProduct Load (0.3ms)[0m [1m[34mSELECT DISTINCT "products"."name" FROM "products"[0m
|
1994
|
+
Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
1995
|
+
|
1996
|
+
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: autocompl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- timakin
|
@@ -14,22 +14,16 @@ dependencies:
|
|
14
14
|
name: rails
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "~>"
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '5.0'
|
20
17
|
- - ">="
|
21
18
|
- !ruby/object:Gem::Version
|
22
|
-
version:
|
19
|
+
version: 4.2.0
|
23
20
|
type: :runtime
|
24
21
|
prerelease: false
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
26
23
|
requirements:
|
27
|
-
- - "~>"
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
version: '5.0'
|
30
24
|
- - ">="
|
31
25
|
- !ruby/object:Gem::Version
|
32
|
-
version:
|
26
|
+
version: 4.2.0
|
33
27
|
- !ruby/object:Gem::Dependency
|
34
28
|
name: sqlite3
|
35
29
|
requirement: !ruby/object:Gem::Requirement
|