formtastic_auto_select2 0.0.3 → 0.0.5
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/{app → lib/formtastic}/inputs/ajax_select2_input.rb +1 -1
- data/{app → lib/formtastic}/inputs/select2_input.rb +1 -1
- data/lib/formtastic_auto_select2.rb +2 -0
- data/lib/formtastic_auto_select2/infectors.rb +6 -0
- data/lib/formtastic_auto_select2/infectors/formtastic.rb +8 -0
- data/lib/formtastic_auto_select2/infectors/formtastic/inputs.rb +14 -0
- data/lib/formtastic_auto_select2/version.rb +1 -1
- metadata +7 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c1361f65cfd29c14f01905de2a1eff9a1660dde3
|
|
4
|
+
data.tar.gz: bf7b6ae698a114b32da0543ee5e3abdb2c7ee05a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b5630b3162abc98c10ea812be2e48cef4b587759b81bc73ff373851eba553c650004b22e044ccee4960ea8c1c56b314ff21f01c9f1c3e6b4ee266997d9eabfaa
|
|
7
|
+
data.tar.gz: c0aa93c6730f5e5718e062939fa4e8f9ffe7654349bec505cb493b9607d3aedd2c779c6eef47faa43a31c1a9428468e09d1e6f96545280464268f55c9c31d5e0
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
require 'formtastic_auto_select2/version'
|
|
2
2
|
require 'formtastic_auto_select2/engine'
|
|
3
|
+
require 'formtastic_auto_select2/infectors'
|
|
4
|
+
Formtastic::Inputs.send(:include, FormtasticAutoSelect2::Infectors::Formtastic::Inputs)
|
|
3
5
|
|
|
4
6
|
module FormtasticAutoSelect2
|
|
5
7
|
extend ActiveSupport::Autoload
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: formtastic_auto_select2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dmitriy Lisichkin
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-04-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: railties
|
|
@@ -119,11 +119,14 @@ files:
|
|
|
119
119
|
- Gemfile
|
|
120
120
|
- LICENSE
|
|
121
121
|
- README.md
|
|
122
|
-
- app/inputs/ajax_select2_input.rb
|
|
123
|
-
- app/inputs/select2_input.rb
|
|
124
122
|
- formtastic_auto_select2.gemspec
|
|
123
|
+
- lib/formtastic/inputs/ajax_select2_input.rb
|
|
124
|
+
- lib/formtastic/inputs/select2_input.rb
|
|
125
125
|
- lib/formtastic_auto_select2.rb
|
|
126
126
|
- lib/formtastic_auto_select2/engine.rb
|
|
127
|
+
- lib/formtastic_auto_select2/infectors.rb
|
|
128
|
+
- lib/formtastic_auto_select2/infectors/formtastic.rb
|
|
129
|
+
- lib/formtastic_auto_select2/infectors/formtastic/inputs.rb
|
|
127
130
|
- lib/formtastic_auto_select2/version.rb
|
|
128
131
|
homepage: https://github.com/tab10id/formtastic_auto_select2
|
|
129
132
|
licenses:
|