objectreload-pagination 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/VERSION +1 -1
  2. data/lib/pagination/view_helpers.rb +1 -1
  3. metadata +5 -5
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.4
1
+ 0.1.5
@@ -152,7 +152,7 @@ module Pagination
152
152
  links.unshift page_link_or_span(@collection.previous_page, 'disabled prev_page', @options[:previous_label])
153
153
  links.push page_link_or_span(@collection.next_page, 'disabled next_page', @options[:next_label])
154
154
 
155
- html = links.join(@options[:separator])
155
+ html = links.join(@options[:separator]).html_safe
156
156
  @options[:container] ? @template.content_tag(:div, html, html_attributes) : html
157
157
  end
158
158
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 4
9
- version: 0.1.4
8
+ - 5
9
+ version: 0.1.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - Mateusz Drozdzynski
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-05-12 00:00:00 +03:00
17
+ date: 2010-06-29 00:00:00 +02:00
18
18
  default_executable:
19
19
  dependencies: []
20
20
 
@@ -79,8 +79,8 @@ signing_key:
79
79
  specification_version: 3
80
80
  summary: Simple pagination - without changes in controllers
81
81
  test_files:
82
- - test/lib/view_test_process.rb
83
82
  - test/active_record_extentions_test.rb
84
83
  - test/collection_test.rb
85
- - test/view_helpers_test.rb
84
+ - test/lib/view_test_process.rb
86
85
  - test/test_helper.rb
86
+ - test/view_helpers_test.rb