twitter-bootstrap-for-rails 1.3.3 → 1.3.4

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: 62db7fe57ee026bf081a2544227be6cfe4c80a2a
4
- data.tar.gz: 1f00188dabe3b5285eaec9e204d5c30405d8f7a5
3
+ metadata.gz: 7c26b392fd30442d74a87e08a4b7b88cf3e1c84a
4
+ data.tar.gz: ddfca5e4e96038c761fdd607d8adfc5af992529e
5
5
  SHA512:
6
- metadata.gz: 85eb725cc2f34b3b06ec7922a00b09d53674e0f5c4bed8904dee6ea0dda625a22c353d8003975855fe0ec96400e68b4b66c1bae3b62c73ace8aad69afde2e1ff
7
- data.tar.gz: 1bfc4f7fe8c913eba7af979c50e9307ae7dcabf8ee12b93b8eb13edc4d50128e7befb0e4868e3b4e80d3fb8963986afad1a60b822b7e7e5e7d5f41b0750753ae
6
+ metadata.gz: 60832d386dbca33daad2431a79b6c9e4af723ff167d2caa00aa709f2f75a05b55e416447a5ee20886be5000bd636d86465723423156a2735ee2545c02489498f
7
+ data.tar.gz: 64dd4284744b3085083935f6d52765a92d4bac8583facaf90769f8766b98e0efef5f4614ebd15c9b67ac8c701cbd2119193bac3dfd25c2ba125a713b28a36d82
data/README.md CHANGED
@@ -11,7 +11,7 @@ Feedback: khrapach_ivan@mail.ru
11
11
  Inset to the `gemfile` of your RoR application:
12
12
 
13
13
  ```ruby
14
- gem 'twitter-bootstrap-for-rails', git: 'https://github.com/Xp-Apache/twitter-bootstrap-for-rails'
14
+ gem 'twitter-bootstrap-for-rails'
15
15
  ```
16
16
 
17
17
  Run `bundle install`:
@@ -686,6 +686,7 @@ In action of some controller, for example:
686
686
 
687
687
  ## Change log
688
688
 
689
+ v1.3.4 - Replace '«' and '»' to html equivalent
689
690
  v1.3.3 - Available manually set required option for form controls
690
691
  v1.3.2 - Added required labels
691
692
  v1.3.1 - Added page_title helper
@@ -6,7 +6,7 @@ module PaginatorHelper
6
6
 
7
7
  state = current_page == 1 ? :disabled : :normal
8
8
  param_name = options.delete(:param) || :page
9
- content << page_item('«', current_page-1, state, param_name)
9
+ content << page_item('&laquo;'.html_safe, current_page-1, state, param_name)
10
10
 
11
11
  total_pages.times do |i|
12
12
  page_num = i + 1
@@ -15,7 +15,7 @@ module PaginatorHelper
15
15
  end
16
16
 
17
17
  state = current_page == total_pages ? :disabled : :normal
18
- content << page_item('»', current_page+1, state, param_name)
18
+ content << page_item('&raquo;'.html_safe, current_page+1, state, param_name)
19
19
 
20
20
  paginator_params = options.dup
21
21
  paginator_params[:class] = parse_html_classes_to_arr paginator_params[:class]
@@ -2,7 +2,7 @@ module Twitter
2
2
  module Bootstrap
3
3
  module For
4
4
  module Rails
5
- VERSION = '1.3.3'
5
+ VERSION = '1.3.4'
6
6
  BS_VERSION = '3.0.2'
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twitter-bootstrap-for-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.3
4
+ version: 1.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Khrapach Ivan