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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b52c84f40d30196bf1b3d8fea4072ff6f5597f5f
|
4
|
+
data.tar.gz: c35a28d8c46a6bd2370a08842763793ad1084c47
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 33469e37ee41c95b527877219af37ce101f95d0ab1be396185d4b58ec5ea4524fc93c31c8f6347f567f4555cd5dff5bc18a0c91a58a1a19568702881c325607e
|
7
|
+
data.tar.gz: ac6c12f65cf5547e8d08ad5658f83a4bbef102f98c1e6887961cf13a36a712f08a7facc273acb86816a7091146d6413954dde1a2e6cdd64cd2179af810088abe
|
@@ -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
|