bs-helper 0.1.2 → 0.1.3
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 +4 -4
- data/app/helpers/bootstrap_component_helper.rb +1 -3
- data/lib/bs-helper/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 61efb11b7de6e9101876f55325023a4704130c03
|
|
4
|
+
data.tar.gz: c6e6d2fb700222b44298c46ccc4902d7a87a70a8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5651986ac132d859062c60dedebfe27fd428743ac18e9b3769e1c8c192c4584802c3022fa35b0922e75b2983b3794fddd7b68e782baba5e73fffc0ab08ae5099
|
|
7
|
+
data.tar.gz: c41c6af58670fc1a7dc1eff9762062cbeb951fcc48aeee21237a697568b1a55e7a628ac6f017965772fd0e8f2599e7548fc2c3e6e1480f6593957389615de210
|
|
@@ -221,7 +221,7 @@ module BootstrapComponentHelper
|
|
|
221
221
|
# block: true, false, add padding to alert component. default: false
|
|
222
222
|
# closable: true, false, add a close button to alert. default: true
|
|
223
223
|
# the other options that can be accepted by div
|
|
224
|
-
def
|
|
224
|
+
def f(message=nil, options={}, &block)
|
|
225
225
|
message, options = nil, message if message.is_a?(Hash)
|
|
226
226
|
|
|
227
227
|
default_options = {closable: true, block: false}
|
|
@@ -242,8 +242,6 @@ module BootstrapComponentHelper
|
|
|
242
242
|
end
|
|
243
243
|
end
|
|
244
244
|
|
|
245
|
-
alias_method :f, :flash
|
|
246
|
-
|
|
247
245
|
# Progress bars
|
|
248
246
|
#
|
|
249
247
|
# the first parameter is a hash:
|
data/lib/bs-helper/version.rb
CHANGED