simple_form-dojo 0.0.3 → 0.0.4
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 +9 -9
- data/README.markdown +3 -0
- data/Rakefile +2 -0
- data/lib/simple_form-dojo/form_builder.rb +1 -1
- data/lib/simple_form-dojo/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
Y2I1ZjJhMmM3ZGUyMzFkNTlhMzc4MWRlN2VmNTI3MWI1NDc1ZGIxZA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
YTY5YWI3N2E0N2ZjNTYyNGQyNTE0MjdkYTg5NzE2MTlhZjQ4ZDQwMA==
|
|
7
|
+
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NTY2N2E1NjVkOWVhMjEwMjQwMmE5NWRhNThhZmMzZjA2YTIyYTNmNWU5OGIy
|
|
10
|
+
OTJhYTRiODMzMzQ2ZGVhMmNkYTBmZTE4YzY1N2JmYTg4YzJlZTY2N2M2ZDg2
|
|
11
|
+
NTBmODYyNGYwYjYxOTkxODljMTM3MDM5MWViZDc1NTA3N2Q1ZWY=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MmYzMzc2MGQxYzY3YzRmOGI0ZjZjZTMyMjk0OTg0NTY1YzEyNTJhZjNjMjFj
|
|
14
|
+
NzZkMTUwNTY1YTk0MTQ0ODE3ODZiNmY2ZjZmNDJjMjk1ZGRiMjM5YWE1NGY0
|
|
15
|
+
YzYwNTAzNWVlNmM2NWI4MTE4ODdjZTZlNzkwYjVlZjZlNGFiZWE=
|
data/README.markdown
CHANGED
|
@@ -88,3 +88,6 @@ Pass additional HTML options to either the parent DIV or any child tab's:
|
|
|
88
88
|
|
|
89
89
|
The default DOM ID for the parent div is 'id="tabs"' unless you pass an HTML option with a different value.
|
|
90
90
|
|
|
91
|
+
## Code status
|
|
92
|
+
|
|
93
|
+
[](https://travis-ci.org/agios/simple_form-dojo)
|
data/Rakefile
CHANGED
|
@@ -142,7 +142,7 @@ module SimpleFormDojo
|
|
|
142
142
|
options[:input_html] ||= {}
|
|
143
143
|
options[:dojo_html] ||= {}
|
|
144
144
|
attribute = (reflection.respond_to?(:options) && reflection.options[:foreign_key]) || :"#{reflection.name}_id"
|
|
145
|
-
options[:input_html][:value] ||= object.send(attribute)
|
|
145
|
+
options[:input_html][:value] ||= object.send(attribute).as_json
|
|
146
146
|
#Prevent collections from being loaded if using a store
|
|
147
147
|
options[:collection] = [] if options[:dojo_html][:store]
|
|
148
148
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simple_form-dojo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alex Giouzenis
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-10-26 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: simple_form
|
|
@@ -240,7 +240,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
240
240
|
version: '0'
|
|
241
241
|
requirements: []
|
|
242
242
|
rubyforge_project: simple_form-dojo
|
|
243
|
-
rubygems_version: 2.
|
|
243
|
+
rubygems_version: 2.1.9
|
|
244
244
|
signing_key:
|
|
245
245
|
specification_version: 4
|
|
246
246
|
summary: Dojo Toolkit helpers for Rails 3
|