useful_helpers 0.0.24 → 0.0.25
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,8 +1,12 @@
|
|
1
1
|
# coding: utf-8
|
2
|
-
module
|
3
|
-
|
4
|
-
|
5
|
-
|
2
|
+
module UsefulHelpers
|
3
|
+
module Helpers
|
4
|
+
module ButtonsHelper
|
5
|
+
def buttons(&block)
|
6
|
+
content_for :buttons do
|
7
|
+
content_tag :div, :class => "buttons", &block
|
8
|
+
end
|
9
|
+
end
|
6
10
|
end
|
7
11
|
end
|
8
12
|
end
|