accessible_tooltip 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/LICENSE +20 -0
- data/accessible_tooltip.gemspec +1 -0
- data/lib/accessible_tooltip/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MzJkN2VhNzc5NTA0NmVhMjFkMDEwZTllOWEzZWExNDYzZGVkYjQxNg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MWZjNTNjMDRjMTg1OTY4YTk5OTZkOWRiNjIwZjE0MDQ3ZWU2MzVkOA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZTc3ZDZkZGE5MWVjNzc5YTBmNWU2N2U1ZDljZjg2N2RiZTJlODUyNTkwMzRh
|
10
|
+
YTJkZmJlMGJjMzA0NjcxOGY3NTE5ODkzNzYwYzA5N2NmZTM4ZDQ4ZmFmOWEz
|
11
|
+
ZjVlODU4ZjNkMTQ1YjhkYjMwYTFmZTI1MGU1NWUyMTE1NTYzYmE=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MjA2NjMxZjg4NTQyNTQ3ZDg1OWYyNjI5MDVkN2Q5NWE2NGNlOWUzMWE3YTdh
|
14
|
+
ZGFlNDU3MWJmOGI0ZDZmODk5YjAwN2MxMzRmMTAwZjhjN2NiNWQ3MzI0ZTlm
|
15
|
+
Y2U1OTBjMDJiYmZiZDI0NjMxMDhlY2NmMmZiMzkyM2FiNGUzZDk=
|
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2013 Daniel Vandersluis
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
6
|
+
this software and associated documentation files (the "Software"), to deal in
|
7
|
+
the Software without restriction, including without limitation the rights to
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
9
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
10
|
+
subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
17
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
18
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
19
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
20
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/accessible_tooltip.gemspec
CHANGED
@@ -11,6 +11,7 @@ Gem::Specification.new do |gem|
|
|
11
11
|
gem.description = %q{WCAG compliant balloon-style tooltip helper for Rails}
|
12
12
|
gem.summary = %q{Accessible tooltip helper for Rails}
|
13
13
|
gem.homepage = "https://github.com/dvandersluis/accessible_tooltip"
|
14
|
+
gem.license = 'MIT'
|
14
15
|
|
15
16
|
gem.files = `git ls-files`.split($/)
|
16
17
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: accessible_tooltip
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Vandersluis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-10-
|
11
|
+
date: 2013-10-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
type: :runtime
|
@@ -47,6 +47,7 @@ extra_rdoc_files: []
|
|
47
47
|
files:
|
48
48
|
- .gitignore
|
49
49
|
- Gemfile
|
50
|
+
- LICENSE
|
50
51
|
- LICENSE.txt
|
51
52
|
- README.md
|
52
53
|
- Rakefile
|
@@ -62,7 +63,8 @@ files:
|
|
62
63
|
- lib/accessible_tooltip/helpers.rb
|
63
64
|
- lib/accessible_tooltip/version.rb
|
64
65
|
homepage: https://github.com/dvandersluis/accessible_tooltip
|
65
|
-
licenses:
|
66
|
+
licenses:
|
67
|
+
- MIT
|
66
68
|
metadata: {}
|
67
69
|
post_install_message:
|
68
70
|
rdoc_options: []
|