lotus-helpers 0.1.0 → 0.2.0
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 +167 -1
- data/lib/lotus/helpers.rb +6 -0
- data/lib/lotus/helpers/form_helper.rb +423 -0
- data/lib/lotus/helpers/form_helper/form_builder.rb +790 -0
- data/lib/lotus/helpers/form_helper/html_node.rb +79 -0
- data/lib/lotus/helpers/form_helper/values.rb +38 -0
- data/lib/lotus/helpers/html_helper.rb +1 -1
- data/lib/lotus/helpers/html_helper/html_builder.rb +11 -2
- data/lib/lotus/helpers/html_helper/html_node.rb +2 -1
- data/lib/lotus/helpers/link_to_helper.rb +28 -0
- data/lib/lotus/helpers/number_formatting_helper.rb +220 -0
- data/lib/lotus/helpers/version.rb +1 -1
- data/lotus-helpers.gemspec +1 -1
- metadata +11 -5
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lotus-helpers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Luca Guidi
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2015-
|
12
|
+
date: 2015-06-23 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: lotus-utils
|
@@ -17,14 +17,14 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - "~>"
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: '0.
|
20
|
+
version: '0.5'
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - "~>"
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: '0.
|
27
|
+
version: '0.5'
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: bundler
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
@@ -79,10 +79,16 @@ files:
|
|
79
79
|
- README.md
|
80
80
|
- lib/lotus/helpers.rb
|
81
81
|
- lib/lotus/helpers/escape_helper.rb
|
82
|
+
- lib/lotus/helpers/form_helper.rb
|
83
|
+
- lib/lotus/helpers/form_helper/form_builder.rb
|
84
|
+
- lib/lotus/helpers/form_helper/html_node.rb
|
85
|
+
- lib/lotus/helpers/form_helper/values.rb
|
82
86
|
- lib/lotus/helpers/html_helper.rb
|
83
87
|
- lib/lotus/helpers/html_helper/empty_html_node.rb
|
84
88
|
- lib/lotus/helpers/html_helper/html_builder.rb
|
85
89
|
- lib/lotus/helpers/html_helper/html_node.rb
|
90
|
+
- lib/lotus/helpers/link_to_helper.rb
|
91
|
+
- lib/lotus/helpers/number_formatting_helper.rb
|
86
92
|
- lib/lotus/helpers/routing_helper.rb
|
87
93
|
- lib/lotus/helpers/version.rb
|
88
94
|
- lotus-helpers.gemspec
|
@@ -106,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
106
112
|
version: '0'
|
107
113
|
requirements: []
|
108
114
|
rubyforge_project:
|
109
|
-
rubygems_version: 2.4.
|
115
|
+
rubygems_version: 2.4.8
|
110
116
|
signing_key:
|
111
117
|
specification_version: 4
|
112
118
|
summary: Lotus helpers
|