bootswatch_rails 3.2.0.7 → 3.2.0.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 50512531e441f2bb338d5d2088dd9f21dd3d8d8a
4
- data.tar.gz: 83845e120bdaef0e6f1f22cb2282eb2b1f1a4185
3
+ metadata.gz: b52c84f40d30196bf1b3d8fea4072ff6f5597f5f
4
+ data.tar.gz: c35a28d8c46a6bd2370a08842763793ad1084c47
5
5
  SHA512:
6
- metadata.gz: cd25e163470352337e43f9e006c50c0a479be6423342f05afeb91aac03e0fea40fe68c60211cca8a6bcb3854c0a7e08f72f458484b0bd4eb0cbaf6818d2e81b9
7
- data.tar.gz: 4a4f95fdc21edf2b15fff0b59c5e86180eaed063c74de584c5e9335b9086f4964a18916b54980e04779f149b4b047cf02c19f3b9e3bf3a434d99df2e989f48d9
6
+ metadata.gz: 33469e37ee41c95b527877219af37ce101f95d0ab1be396185d4b58ec5ea4524fc93c31c8f6347f567f4555cd5dff5bc18a0c91a58a1a19568702881c325607e
7
+ data.tar.gz: ac6c12f65cf5547e8d08ad5658f83a4bbef102f98c1e6887961cf13a36a712f08a7facc273acb86816a7091146d6413954dde1a2e6cdd64cd2179af810088abe
@@ -1,5 +1,5 @@
1
1
  module BootswatchRails
2
- VERSION = "3.2.0.7"
2
+ VERSION = "3.2.0.8"
3
3
  THEMES = [:amelia, :cerulean, :cosmo, :custom, :cyborg, :darkly, :flatly, :journal, :lumen, :paper, :readable, :sandstone, :simplex, :slate, :spacelab, :superhero, :united, :yeti]
4
4
  DEFAULT = 1
5
5
  end
@@ -20,15 +20,15 @@ module BootswatchRails
20
20
  def add_to_view
21
21
  file = "app/views/#{table_name}/index.html.erb"
22
22
  columns.each do |column|
23
- gsub_file file, /(#{name}\.#{column})/, "raw(\\1)"
23
+ gsub_file file, / (#{name}\.#{column}) /, " raw(\\1) "
24
24
  end
25
25
  file = "app/views/#{table_name}/show.html.erb"
26
26
  columns.each do |column|
27
- gsub_file file, /(@#{name}\.#{column})/, "raw(\\1)"
27
+ gsub_file file, / (@#{name}\.#{column}) /, " raw(\\1) "
28
28
  end
29
29
  file = "app/views/#{table_name}/_form.html.erb"
30
30
  columns.each do |column|
31
- gsub_file file, /(:#{column}) /, "\\1, input_html: { class: 'cleditor' } "
31
+ gsub_file file, / (:#{column}) /, " \\1, input_html: { class: 'cleditor' } "
32
32
  end
33
33
  end
34
34
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootswatch_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.0.7
4
+ version: 3.2.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Volker Wiegand