jquery_textcomplete 0.1.7 → 0.1.8

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: c95031788a45ba38c31b2e289cd6c818aa87ba8a
4
- data.tar.gz: eeffaf625e7d2064ea523153579be1b48f55e966
3
+ metadata.gz: 09941941f5d42754ad0b5945d434e350aaa6ba13
4
+ data.tar.gz: 84370c46d1c25f88eab5ba9c4190c2581d75d1ff
5
5
  SHA512:
6
- metadata.gz: ffe2f009ee9364f7b13b133bb46e2085845a4513d1461105b561cc8ed5e8e0e52624c55eb28f3bda2993415d64381ade0e16c0a47370b5897be4b3ec835f819e
7
- data.tar.gz: d82a1f7a29610e7a153315259c1912379d25a29c8371e2ea66514bfc6434a7170ca70160451e9e23548085570c2a4108441c8fc897054ab14d71c297677fdc8c
6
+ metadata.gz: aeb22004a89c09f7f13eccb4e2d5c29df9875a4894905f7f5a4675b7175ef78080f517a8e5a4bcb0c6f0e2f2737dcaba30c30368c7374e83014ff3d6126dc8b1
7
+ data.tar.gz: ac9409f36c3f883ff9e8dad56eba393b79b462350464c24ed76ef9ffc4d9fbd76c63a3690b1f4a5ee0b30dc5411f9b523c677bb335a02c698c6cf453fb211c70
data/.gitignore CHANGED
@@ -7,5 +7,3 @@
7
7
  /pkg/
8
8
  /spec/reports/
9
9
  /tmp/
10
- /deleted/
11
- /jquery_textcomplete-*
data/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # JqueryTextcomplete
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/jquery_textcomplete`. To experiment with that code, run `bin/console` for an interactive prompt.
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.
@@ -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{Textcomplete can be used for autocompleting search fields, tags in textareas, and other textfield inputs!}
13
- spec.description = %q{Textcomplete 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.}
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
 
@@ -1,3 +1,3 @@
1
1
  module JqueryTextcomplete
2
- VERSION = "0.1.7"
2
+ VERSION = "0.1.8"
3
3
  end
@@ -10,6 +10,12 @@
10
10
  margin: 0;
11
11
  // end
12
12
 
13
+ // for mobile and tablet
14
+ @media (max-width: 768px) {
15
+ width: 70%;
16
+ overflow: auto;
17
+ }
18
+
13
19
  li {
14
20
  border-top: 1px solid #ddd;
15
21
  padding: 2px 5px;
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.7
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-13 00:00:00.000000000 Z
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: Textcomplete can be used for autocompleting search fields, tags in textareas,
98
- and other textfield inputs! Compatible with Ruby on Rails applications, can be used
99
- in conjunction with acts-as-taggable-on gem for autocomplete tagging, requires Jquery.
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: Textcomplete can be used for autocompleting search fields, tags in textareas,
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: []