jquery_textcomplete 0.1.7 → 0.1.8
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 +4 -4
- data/.gitignore +0 -2
- data/README.md +3 -3
- data/jquery_textcomplete.gemspec +3 -2
- data/lib/jquery_textcomplete/version.rb +1 -1
- data/vendor/assets/stylesheets/jquery.textcomplete.scss +6 -0
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 09941941f5d42754ad0b5945d434e350aaa6ba13
|
|
4
|
+
data.tar.gz: 84370c46d1c25f88eab5ba9c4190c2581d75d1ff
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aeb22004a89c09f7f13eccb4e2d5c29df9875a4894905f7f5a4675b7175ef78080f517a8e5a4bcb0c6f0e2f2737dcaba30c30368c7374e83014ff3d6126dc8b1
|
|
7
|
+
data.tar.gz: ac9409f36c3f883ff9e8dad56eba393b79b462350464c24ed76ef9ffc4d9fbd76c63a3690b1f4a5ee0b30dc5411f9b523c677bb335a02c698c6cf453fb211c70
|
data/.gitignore
CHANGED
data/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
# JqueryTextcomplete
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
|
3
|
+
JqueryTextcomplete can be used for autocompleting search fields, tags in textareas, and other textfield inputs! Compatible with Ruby on Rails applications, can be used in conjunction with acts-as-taggable-on gem for autocomplete tagging, requires Jquery.
|
|
6
4
|
|
|
7
5
|
## Installation
|
|
8
6
|
|
|
@@ -30,6 +28,8 @@ Include in your application.scss file:
|
|
|
30
28
|
|
|
31
29
|
//= require jquery.textcomplete
|
|
32
30
|
|
|
31
|
+
For more options and style customization, please, see [jQuery Textcomplete documentation](https://github.com/yuku-t/jquery-textcomplete).
|
|
32
|
+
|
|
33
33
|
<!-- ## Development
|
|
34
34
|
|
|
35
35
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
data/jquery_textcomplete.gemspec
CHANGED
|
@@ -4,13 +4,14 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
require 'jquery_textcomplete/version'
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
|
+
# maybe refactor, change name to jquery_textcomplete-rails
|
|
7
8
|
spec.name = "jquery_textcomplete"
|
|
8
9
|
spec.version = JqueryTextcomplete::VERSION
|
|
9
10
|
spec.authors = ["Sebastian Peterlin"]
|
|
10
11
|
spec.email = ["speterlin@gmail.com"]
|
|
11
12
|
|
|
12
|
-
spec.summary = %q{
|
|
13
|
-
spec.description = %q{
|
|
13
|
+
spec.summary = %q{JqueryTextcomplete can be used for autocompleting search fields, tags in textareas, and other textfield inputs!}
|
|
14
|
+
spec.description = %q{JqueryTextcomplete can be used for autocompleting search fields, tags in textareas, and other textfield inputs! Compatible with Ruby on Rails applications, can be used in conjunction with acts-as-taggable-on gem for autocomplete tagging, requires Jquery.}
|
|
14
15
|
spec.homepage = "http://github.com/speterlin/jquery_textcomplete"
|
|
15
16
|
spec.license = "MIT"
|
|
16
17
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jquery_textcomplete
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sebastian Peterlin
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-04-
|
|
11
|
+
date: 2018-04-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -94,9 +94,10 @@ dependencies:
|
|
|
94
94
|
- - "~>"
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
96
|
version: '5.0'
|
|
97
|
-
description:
|
|
98
|
-
and other textfield inputs! Compatible with Ruby on Rails applications,
|
|
99
|
-
in conjunction with acts-as-taggable-on gem for autocomplete tagging,
|
|
97
|
+
description: JqueryTextcomplete can be used for autocompleting search fields, tags
|
|
98
|
+
in textareas, and other textfield inputs! Compatible with Ruby on Rails applications,
|
|
99
|
+
can be used in conjunction with acts-as-taggable-on gem for autocomplete tagging,
|
|
100
|
+
requires Jquery.
|
|
100
101
|
email:
|
|
101
102
|
- speterlin@gmail.com
|
|
102
103
|
executables: []
|
|
@@ -113,7 +114,6 @@ files:
|
|
|
113
114
|
- Rakefile
|
|
114
115
|
- bin/console
|
|
115
116
|
- bin/setup
|
|
116
|
-
- jquery_textcomplete-0.1.0.gem
|
|
117
117
|
- jquery_textcomplete.gemspec
|
|
118
118
|
- lib/jquery_textcomplete.rb
|
|
119
119
|
- lib/jquery_textcomplete/version.rb
|
|
@@ -143,6 +143,6 @@ rubyforge_project:
|
|
|
143
143
|
rubygems_version: 2.5.1
|
|
144
144
|
signing_key:
|
|
145
145
|
specification_version: 4
|
|
146
|
-
summary:
|
|
147
|
-
and other textfield inputs!
|
|
146
|
+
summary: JqueryTextcomplete can be used for autocompleting search fields, tags in
|
|
147
|
+
textareas, and other textfield inputs!
|
|
148
148
|
test_files: []
|