corn_starch 1.9.11 → 1.9.12
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/corn_starch/field_helper.rb +15 -0
- data/lib/corn_starch/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 19aa6560a3182062e164779c4a3fcb7e82eba82d
|
|
4
|
+
data.tar.gz: 99224fa6d50ea1001d91842db449e8d1aa901be4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9a5e8a839fa63ac707cf1facd62ab8d80e45e6e26efb3ed04f292ed3fdec97f1f76a09b3a203dd10cf55c80064b349aa3f2734942c4c20fbaaa517764e16b0bb
|
|
7
|
+
data.tar.gz: d2b895063576c5891cc140e72bf7523277b0c0b14721b5d857fbca49074e1a216771c40817035ccfcfe5ad2130f84de56069323c29be4966173ec3ee4a30fb9f
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# CornStarch
|
|
2
|
+
# by Eresse <eresse@eresse.net>
|
|
3
|
+
|
|
4
|
+
# CornStarch Module
|
|
5
|
+
module CornStarch
|
|
6
|
+
|
|
7
|
+
# Field Helper
|
|
8
|
+
module FieldHelper
|
|
9
|
+
|
|
10
|
+
# Show Field Tag
|
|
11
|
+
def field_dsp_tag v = nil, &block
|
|
12
|
+
span_tag v, class: 'cs-field', &block
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
data/lib/corn_starch/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: corn_starch
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.9.
|
|
4
|
+
version: 1.9.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eresse
|
|
@@ -57,6 +57,7 @@ files:
|
|
|
57
57
|
- app/controllers/corn_starch/corn_starch_controller.rb
|
|
58
58
|
- app/controllers/corn_starch/sessions_controller.rb
|
|
59
59
|
- app/helpers/corn_starch/corn_starch_helper.rb
|
|
60
|
+
- app/helpers/corn_starch/field_helper.rb
|
|
60
61
|
- app/helpers/corn_starch/gravatar_helper.rb
|
|
61
62
|
- app/helpers/corn_starch/infiniscroll_helper.rb
|
|
62
63
|
- app/helpers/corn_starch/modal_helper.rb
|