rails-fort 0.1.1 → 0.1.2
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/README.md +9 -1
- data/app/assets/javascripts/fort.js.erb +0 -1
- data/lib/rails/fort/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: 9931e59cecb47189e3457c4cfc0619d33e2bdd23
|
|
4
|
+
data.tar.gz: 9e4973d3179b7936035f8b918c71281d9db935be
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4051176647c611553839d7e827cc926cc3476cdcb6e5fa312d28c2599feef9205c0dc109f10479b5ba8780fc9691212548239ba726ceafcb288a9013c9e8cd93
|
|
7
|
+
data.tar.gz: cedd3e67c7f450fd39263ba61ae849236fabb3ce432aadc181b77681e613c7ec61ec889ec1e4f2d9493ca601e5a16c3565f38038fa8dc0239be9d4edf26459fe
|
data/README.md
CHANGED
|
@@ -29,7 +29,15 @@ and in application.css file
|
|
|
29
29
|
|
|
30
30
|
## Usage
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
Place `<div class="form">` before your form.All `<input>` inside form will be taken in account.
|
|
33
|
+
|
|
34
|
+
Example
|
|
35
|
+
|
|
36
|
+
<div class="form">
|
|
37
|
+
<form method="post">
|
|
38
|
+
<input type="text">
|
|
39
|
+
</form>
|
|
40
|
+
</div>
|
|
33
41
|
|
|
34
42
|
Certain fields:
|
|
35
43
|
|
data/lib/rails/fort/version.rb
CHANGED