form_angular 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6cd018a194377ba8ca92de6d924c2d71dae809d2
4
- data.tar.gz: 03bd06c67288d0728b77102a65462a768c04d95a
3
+ metadata.gz: 44d80e1d16aa462bfa1e134c289a4d128bb7d0f1
4
+ data.tar.gz: de7eb4b51a6e6c5d13280247d44cf4c0ba7adad3
5
5
  SHA512:
6
- metadata.gz: b9984f0dee59c16e2b49c767208a538cbc37af4fd524318b179ec621b5ccbfa8cf0c145c551cd2092b907e27e032266ac3f4c53ffb404c342fdef8ac15da4f36
7
- data.tar.gz: 4f7e9fddcd7b9ec248b26b28ae1ca4eebf8e14d1e7d5eacec356f740c713ef53de56a80137eee1963f0f645cc01080bb3af3e753f6ad0b29a22da4813a93cc86
6
+ metadata.gz: 70b56f0b67d050ca15457fd0d1dc471c04e84781515b7ff13803e340d4869e97b8ce65d9c4649a6bb45632748d2c89ceebbb05400b74272b1b17582871b53376
7
+ data.tar.gz: eaec11be6e673d9f0a323cbc14f82b534f0493c8568a19f5f3d2aaf1d541bb94d8b4909d02111cc509ada814811a287327fd9f202c62533d88b41fe5c146a8fc
data/README.md CHANGED
@@ -3,6 +3,14 @@ form_angular
3
3
 
4
4
  Rails gem for forms using Angular
5
5
 
6
+ Add these gems to your Gemfile
7
+
8
+ `gem 'simple_form'`
9
+ `gem 'form_angular'`
10
+
11
+ If you are not already including AngularJS then :
12
+ `gem 'angular-rails'`
13
+
6
14
  Currently uses simple forms, might grow out of it and stay compatible for performance purposes.
7
15
 
8
16
  # Enabling an angular form
@@ -14,7 +14,7 @@ module FormAngular
14
14
 
15
15
  def build_angular_options(attribute_name, builder)
16
16
  begin
17
- names = builder.object_name.sub("[", ".").sub("]", "").sub("_attributes", "").split(".")
17
+ names = builder.object_name.gsub("[", ".").gsub("]", "").gsub("_attributes", "").split(".")
18
18
  names[0] = names[0].camelize(:lower)
19
19
  angular_options = {
20
20
  'ng-model' => "#{names.join(".")}.#{attribute_name}",
@@ -1,3 +1,3 @@
1
1
  module FormAngular
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: form_angular
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Guillaume Balaine
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-07-08 00:00:00.000000000 Z
12
+ date: 2014-08-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler