e9_tags 0.0.8 → 0.0.9

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.
@@ -47,7 +47,6 @@ module E9Tags
47
47
 
48
48
  private
49
49
 
50
- # NOTE this subroutine is kinda useless, should be rewritten to handle both tag list types
51
50
  def _tag_list(tags, highlighted_tag = nil)
52
51
  content_tag(:div, :class => 'tag-list') do
53
52
  tags.each_with_index.map do |tag, index|
@@ -55,7 +54,7 @@ module E9Tags
55
54
  link_class = 'tag'
56
55
  link_class << ' highlight' if highlighted_tag && highlighted_tag == tag
57
56
  link_class << ' last' if index == tags.length - 1
58
- link_to(tag, searches_path(:query => tag), :class => link_class)
57
+ link_to(tag, searches_path(:query => tag), :class => link_class, :rel => "nofollow")
59
58
  end.join(', ').html_safe
60
59
  end
61
60
  end
@@ -1,3 +1,3 @@
1
1
  module E9Tags
2
- VERSION = "0.0.8"
2
+ VERSION = "0.0.9"
3
3
  end
metadata CHANGED
@@ -1,12 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: e9_tags
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 0
7
- - 0
8
- - 8
9
- version: 0.0.8
4
+ prerelease:
5
+ version: 0.0.9
10
6
  platform: ruby
11
7
  authors:
12
8
  - Travis Cox
@@ -14,7 +10,7 @@ autorequire:
14
10
  bindir: bin
15
11
  cert_chain: []
16
12
 
17
- date: 2011-04-15 00:00:00 -04:00
13
+ date: 2011-04-21 00:00:00 -04:00
18
14
  default_executable:
19
15
  dependencies:
20
16
  - !ruby/object:Gem::Dependency
@@ -25,10 +21,6 @@ dependencies:
25
21
  requirements:
26
22
  - - ~>
27
23
  - !ruby/object:Gem::Version
28
- segments:
29
- - 3
30
- - 0
31
- - 0
32
24
  version: 3.0.0
33
25
  type: :runtime
34
26
  version_requirements: *id001
@@ -40,10 +32,6 @@ dependencies:
40
32
  requirements:
41
33
  - - ~>
42
34
  - !ruby/object:Gem::Version
43
- segments:
44
- - 2
45
- - 0
46
- - 6
47
35
  version: 2.0.6
48
36
  type: :runtime
49
37
  version_requirements: *id002
@@ -156,21 +144,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
156
144
  requirements:
157
145
  - - ">="
158
146
  - !ruby/object:Gem::Version
159
- segments:
160
- - 0
161
147
  version: "0"
162
148
  required_rubygems_version: !ruby/object:Gem::Requirement
163
149
  none: false
164
150
  requirements:
165
151
  - - ">="
166
152
  - !ruby/object:Gem::Version
167
- segments:
168
- - 0
169
153
  version: "0"
170
154
  requirements: []
171
155
 
172
156
  rubyforge_project: e9_tags
173
- rubygems_version: 1.3.7
157
+ rubygems_version: 1.6.2
174
158
  signing_key:
175
159
  specification_version: 3
176
160
  summary: Extension to ActsAsTaggableOn used in e9 Rails 3 projects