autowidthjs 1.1 → 1.2
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/README.md +2 -0
- data/autowidthjs.gemspec +4 -1
- data/lib/autowidthjs/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5c07208e355486473c275fa36672f34e2b10afe1
|
|
4
|
+
data.tar.gz: cc646fc7a6200ac0a6f77f939199b10b4117ba91
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6a6bec9fda8dfc1917023862de913c1c8939a634496392736ef31f20dc30899ed5bae8670f6ca7fb46c16cb5936f206acbef5af67dcf300fe7bad32d724560d8
|
|
7
|
+
data.tar.gz: 9a913ded4c26927fa5a31c54e30aac859bf1e4ccd893241adebd26e490deb0245a3950c87312ff765a97191b66625902772ebd1bc24b2895a5a09eb916a9b883
|
data/README.md
CHANGED
data/autowidthjs.gemspec
CHANGED
|
@@ -10,14 +10,17 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["niki-timofe@ya.ru"]
|
|
11
11
|
spec.description = "Automatically adjusts the width of the object *input* to the width of the content."
|
|
12
12
|
spec.summary = "Automatically sets the width of the object *input*."
|
|
13
|
-
spec.homepage = "
|
|
13
|
+
spec.homepage = "https://github.com/niki-timofe/autowidthjs-rails"
|
|
14
14
|
spec.license = "MIT"
|
|
15
|
+
spec.post_install_message = "JS plugin from http://stackoverflow.com/questions/931207/is-there-a-jquery-autogrow-plugin-for-text-fields"
|
|
15
16
|
|
|
16
17
|
spec.files = `git ls-files`.split($/)
|
|
17
18
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
18
19
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
20
|
spec.require_paths = ["lib"]
|
|
20
21
|
|
|
22
|
+
spec.requirements << "jQuery"
|
|
23
|
+
|
|
21
24
|
spec.add_development_dependency "bundler", "~> 1.3"
|
|
22
25
|
spec.add_development_dependency "rake"
|
|
23
26
|
end
|
data/lib/autowidthjs/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: autowidthjs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: '1.
|
|
4
|
+
version: '1.2'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- niki-timofe
|
|
@@ -56,11 +56,11 @@ files:
|
|
|
56
56
|
- lib/autowidthjs.rb
|
|
57
57
|
- lib/autowidthjs/version.rb
|
|
58
58
|
- vendor/assets/javascripts/jquery.autowidth.js
|
|
59
|
-
homepage:
|
|
59
|
+
homepage: https://github.com/niki-timofe/autowidthjs-rails
|
|
60
60
|
licenses:
|
|
61
61
|
- MIT
|
|
62
62
|
metadata: {}
|
|
63
|
-
post_install_message:
|
|
63
|
+
post_install_message: JS plugin from http://stackoverflow.com/questions/931207/is-there-a-jquery-autogrow-plugin-for-text-fields
|
|
64
64
|
rdoc_options: []
|
|
65
65
|
require_paths:
|
|
66
66
|
- lib
|
|
@@ -74,7 +74,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
74
74
|
- - ">="
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
76
|
version: '0'
|
|
77
|
-
requirements:
|
|
77
|
+
requirements:
|
|
78
|
+
- jQuery
|
|
78
79
|
rubyforge_project:
|
|
79
80
|
rubygems_version: 2.2.1
|
|
80
81
|
signing_key:
|