data_href_highlight 0.1.2 → 0.1.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3062157085b318231725c43b950e8c27b27a14ce
4
- data.tar.gz: 74bb60cee36c28bbb287eba598d8e92ad076562b
3
+ metadata.gz: 645715bd46e52de6f756c651e49c4a569aa844dd
4
+ data.tar.gz: be66ec78db391ca8d18397f2bbca4b1de96f6102
5
5
  SHA512:
6
- metadata.gz: 1c0a79e387c8e560025680a29c95303fa777c3cc3e4b55bfe5c081eda4a5f68c7ab91f8a301f61ca81cc3fb97897a34c7b9792b65f0e293d47cfb722cc5422f7
7
- data.tar.gz: 9ccaee0a8875169f2e2e6f0891f68033acd44ebc70e2cee4c56087b3089c75528206e43f1547b9adcc217f2157363ff36d1ac17f3e7267a6e2dc2f134fdea2aa
6
+ metadata.gz: fb27e5ffd52e249bb12241171d5f6b2489d80d67ca9e7b550b645b030284f4e8a6d1013da6ad1b1378987002796fd8a087ced610c2140ff5d1a3acf4b138171d
7
+ data.tar.gz: 78092e34c47383644ab6d813c7c6be455aa294a9f237337882b9b646c9002dad4e51806b1bc40b2f665329e0be5e4659461a8b2f7de7d669e55df2d5e57fa99a
@@ -10,7 +10,9 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["grolofson@bitdev.io"]
11
11
 
12
12
  spec.summary = %q{This Gem adds a quick command to highlight data-href.}
13
- spec.description = %q{Highlight data-hrefs, making table rows clickable..}
13
+ spec.description = %q{Highlight data-hrefs, making table rows clickable.. must set data-href in your table for this to function properly, example: <tbody>
14
+ <% @employees.each do |employee| %>
15
+ <tr data-href="<%= employee_url(employee) %>">}
14
16
  spec.homepage = "https://github.com/xDarkicex/Data_Href_gem"
15
17
  spec.license = "MIT"
16
18
 
@@ -1,3 +1,3 @@
1
1
  module DataHrefHighlight
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: data_href_highlight
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gentry Rolofson
@@ -52,7 +52,10 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '5.0'
55
- description: Highlight data-hrefs, making table rows clickable..
55
+ description: |-
56
+ Highlight data-hrefs, making table rows clickable.. must set data-href in your table for this to function properly, example: <tbody>
57
+ <% @employees.each do |employee| %>
58
+ <tr data-href="<%= employee_url(employee) %>">
56
59
  email:
57
60
  - grolofson@bitdev.io
58
61
  executables: []