nested_form_fields 0.0.1 → 0.0.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.
- data/README.md +2 -2
- data/lib/nested_form_fields/version.rb +1 -1
- data/nested_form_fields.gemspec +3 -2
- metadata +6 -5
data/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# Nested Form Fields
|
|
2
2
|
|
|
3
|
-
This gem helps creating forms for models with nested has_many associations.
|
|
3
|
+
This Rails gem helps creating forms for models with nested has_many associations.
|
|
4
4
|
|
|
5
5
|
It uses jQuery to dynamically add and remove nested associations.
|
|
6
6
|
|
|
7
7
|
- Works for arbitrarily deeply nested associations (tested up to 4 levels).
|
|
8
8
|
- Works with form builders like simple_form.
|
|
9
|
-
- Requires the Rails asset pipeline
|
|
9
|
+
- Requires Ruby 1.9 and the Rails asset pipeline
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
data/nested_form_fields.gemspec
CHANGED
|
@@ -4,8 +4,9 @@ require File.expand_path('../lib/nested_form_fields/version', __FILE__)
|
|
|
4
4
|
Gem::Specification.new do |gem|
|
|
5
5
|
gem.authors = ["Nico Ritsche"]
|
|
6
6
|
gem.email = ["ncrdevmail@gmail.com"]
|
|
7
|
-
gem.description = %q{
|
|
8
|
-
|
|
7
|
+
gem.description = %q{Rails gem for dynamically adding and removing nested has_many association fields in a form.
|
|
8
|
+
Uses jQuery and supports multiple nesting levels. Requires Ruby 1.9 and the asset pipeline.}
|
|
9
|
+
gem.summary = %q{Rails gem for dynamically adding and removing nested has_many association fields in a form.}
|
|
9
10
|
gem.homepage = ""
|
|
10
11
|
|
|
11
12
|
gem.files = `git ls-files`.split($\)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nested_form_fields
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -11,8 +11,9 @@ bindir: bin
|
|
|
11
11
|
cert_chain: []
|
|
12
12
|
date: 2012-05-20 00:00:00.000000000Z
|
|
13
13
|
dependencies: []
|
|
14
|
-
description:
|
|
15
|
-
in a form
|
|
14
|
+
description: ! "Rails gem for dynamically adding and removing nested has_many association
|
|
15
|
+
fields in a form.\n Uses jQuery and supports multiple nesting
|
|
16
|
+
levels. Requires Ruby 1.9 and the asset pipeline."
|
|
16
17
|
email:
|
|
17
18
|
- ncrdevmail@gmail.com
|
|
18
19
|
executables: []
|
|
@@ -51,7 +52,7 @@ rubyforge_project:
|
|
|
51
52
|
rubygems_version: 1.8.15
|
|
52
53
|
signing_key:
|
|
53
54
|
specification_version: 3
|
|
54
|
-
summary:
|
|
55
|
-
a form.
|
|
55
|
+
summary: Rails gem for dynamically adding and removing nested has_many association
|
|
56
|
+
fields in a form.
|
|
56
57
|
test_files: []
|
|
57
58
|
has_rdoc:
|