simple_form_auto_awesomplete 0.0.1
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 +7 -0
- data/.gitignore +9 -0
- data/.idea/.name +1 -0
- data/.idea/misc.xml +14 -0
- data/.idea/modules.xml +8 -0
- data/.idea/simple_form_auto_awesomplete.iml +56 -0
- data/.idea/vcs.xml +6 -0
- data/.idea/workspace.xml +658 -0
- data/.travis.yml +4 -0
- data/Gemfile +4 -0
- data/README.md +1 -0
- data/Rakefile +1 -0
- data/lib/simple_form/inputs/ajax_awesomplete_input.rb +15 -0
- data/lib/simple_form_auto_awesomplete.rb +8 -0
- data/lib/simple_form_auto_awesomplete/engine.rb +5 -0
- data/lib/simple_form_auto_awesomplete/infectors.rb +4 -0
- data/lib/simple_form_auto_awesomplete/infectors/simple_form.rb +4 -0
- data/lib/simple_form_auto_awesomplete/infectors/simple_form/inputs.rb +7 -0
- data/lib/simple_form_auto_awesomplete/version.rb +3 -0
- data/simple_form_auto_awesomplete.gemspec +27 -0
- metadata +134 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 1ce56843de4f53b36e2a45de1ace03f3b4988044
|
|
4
|
+
data.tar.gz: 15eb2662182cbd2263bd9aed3da75627876efc17
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 9cd49cb76a974a7b15a14c5ccf4641c593ed39648dd18f9ff844f2859fb562f4f9025344c4bce6d8caa549944332f54e35b49e104bece6ff120a9cf5b3262237
|
|
7
|
+
data.tar.gz: 78913424acfcdc3aac92ad1217548fdbff58eb7f1cfa403a474535bec5bbb4452692a28698c920cbcf21664aabef59742c01b44cec123013ef1906db264100f3
|
data/.gitignore
ADDED
data/.idea/.name
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
simple_form_auto_awesomplete
|
data/.idea/misc.xml
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
|
4
|
+
<OptionsSetting value="true" id="Add" />
|
|
5
|
+
<OptionsSetting value="true" id="Remove" />
|
|
6
|
+
<OptionsSetting value="true" id="Checkout" />
|
|
7
|
+
<OptionsSetting value="true" id="Update" />
|
|
8
|
+
<OptionsSetting value="true" id="Status" />
|
|
9
|
+
<OptionsSetting value="true" id="Edit" />
|
|
10
|
+
<ConfirmationsSetting value="0" id="Add" />
|
|
11
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
|
12
|
+
</component>
|
|
13
|
+
<component name="ProjectRootManager" version="2" project-jdk-name="ruby-1.9.3-p194" project-jdk-type="RUBY_SDK" />
|
|
14
|
+
</project>
|
data/.idea/modules.xml
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ProjectModuleManager">
|
|
4
|
+
<modules>
|
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/simple_form_auto_awesomplete.iml" filepath="$PROJECT_DIR$/.idea/simple_form_auto_awesomplete.iml" />
|
|
6
|
+
</modules>
|
|
7
|
+
</component>
|
|
8
|
+
</project>
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
|
3
|
+
<component name="FacetManager">
|
|
4
|
+
<facet type="gem" name="Ruby Gem">
|
|
5
|
+
<configuration>
|
|
6
|
+
<option name="GEM_APP_ROOT_PATH" value="$MODULE_DIR$" />
|
|
7
|
+
<option name="GEM_APP_TEST_PATH" value="$MODULE_DIR$/test" />
|
|
8
|
+
<option name="GEM_APP_LIB_PATH" value="$MODULE_DIR$/lib" />
|
|
9
|
+
</configuration>
|
|
10
|
+
</facet>
|
|
11
|
+
</component>
|
|
12
|
+
<component name="NewModuleRootManager">
|
|
13
|
+
<content url="file://$MODULE_DIR$">
|
|
14
|
+
<sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
|
|
15
|
+
</content>
|
|
16
|
+
<orderEntry type="jdk" jdkName="rbenv: 2.2.2" jdkType="RUBY_SDK" />
|
|
17
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
18
|
+
<orderEntry type="library" scope="PROVIDED" name="actionmailer (v3.2.22, rbenv: 2.2.2) [gem]" level="application" />
|
|
19
|
+
<orderEntry type="library" scope="PROVIDED" name="actionpack (v3.2.22, rbenv: 2.2.2) [gem]" level="application" />
|
|
20
|
+
<orderEntry type="library" scope="PROVIDED" name="activemodel (v3.2.22, rbenv: 2.2.2) [gem]" level="application" />
|
|
21
|
+
<orderEntry type="library" scope="PROVIDED" name="activerecord (v3.2.22, rbenv: 2.2.2) [gem]" level="application" />
|
|
22
|
+
<orderEntry type="library" scope="PROVIDED" name="activeresource (v3.2.22, rbenv: 2.2.2) [gem]" level="application" />
|
|
23
|
+
<orderEntry type="library" scope="PROVIDED" name="activesupport (v3.2.22, rbenv: 2.2.2) [gem]" level="application" />
|
|
24
|
+
<orderEntry type="library" scope="PROVIDED" name="arel (v3.0.3, rbenv: 2.2.2) [gem]" level="application" />
|
|
25
|
+
<orderEntry type="library" scope="PROVIDED" name="auto_awesomplete (v0.0.1, rbenv: 2.2.2) [gem]" level="application" />
|
|
26
|
+
<orderEntry type="library" scope="PROVIDED" name="builder (v3.0.4, rbenv: 2.2.2) [gem]" level="application" />
|
|
27
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.10.6, rbenv: 2.2.2) [gem]" level="application" />
|
|
28
|
+
<orderEntry type="library" scope="PROVIDED" name="coffee-rails (v3.2.2, rbenv: 2.2.2) [gem]" level="application" />
|
|
29
|
+
<orderEntry type="library" scope="PROVIDED" name="coffee-script (v2.4.1, rbenv: 2.2.2) [gem]" level="application" />
|
|
30
|
+
<orderEntry type="library" scope="PROVIDED" name="coffee-script-source (v1.9.1.1, rbenv: 2.2.2) [gem]" level="application" />
|
|
31
|
+
<orderEntry type="library" scope="PROVIDED" name="erubis (v2.7.0, rbenv: 2.2.2) [gem]" level="application" />
|
|
32
|
+
<orderEntry type="library" scope="PROVIDED" name="execjs (v2.6.0, rbenv: 2.2.2) [gem]" level="application" />
|
|
33
|
+
<orderEntry type="library" scope="PROVIDED" name="hike (v1.2.3, rbenv: 2.2.2) [gem]" level="application" />
|
|
34
|
+
<orderEntry type="library" scope="PROVIDED" name="i18n (v0.7.0, rbenv: 2.2.2) [gem]" level="application" />
|
|
35
|
+
<orderEntry type="library" scope="PROVIDED" name="journey (v1.0.4, rbenv: 2.2.2) [gem]" level="application" />
|
|
36
|
+
<orderEntry type="library" scope="PROVIDED" name="json (v1.8.3, rbenv: 2.2.2) [gem]" level="application" />
|
|
37
|
+
<orderEntry type="library" scope="PROVIDED" name="mail (v2.5.4, rbenv: 2.2.2) [gem]" level="application" />
|
|
38
|
+
<orderEntry type="library" scope="PROVIDED" name="mime-types (v1.25.1, rbenv: 2.2.2) [gem]" level="application" />
|
|
39
|
+
<orderEntry type="library" scope="PROVIDED" name="multi_json (v1.11.2, rbenv: 2.2.2) [gem]" level="application" />
|
|
40
|
+
<orderEntry type="library" scope="PROVIDED" name="polyglot (v0.3.5, rbenv: 2.2.2) [gem]" level="application" />
|
|
41
|
+
<orderEntry type="library" scope="PROVIDED" name="rack (v1.4.7, rbenv: 2.2.2) [gem]" level="application" />
|
|
42
|
+
<orderEntry type="library" scope="PROVIDED" name="rack-cache (v1.2, rbenv: 2.2.2) [gem]" level="application" />
|
|
43
|
+
<orderEntry type="library" scope="PROVIDED" name="rack-ssl (v1.3.4, rbenv: 2.2.2) [gem]" level="application" />
|
|
44
|
+
<orderEntry type="library" scope="PROVIDED" name="rack-test (v0.6.3, rbenv: 2.2.2) [gem]" level="application" />
|
|
45
|
+
<orderEntry type="library" scope="PROVIDED" name="rails (v3.2.22, rbenv: 2.2.2) [gem]" level="application" />
|
|
46
|
+
<orderEntry type="library" scope="PROVIDED" name="railties (v4.2.3, rbenv: 2.2.2) [gem]" level="application" />
|
|
47
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v10.4.2, rbenv: 2.2.2) [gem]" level="application" />
|
|
48
|
+
<orderEntry type="library" scope="PROVIDED" name="rdoc (v3.12.2, rbenv: 2.2.2) [gem]" level="application" />
|
|
49
|
+
<orderEntry type="library" scope="PROVIDED" name="simple_form (v3.1.0, rbenv: 2.2.2) [gem]" level="application" />
|
|
50
|
+
<orderEntry type="library" scope="PROVIDED" name="sprockets (v2.2.3, rbenv: 2.2.2) [gem]" level="application" />
|
|
51
|
+
<orderEntry type="library" scope="PROVIDED" name="thor (v0.19.1, rbenv: 2.2.2) [gem]" level="application" />
|
|
52
|
+
<orderEntry type="library" scope="PROVIDED" name="tilt (v1.4.1, rbenv: 2.2.2) [gem]" level="application" />
|
|
53
|
+
<orderEntry type="library" scope="PROVIDED" name="treetop (v1.4.15, rbenv: 2.2.2) [gem]" level="application" />
|
|
54
|
+
<orderEntry type="library" scope="PROVIDED" name="tzinfo (v0.3.44, rbenv: 2.2.2) [gem]" level="application" />
|
|
55
|
+
</component>
|
|
56
|
+
</module>
|
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
ADDED
|
@@ -0,0 +1,658 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ChangeListManager">
|
|
4
|
+
<list default="true" id="4dbab497-46f3-4988-9484-4fbff55f1ffa" name="Default" comment="" />
|
|
5
|
+
<ignored path="simple_form_auto_awesomplete.iws" />
|
|
6
|
+
<ignored path=".idea/workspace.xml" />
|
|
7
|
+
<ignored path=".idea/dataSources.local.xml" />
|
|
8
|
+
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
|
9
|
+
<option name="TRACKING_ENABLED" value="true" />
|
|
10
|
+
<option name="SHOW_DIALOG" value="false" />
|
|
11
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
12
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
13
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
14
|
+
</component>
|
|
15
|
+
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
|
16
|
+
<component name="CreatePatchCommitExecutor">
|
|
17
|
+
<option name="PATCH_PATH" value="" />
|
|
18
|
+
</component>
|
|
19
|
+
<component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
|
|
20
|
+
<component name="FavoritesManager">
|
|
21
|
+
<favorites_list name="simple_form_auto_awesomplete" />
|
|
22
|
+
</component>
|
|
23
|
+
<component name="FileEditorManager">
|
|
24
|
+
<leaf>
|
|
25
|
+
<file leaf-file-name="simple_form_auto_awesomplete.gemspec" pinned="false" current-in-tab="false">
|
|
26
|
+
<entry file="file://$PROJECT_DIR$/simple_form_auto_awesomplete.gemspec">
|
|
27
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
28
|
+
<state vertical-scroll-proportion="0.0">
|
|
29
|
+
<caret line="23" column="0" selection-start-line="23" selection-start-column="0" selection-end-line="23" selection-end-column="0" />
|
|
30
|
+
<folding />
|
|
31
|
+
</state>
|
|
32
|
+
</provider>
|
|
33
|
+
</entry>
|
|
34
|
+
</file>
|
|
35
|
+
<file leaf-file-name="version.rb" pinned="false" current-in-tab="false">
|
|
36
|
+
<entry file="file://$PROJECT_DIR$/lib/simple_form_auto_awesomplete/version.rb">
|
|
37
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
38
|
+
<state vertical-scroll-proportion="0.0">
|
|
39
|
+
<caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
|
40
|
+
<folding />
|
|
41
|
+
</state>
|
|
42
|
+
</provider>
|
|
43
|
+
</entry>
|
|
44
|
+
</file>
|
|
45
|
+
<file leaf-file-name="simple_form_auto_awesomplete.rb" pinned="false" current-in-tab="false">
|
|
46
|
+
<entry file="file://$PROJECT_DIR$/lib/simple_form_auto_awesomplete.rb">
|
|
47
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
48
|
+
<state vertical-scroll-proportion="0.0">
|
|
49
|
+
<caret line="6" column="20" selection-start-line="6" selection-start-column="20" selection-end-line="6" selection-end-column="20" />
|
|
50
|
+
<folding />
|
|
51
|
+
</state>
|
|
52
|
+
</provider>
|
|
53
|
+
</entry>
|
|
54
|
+
</file>
|
|
55
|
+
<file leaf-file-name="README.md" pinned="false" current-in-tab="true">
|
|
56
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
|
57
|
+
<provider editor-type-id="MarkdownPreviewEditor">
|
|
58
|
+
<state />
|
|
59
|
+
</provider>
|
|
60
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
61
|
+
<state vertical-scroll-proportion="0.0">
|
|
62
|
+
<caret line="0" column="27" selection-start-line="0" selection-start-column="27" selection-end-line="0" selection-end-column="27" />
|
|
63
|
+
<folding />
|
|
64
|
+
</state>
|
|
65
|
+
</provider>
|
|
66
|
+
</entry>
|
|
67
|
+
</file>
|
|
68
|
+
<file leaf-file-name="inputs.rb" pinned="false" current-in-tab="false">
|
|
69
|
+
<entry file="file://$PROJECT_DIR$/lib/simple_form_auto_awesomplete/infectors/simple_form/inputs.rb">
|
|
70
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
71
|
+
<state vertical-scroll-proportion="0.0">
|
|
72
|
+
<caret line="0" column="6" selection-start-line="0" selection-start-column="6" selection-end-line="0" selection-end-column="6" />
|
|
73
|
+
<folding />
|
|
74
|
+
</state>
|
|
75
|
+
</provider>
|
|
76
|
+
</entry>
|
|
77
|
+
</file>
|
|
78
|
+
<file leaf-file-name="ajax_awesomplete_input.rb" pinned="false" current-in-tab="false">
|
|
79
|
+
<entry file="file://$PROJECT_DIR$/lib/simple_form/inputs/ajax_awesomplete_input.rb">
|
|
80
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
81
|
+
<state vertical-scroll-proportion="0.0">
|
|
82
|
+
<caret line="13" column="5" selection-start-line="13" selection-start-column="5" selection-end-line="13" selection-end-column="5" />
|
|
83
|
+
<folding />
|
|
84
|
+
</state>
|
|
85
|
+
</provider>
|
|
86
|
+
</entry>
|
|
87
|
+
</file>
|
|
88
|
+
<file leaf-file-name="engine.rb" pinned="false" current-in-tab="false">
|
|
89
|
+
<entry file="file://$PROJECT_DIR$/lib/simple_form_auto_awesomplete/engine.rb">
|
|
90
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
91
|
+
<state vertical-scroll-proportion="0.0">
|
|
92
|
+
<caret line="2" column="5" selection-start-line="2" selection-start-column="5" selection-end-line="2" selection-end-column="5" />
|
|
93
|
+
<folding />
|
|
94
|
+
</state>
|
|
95
|
+
</provider>
|
|
96
|
+
</entry>
|
|
97
|
+
</file>
|
|
98
|
+
<file leaf-file-name="infectors.rb" pinned="false" current-in-tab="false">
|
|
99
|
+
<entry file="file://$PROJECT_DIR$/lib/simple_form_auto_awesomplete/infectors.rb">
|
|
100
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
101
|
+
<state vertical-scroll-proportion="0.0">
|
|
102
|
+
<caret line="0" column="43" selection-start-line="0" selection-start-column="7" selection-end-line="0" selection-end-column="43" />
|
|
103
|
+
<folding />
|
|
104
|
+
</state>
|
|
105
|
+
</provider>
|
|
106
|
+
</entry>
|
|
107
|
+
</file>
|
|
108
|
+
<file leaf-file-name="simple_form.rb" pinned="false" current-in-tab="false">
|
|
109
|
+
<entry file="file://$PROJECT_DIR$/lib/simple_form_auto_awesomplete/infectors/simple_form.rb">
|
|
110
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
111
|
+
<state vertical-scroll-proportion="0.0">
|
|
112
|
+
<caret line="0" column="6" selection-start-line="0" selection-start-column="6" selection-end-line="0" selection-end-column="6" />
|
|
113
|
+
<folding />
|
|
114
|
+
</state>
|
|
115
|
+
</provider>
|
|
116
|
+
</entry>
|
|
117
|
+
</file>
|
|
118
|
+
</leaf>
|
|
119
|
+
</component>
|
|
120
|
+
<component name="FileTemplateManagerImpl">
|
|
121
|
+
<option name="RECENT_TEMPLATES">
|
|
122
|
+
<list>
|
|
123
|
+
<option value="Ruby Class Template" />
|
|
124
|
+
</list>
|
|
125
|
+
</option>
|
|
126
|
+
</component>
|
|
127
|
+
<component name="Git.Settings">
|
|
128
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
129
|
+
</component>
|
|
130
|
+
<component name="IdeDocumentHistory">
|
|
131
|
+
<option name="CHANGED_PATHS">
|
|
132
|
+
<list>
|
|
133
|
+
<option value="$PROJECT_DIR$/lib/simple_form_auto_awesomplete.rb" />
|
|
134
|
+
<option value="$PROJECT_DIR$/simple_form_auto_awesomplete.gemspec" />
|
|
135
|
+
<option value="$PROJECT_DIR$/lib/simple_form_auto_awesomplete/engine.rb" />
|
|
136
|
+
<option value="$PROJECT_DIR$/lib/simple_form_auto_awesomplete/infectors.rb" />
|
|
137
|
+
<option value="$PROJECT_DIR$/lib/simple_form_auto_awesomplete/infectors/inputs/inputs.rb" />
|
|
138
|
+
<option value="$PROJECT_DIR$/lib/simple_form/inputs/ajax_awesomplete_input.rb" />
|
|
139
|
+
<option value="$PROJECT_DIR$/README.md" />
|
|
140
|
+
<option value="$PROJECT_DIR$/lib/simple_form_auto_awesomplete/version.rb" />
|
|
141
|
+
<option value="$PROJECT_DIR$/lib/simple_form_auto_awesomplete/infectors/simple_form/inputs.rb" />
|
|
142
|
+
<option value="$PROJECT_DIR$/lib/simple_form_auto_awesomplete/infectors/simple_form.rb" />
|
|
143
|
+
</list>
|
|
144
|
+
</option>
|
|
145
|
+
</component>
|
|
146
|
+
<component name="JsBuildToolGruntFileManager" detection-done="true" />
|
|
147
|
+
<component name="JsGulpfileManager">
|
|
148
|
+
<detection-done>true</detection-done>
|
|
149
|
+
</component>
|
|
150
|
+
<component name="NamedScopeManager">
|
|
151
|
+
<order />
|
|
152
|
+
</component>
|
|
153
|
+
<component name="ProjectFrameBounds">
|
|
154
|
+
<option name="x" value="-1" />
|
|
155
|
+
<option name="width" value="1922" />
|
|
156
|
+
<option name="height" value="1059" />
|
|
157
|
+
</component>
|
|
158
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="true">
|
|
159
|
+
<OptionsSetting value="true" id="Add" />
|
|
160
|
+
<OptionsSetting value="true" id="Remove" />
|
|
161
|
+
<OptionsSetting value="true" id="Checkout" />
|
|
162
|
+
<OptionsSetting value="true" id="Update" />
|
|
163
|
+
<OptionsSetting value="true" id="Status" />
|
|
164
|
+
<OptionsSetting value="true" id="Edit" />
|
|
165
|
+
<ConfirmationsSetting value="0" id="Add" />
|
|
166
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
|
167
|
+
</component>
|
|
168
|
+
<component name="ProjectView">
|
|
169
|
+
<navigator currentView="ProjectPane" proportions="" version="1">
|
|
170
|
+
<flattenPackages />
|
|
171
|
+
<showMembers />
|
|
172
|
+
<showModules />
|
|
173
|
+
<showLibraryContents />
|
|
174
|
+
<hideEmptyPackages />
|
|
175
|
+
<abbreviatePackageNames />
|
|
176
|
+
<autoscrollToSource />
|
|
177
|
+
<autoscrollFromSource />
|
|
178
|
+
<sortByType />
|
|
179
|
+
</navigator>
|
|
180
|
+
<panes>
|
|
181
|
+
<pane id="Scratches" />
|
|
182
|
+
<pane id="Scope" />
|
|
183
|
+
<pane id="ProjectPane">
|
|
184
|
+
<subPane>
|
|
185
|
+
<PATH>
|
|
186
|
+
<PATH_ELEMENT>
|
|
187
|
+
<option name="myItemId" value="simple_form_auto_awesomplete" />
|
|
188
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
189
|
+
</PATH_ELEMENT>
|
|
190
|
+
</PATH>
|
|
191
|
+
<PATH>
|
|
192
|
+
<PATH_ELEMENT>
|
|
193
|
+
<option name="myItemId" value="simple_form_auto_awesomplete" />
|
|
194
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
195
|
+
</PATH_ELEMENT>
|
|
196
|
+
<PATH_ELEMENT>
|
|
197
|
+
<option name="myItemId" value="simple_form_auto_awesomplete" />
|
|
198
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
199
|
+
</PATH_ELEMENT>
|
|
200
|
+
</PATH>
|
|
201
|
+
<PATH>
|
|
202
|
+
<PATH_ELEMENT>
|
|
203
|
+
<option name="myItemId" value="simple_form_auto_awesomplete" />
|
|
204
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
205
|
+
</PATH_ELEMENT>
|
|
206
|
+
<PATH_ELEMENT>
|
|
207
|
+
<option name="myItemId" value="simple_form_auto_awesomplete" />
|
|
208
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
209
|
+
</PATH_ELEMENT>
|
|
210
|
+
<PATH_ELEMENT>
|
|
211
|
+
<option name="myItemId" value="lib" />
|
|
212
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
213
|
+
</PATH_ELEMENT>
|
|
214
|
+
</PATH>
|
|
215
|
+
<PATH>
|
|
216
|
+
<PATH_ELEMENT>
|
|
217
|
+
<option name="myItemId" value="simple_form_auto_awesomplete" />
|
|
218
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
219
|
+
</PATH_ELEMENT>
|
|
220
|
+
<PATH_ELEMENT>
|
|
221
|
+
<option name="myItemId" value="simple_form_auto_awesomplete" />
|
|
222
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
223
|
+
</PATH_ELEMENT>
|
|
224
|
+
<PATH_ELEMENT>
|
|
225
|
+
<option name="myItemId" value="lib" />
|
|
226
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
227
|
+
</PATH_ELEMENT>
|
|
228
|
+
<PATH_ELEMENT>
|
|
229
|
+
<option name="myItemId" value="simple_form_auto_awesomplete" />
|
|
230
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
231
|
+
</PATH_ELEMENT>
|
|
232
|
+
</PATH>
|
|
233
|
+
<PATH>
|
|
234
|
+
<PATH_ELEMENT>
|
|
235
|
+
<option name="myItemId" value="simple_form_auto_awesomplete" />
|
|
236
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
237
|
+
</PATH_ELEMENT>
|
|
238
|
+
<PATH_ELEMENT>
|
|
239
|
+
<option name="myItemId" value="simple_form_auto_awesomplete" />
|
|
240
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
241
|
+
</PATH_ELEMENT>
|
|
242
|
+
<PATH_ELEMENT>
|
|
243
|
+
<option name="myItemId" value="lib" />
|
|
244
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
245
|
+
</PATH_ELEMENT>
|
|
246
|
+
<PATH_ELEMENT>
|
|
247
|
+
<option name="myItemId" value="simple_form_auto_awesomplete" />
|
|
248
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
249
|
+
</PATH_ELEMENT>
|
|
250
|
+
<PATH_ELEMENT>
|
|
251
|
+
<option name="myItemId" value="infectors" />
|
|
252
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
253
|
+
</PATH_ELEMENT>
|
|
254
|
+
</PATH>
|
|
255
|
+
<PATH>
|
|
256
|
+
<PATH_ELEMENT>
|
|
257
|
+
<option name="myItemId" value="simple_form_auto_awesomplete" />
|
|
258
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
259
|
+
</PATH_ELEMENT>
|
|
260
|
+
<PATH_ELEMENT>
|
|
261
|
+
<option name="myItemId" value="simple_form_auto_awesomplete" />
|
|
262
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
263
|
+
</PATH_ELEMENT>
|
|
264
|
+
<PATH_ELEMENT>
|
|
265
|
+
<option name="myItemId" value="lib" />
|
|
266
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
267
|
+
</PATH_ELEMENT>
|
|
268
|
+
<PATH_ELEMENT>
|
|
269
|
+
<option name="myItemId" value="simple_form_auto_awesomplete" />
|
|
270
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
271
|
+
</PATH_ELEMENT>
|
|
272
|
+
<PATH_ELEMENT>
|
|
273
|
+
<option name="myItemId" value="infectors" />
|
|
274
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
275
|
+
</PATH_ELEMENT>
|
|
276
|
+
<PATH_ELEMENT>
|
|
277
|
+
<option name="myItemId" value="simple_form" />
|
|
278
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
279
|
+
</PATH_ELEMENT>
|
|
280
|
+
</PATH>
|
|
281
|
+
<PATH>
|
|
282
|
+
<PATH_ELEMENT>
|
|
283
|
+
<option name="myItemId" value="simple_form_auto_awesomplete" />
|
|
284
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
285
|
+
</PATH_ELEMENT>
|
|
286
|
+
<PATH_ELEMENT>
|
|
287
|
+
<option name="myItemId" value="simple_form_auto_awesomplete" />
|
|
288
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
289
|
+
</PATH_ELEMENT>
|
|
290
|
+
<PATH_ELEMENT>
|
|
291
|
+
<option name="myItemId" value="lib" />
|
|
292
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
293
|
+
</PATH_ELEMENT>
|
|
294
|
+
<PATH_ELEMENT>
|
|
295
|
+
<option name="myItemId" value="simple_form" />
|
|
296
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
297
|
+
</PATH_ELEMENT>
|
|
298
|
+
<PATH_ELEMENT>
|
|
299
|
+
<option name="myItemId" value="inputs" />
|
|
300
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
301
|
+
</PATH_ELEMENT>
|
|
302
|
+
</PATH>
|
|
303
|
+
</subPane>
|
|
304
|
+
</pane>
|
|
305
|
+
</panes>
|
|
306
|
+
</component>
|
|
307
|
+
<component name="PropertiesComponent">
|
|
308
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
|
309
|
+
<property name="last_opened_file_path" value="$PROJECT_DIR$/../simple_form_auto_select2" />
|
|
310
|
+
</component>
|
|
311
|
+
<component name="RecentsManager">
|
|
312
|
+
<key name="CopyFile.RECENT_KEYS">
|
|
313
|
+
<recent name="$PROJECT_DIR$/lib" />
|
|
314
|
+
<recent name="$PROJECT_DIR$/lib/simple_form_auto_awesomplete" />
|
|
315
|
+
</key>
|
|
316
|
+
<key name="MoveFile.RECENT_KEYS">
|
|
317
|
+
<recent name="$PROJECT_DIR$/lib/simple_form_auto_awesomplete/infectors/simple_form" />
|
|
318
|
+
<recent name="$PROJECT_DIR$/lib/simple_form_auto_awesomplete/infectors" />
|
|
319
|
+
</key>
|
|
320
|
+
</component>
|
|
321
|
+
<component name="RunManager">
|
|
322
|
+
<configuration default="true" type="CucumberRunConfigurationType" factoryName="Cucumber">
|
|
323
|
+
<predefined_log_file id="RUBY_CUCUMBER" enabled="true" />
|
|
324
|
+
<module name="" />
|
|
325
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
326
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
|
327
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
328
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
329
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
|
330
|
+
<envs />
|
|
331
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
|
332
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
|
333
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
|
334
|
+
<COVERAGE_PATTERN ENABLED="true">
|
|
335
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
|
336
|
+
</COVERAGE_PATTERN>
|
|
337
|
+
</EXTENSION>
|
|
338
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
|
339
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*.feature" />
|
|
340
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
|
341
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
|
342
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
|
343
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TAGS_FILTER" VALUE="" />
|
|
344
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_NAME_FILTER" VALUE="" />
|
|
345
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_ARGS" VALUE="--color -r features" />
|
|
346
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
|
347
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
|
348
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="VERBOSE_OPTION" VALUE="false" />
|
|
349
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
|
350
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
|
351
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
|
352
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_RUNNER_PATH" VALUE="" />
|
|
353
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_RUNNER" VALUE="false" />
|
|
354
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SETTINGS_VERSION" VALUE="2" />
|
|
355
|
+
<method />
|
|
356
|
+
</configuration>
|
|
357
|
+
<configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug">
|
|
358
|
+
<method />
|
|
359
|
+
</configuration>
|
|
360
|
+
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
|
361
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
|
362
|
+
<module name="" />
|
|
363
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
364
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
|
365
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
366
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
367
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
|
368
|
+
<envs />
|
|
369
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
|
370
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
|
371
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
|
372
|
+
<COVERAGE_PATTERN ENABLED="true">
|
|
373
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
|
374
|
+
</COVERAGE_PATTERN>
|
|
375
|
+
</EXTENSION>
|
|
376
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
|
377
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
|
378
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
|
379
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
|
380
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
|
381
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
|
382
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
|
383
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
|
384
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
|
385
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
|
386
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
|
387
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
|
388
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
|
389
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
|
390
|
+
<method />
|
|
391
|
+
</configuration>
|
|
392
|
+
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
|
393
|
+
<module name="" />
|
|
394
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
395
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
|
396
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
397
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
398
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
|
399
|
+
<envs />
|
|
400
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
|
401
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
|
402
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
|
403
|
+
<COVERAGE_PATTERN ENABLED="true">
|
|
404
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
|
405
|
+
</COVERAGE_PATTERN>
|
|
406
|
+
</EXTENSION>
|
|
407
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
|
408
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
|
409
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
|
410
|
+
<method />
|
|
411
|
+
</configuration>
|
|
412
|
+
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
|
413
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
|
414
|
+
<module name="" />
|
|
415
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
416
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
|
417
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
418
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
419
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
|
420
|
+
<envs />
|
|
421
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
|
422
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
|
423
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
|
424
|
+
<COVERAGE_PATTERN ENABLED="true">
|
|
425
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
|
426
|
+
</COVERAGE_PATTERN>
|
|
427
|
+
</EXTENSION>
|
|
428
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
|
429
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
|
430
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
|
431
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
|
432
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
|
433
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
|
434
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
|
435
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
|
436
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
|
437
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
|
438
|
+
<method />
|
|
439
|
+
</configuration>
|
|
440
|
+
<configuration default="true" type="js.build_tools.gulp" factoryName="Gulp.js">
|
|
441
|
+
<node-options />
|
|
442
|
+
<gulpfile />
|
|
443
|
+
<tasks />
|
|
444
|
+
<arguments />
|
|
445
|
+
<pass-parent-envs>true</pass-parent-envs>
|
|
446
|
+
<envs />
|
|
447
|
+
<method />
|
|
448
|
+
</configuration>
|
|
449
|
+
</component>
|
|
450
|
+
<component name="ShelveChangesManager" show_recycled="false" />
|
|
451
|
+
<component name="SvnConfiguration">
|
|
452
|
+
<configuration />
|
|
453
|
+
</component>
|
|
454
|
+
<component name="TaskManager">
|
|
455
|
+
<task active="true" id="Default" summary="Default task">
|
|
456
|
+
<changelist id="4dbab497-46f3-4988-9484-4fbff55f1ffa" name="Default" comment="" />
|
|
457
|
+
<created>1440771420431</created>
|
|
458
|
+
<option name="number" value="Default" />
|
|
459
|
+
<updated>1440771420431</updated>
|
|
460
|
+
</task>
|
|
461
|
+
<task id="LOCAL-00001" summary="first version">
|
|
462
|
+
<created>1441002863481</created>
|
|
463
|
+
<option name="number" value="00001" />
|
|
464
|
+
<option name="project" value="LOCAL" />
|
|
465
|
+
<updated>1441002863481</updated>
|
|
466
|
+
</task>
|
|
467
|
+
<option name="localTasksCounter" value="2" />
|
|
468
|
+
<servers />
|
|
469
|
+
</component>
|
|
470
|
+
<component name="ToolWindowManager">
|
|
471
|
+
<frame x="-1" y="0" width="1922" height="1059" extended-state="6" />
|
|
472
|
+
<editor active="true" />
|
|
473
|
+
<layout>
|
|
474
|
+
<window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
|
475
|
+
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
|
476
|
+
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
|
477
|
+
<window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
|
478
|
+
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
|
479
|
+
<window_info id="Application Servers" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
|
480
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.25239617" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
|
481
|
+
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
|
482
|
+
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3290735" sideWeight="0.4978701" order="2" side_tool="false" content_ui="tabs" />
|
|
483
|
+
<window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="true" content_ui="tabs" />
|
|
484
|
+
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.3290735" sideWeight="0.5021299" order="7" side_tool="true" content_ui="tabs" />
|
|
485
|
+
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
|
486
|
+
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
|
|
487
|
+
<window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
|
488
|
+
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3290735" sideWeight="0.4978701" order="1" side_tool="false" content_ui="tabs" />
|
|
489
|
+
<window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
|
490
|
+
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="SLIDING" type="SLIDING" visible="false" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
|
491
|
+
<window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
|
|
492
|
+
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
|
|
493
|
+
</layout>
|
|
494
|
+
</component>
|
|
495
|
+
<component name="VcsContentAnnotationSettings">
|
|
496
|
+
<option name="myLimit" value="2678400000" />
|
|
497
|
+
</component>
|
|
498
|
+
<component name="VcsManagerConfiguration">
|
|
499
|
+
<MESSAGE value="first version" />
|
|
500
|
+
<option name="LAST_COMMIT_MESSAGE" value="first version" />
|
|
501
|
+
</component>
|
|
502
|
+
<component name="XDebuggerManager">
|
|
503
|
+
<breakpoint-manager />
|
|
504
|
+
<watches-manager />
|
|
505
|
+
</component>
|
|
506
|
+
<component name="editorHistoryManager">
|
|
507
|
+
<entry file="file://$PROJECT_DIR$/simple_form_auto_awesomplete.gemspec">
|
|
508
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
509
|
+
<state vertical-scroll-proportion="0.0">
|
|
510
|
+
<caret line="23" column="28" selection-start-line="23" selection-start-column="0" selection-end-line="23" selection-end-column="0" />
|
|
511
|
+
<folding />
|
|
512
|
+
</state>
|
|
513
|
+
</provider>
|
|
514
|
+
</entry>
|
|
515
|
+
<entry file="file://$PROJECT_DIR$/lib/simple_form_auto_awesomplete/version.rb">
|
|
516
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
517
|
+
<state vertical-scroll-proportion="0.0">
|
|
518
|
+
<caret line="3" column="40" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
|
519
|
+
<folding />
|
|
520
|
+
</state>
|
|
521
|
+
</provider>
|
|
522
|
+
</entry>
|
|
523
|
+
<entry file="file://$PROJECT_DIR$/lib/simple_form_auto_awesomplete.rb">
|
|
524
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
525
|
+
<state vertical-scroll-proportion="0.0">
|
|
526
|
+
<caret line="6" column="20" selection-start-line="6" selection-start-column="20" selection-end-line="6" selection-end-column="20" />
|
|
527
|
+
<folding />
|
|
528
|
+
</state>
|
|
529
|
+
</provider>
|
|
530
|
+
</entry>
|
|
531
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
|
532
|
+
<provider editor-type-id="MarkdownPreviewEditor">
|
|
533
|
+
<state />
|
|
534
|
+
</provider>
|
|
535
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
536
|
+
<state vertical-scroll-proportion="0.0">
|
|
537
|
+
<caret line="0" column="27" selection-start-line="0" selection-start-column="27" selection-end-line="0" selection-end-column="27" />
|
|
538
|
+
<folding />
|
|
539
|
+
</state>
|
|
540
|
+
</provider>
|
|
541
|
+
</entry>
|
|
542
|
+
<entry file="file://$PROJECT_DIR$/lib/simple_form_auto_awesomplete/infectors/simple_form/inputs.rb">
|
|
543
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
544
|
+
<state vertical-scroll-proportion="0.0">
|
|
545
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
546
|
+
<folding />
|
|
547
|
+
</state>
|
|
548
|
+
</provider>
|
|
549
|
+
</entry>
|
|
550
|
+
<entry file="file://$PROJECT_DIR$/lib/simple_form/inputs/ajax_awesomplete_input.rb">
|
|
551
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
552
|
+
<state vertical-scroll-proportion="0.0">
|
|
553
|
+
<caret line="13" column="5" selection-start-line="13" selection-start-column="5" selection-end-line="13" selection-end-column="5" />
|
|
554
|
+
<folding />
|
|
555
|
+
</state>
|
|
556
|
+
</provider>
|
|
557
|
+
</entry>
|
|
558
|
+
<entry file="file://$PROJECT_DIR$/lib/simple_form_auto_awesomplete/engine.rb">
|
|
559
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
560
|
+
<state vertical-scroll-proportion="0.0">
|
|
561
|
+
<caret line="2" column="5" selection-start-line="2" selection-start-column="5" selection-end-line="2" selection-end-column="5" />
|
|
562
|
+
<folding />
|
|
563
|
+
</state>
|
|
564
|
+
</provider>
|
|
565
|
+
</entry>
|
|
566
|
+
<entry file="file://$PROJECT_DIR$/lib/simple_form_auto_awesomplete/infectors.rb">
|
|
567
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
568
|
+
<state vertical-scroll-proportion="0.0">
|
|
569
|
+
<caret line="0" column="49" selection-start-line="0" selection-start-column="7" selection-end-line="0" selection-end-column="43" />
|
|
570
|
+
<folding />
|
|
571
|
+
</state>
|
|
572
|
+
</provider>
|
|
573
|
+
</entry>
|
|
574
|
+
<entry file="file://$PROJECT_DIR$/lib/simple_form_auto_awesomplete/infectors/simple_form.rb">
|
|
575
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
576
|
+
<state vertical-scroll-proportion="0.0">
|
|
577
|
+
<caret line="2" column="18" selection-start-line="2" selection-start-column="18" selection-end-line="2" selection-end-column="18" />
|
|
578
|
+
<folding />
|
|
579
|
+
</state>
|
|
580
|
+
</provider>
|
|
581
|
+
</entry>
|
|
582
|
+
<entry file="file://$PROJECT_DIR$/lib/simple_form/inputs/ajax_awesomplete_input.rb">
|
|
583
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
584
|
+
<state vertical-scroll-proportion="0.0">
|
|
585
|
+
<caret line="13" column="5" selection-start-line="13" selection-start-column="5" selection-end-line="13" selection-end-column="5" />
|
|
586
|
+
<folding />
|
|
587
|
+
</state>
|
|
588
|
+
</provider>
|
|
589
|
+
</entry>
|
|
590
|
+
<entry file="file://$PROJECT_DIR$/lib/simple_form_auto_awesomplete.rb">
|
|
591
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
592
|
+
<state vertical-scroll-proportion="0.0">
|
|
593
|
+
<caret line="6" column="20" selection-start-line="6" selection-start-column="20" selection-end-line="6" selection-end-column="20" />
|
|
594
|
+
<folding />
|
|
595
|
+
</state>
|
|
596
|
+
</provider>
|
|
597
|
+
</entry>
|
|
598
|
+
<entry file="file://$PROJECT_DIR$/simple_form_auto_awesomplete.gemspec">
|
|
599
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
600
|
+
<state vertical-scroll-proportion="0.0">
|
|
601
|
+
<caret line="23" column="0" selection-start-line="23" selection-start-column="0" selection-end-line="23" selection-end-column="0" />
|
|
602
|
+
<folding />
|
|
603
|
+
</state>
|
|
604
|
+
</provider>
|
|
605
|
+
</entry>
|
|
606
|
+
<entry file="file://$PROJECT_DIR$/lib/simple_form_auto_awesomplete/infectors/simple_form/inputs.rb">
|
|
607
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
608
|
+
<state vertical-scroll-proportion="0.0">
|
|
609
|
+
<caret line="0" column="6" selection-start-line="0" selection-start-column="6" selection-end-line="0" selection-end-column="6" />
|
|
610
|
+
<folding />
|
|
611
|
+
</state>
|
|
612
|
+
</provider>
|
|
613
|
+
</entry>
|
|
614
|
+
<entry file="file://$PROJECT_DIR$/lib/simple_form_auto_awesomplete/infectors/simple_form.rb">
|
|
615
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
616
|
+
<state vertical-scroll-proportion="0.0">
|
|
617
|
+
<caret line="0" column="6" selection-start-line="0" selection-start-column="6" selection-end-line="0" selection-end-column="6" />
|
|
618
|
+
<folding />
|
|
619
|
+
</state>
|
|
620
|
+
</provider>
|
|
621
|
+
</entry>
|
|
622
|
+
<entry file="file://$PROJECT_DIR$/lib/simple_form_auto_awesomplete/engine.rb">
|
|
623
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
624
|
+
<state vertical-scroll-proportion="0.0">
|
|
625
|
+
<caret line="2" column="5" selection-start-line="2" selection-start-column="5" selection-end-line="2" selection-end-column="5" />
|
|
626
|
+
<folding />
|
|
627
|
+
</state>
|
|
628
|
+
</provider>
|
|
629
|
+
</entry>
|
|
630
|
+
<entry file="file://$PROJECT_DIR$/lib/simple_form_auto_awesomplete/infectors.rb">
|
|
631
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
632
|
+
<state vertical-scroll-proportion="0.0">
|
|
633
|
+
<caret line="0" column="43" selection-start-line="0" selection-start-column="7" selection-end-line="0" selection-end-column="43" />
|
|
634
|
+
<folding />
|
|
635
|
+
</state>
|
|
636
|
+
</provider>
|
|
637
|
+
</entry>
|
|
638
|
+
<entry file="file://$PROJECT_DIR$/lib/simple_form_auto_awesomplete/version.rb">
|
|
639
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
640
|
+
<state vertical-scroll-proportion="0.0">
|
|
641
|
+
<caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
|
642
|
+
<folding />
|
|
643
|
+
</state>
|
|
644
|
+
</provider>
|
|
645
|
+
</entry>
|
|
646
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
|
647
|
+
<provider editor-type-id="MarkdownPreviewEditor">
|
|
648
|
+
<state />
|
|
649
|
+
</provider>
|
|
650
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
651
|
+
<state vertical-scroll-proportion="0.0">
|
|
652
|
+
<caret line="0" column="27" selection-start-line="0" selection-start-column="27" selection-end-line="0" selection-end-column="27" />
|
|
653
|
+
<folding />
|
|
654
|
+
</state>
|
|
655
|
+
</provider>
|
|
656
|
+
</entry>
|
|
657
|
+
</component>
|
|
658
|
+
</project>
|
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# SimpleFormAutoAwesomplete
|
data/Rakefile
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require "bundler/gem_tasks"
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
class SimpleForm::Inputs::AjaxAwesompleteInput < SimpleForm::Inputs::StringInput
|
|
2
|
+
def input_html_options
|
|
3
|
+
url_params = {}
|
|
4
|
+
url_params[:class_name] = options[:search_class] if options[:search_class].present?
|
|
5
|
+
url_params[:search_method] = options[:search_method] if options[:search_method].present?
|
|
6
|
+
url_params[:default_class_name] = options[:default_class_name] if options[:default_class_name].present?
|
|
7
|
+
url_params[:default_text_column] = options[:default_text_column] if options[:default_text_column].present?
|
|
8
|
+
href = template.auto_awesompletes_path(url_params)
|
|
9
|
+
input_options = super
|
|
10
|
+
input_options[:data] = input_options[:data].to_h.merge({ awesomplete_href: href })
|
|
11
|
+
css_classes = [input_options[:class], 'auto-ajax-awesomplete']
|
|
12
|
+
input_options[:class] = css_classes.compact.join(' ')
|
|
13
|
+
input_options
|
|
14
|
+
end
|
|
15
|
+
end
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
require 'simple_form_auto_awesomplete/version'
|
|
2
|
+
require 'simple_form_auto_awesomplete/engine'
|
|
3
|
+
require 'simple_form_auto_awesomplete/infectors'
|
|
4
|
+
SimpleForm::Inputs.send(:include, SimpleFormAutoAwesomplete::Infectors::SimpleForm::Inputs)
|
|
5
|
+
|
|
6
|
+
module SimpleFormAutoAwesomplete
|
|
7
|
+
extend ActiveSupport::Autoload
|
|
8
|
+
end
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require 'simple_form_auto_awesomplete/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = 'simple_form_auto_awesomplete'
|
|
8
|
+
spec.version = SimpleFormAutoAwesomplete::VERSION
|
|
9
|
+
spec.authors = ['Dmitry Lisichkin']
|
|
10
|
+
spec.email = ['dima@sb42.ru']
|
|
11
|
+
spec.summary = %q{Provide awesomplete input class for simple_form}
|
|
12
|
+
spec.description = spec.summary
|
|
13
|
+
spec.homepage = 'https://github.com/Tab10id/simple_form_auto_awesomplete'
|
|
14
|
+
spec.license = 'MIT'
|
|
15
|
+
|
|
16
|
+
spec.files = `git ls-files`.split($/)
|
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
|
+
spec.require_paths = ['lib']
|
|
20
|
+
|
|
21
|
+
spec.add_dependency 'railties', '>= 3.1'
|
|
22
|
+
spec.add_dependency 'auto_awesomplete', '~> 0.0.1'
|
|
23
|
+
spec.add_dependency 'simple_form'
|
|
24
|
+
|
|
25
|
+
spec.add_development_dependency 'bundler', '~> 1.5'
|
|
26
|
+
spec.add_development_dependency 'rails', '~> 3.2.12'
|
|
27
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: simple_form_auto_awesomplete
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Dmitry Lisichkin
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2015-08-31 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: railties
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - '>='
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '3.1'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - '>='
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '3.1'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: auto_awesomplete
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ~>
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: 0.0.1
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ~>
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: 0.0.1
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: simple_form
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - '>='
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '0'
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - '>='
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: bundler
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - ~>
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '1.5'
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - ~>
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '1.5'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: rails
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - ~>
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: 3.2.12
|
|
76
|
+
type: :development
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - ~>
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: 3.2.12
|
|
83
|
+
description: Provide awesomplete input class for simple_form
|
|
84
|
+
email:
|
|
85
|
+
- dima@sb42.ru
|
|
86
|
+
executables: []
|
|
87
|
+
extensions: []
|
|
88
|
+
extra_rdoc_files: []
|
|
89
|
+
files:
|
|
90
|
+
- .gitignore
|
|
91
|
+
- .idea/.name
|
|
92
|
+
- .idea/misc.xml
|
|
93
|
+
- .idea/modules.xml
|
|
94
|
+
- .idea/simple_form_auto_awesomplete.iml
|
|
95
|
+
- .idea/vcs.xml
|
|
96
|
+
- .idea/workspace.xml
|
|
97
|
+
- .travis.yml
|
|
98
|
+
- Gemfile
|
|
99
|
+
- README.md
|
|
100
|
+
- Rakefile
|
|
101
|
+
- lib/simple_form/inputs/ajax_awesomplete_input.rb
|
|
102
|
+
- lib/simple_form_auto_awesomplete.rb
|
|
103
|
+
- lib/simple_form_auto_awesomplete/engine.rb
|
|
104
|
+
- lib/simple_form_auto_awesomplete/infectors.rb
|
|
105
|
+
- lib/simple_form_auto_awesomplete/infectors/simple_form.rb
|
|
106
|
+
- lib/simple_form_auto_awesomplete/infectors/simple_form/inputs.rb
|
|
107
|
+
- lib/simple_form_auto_awesomplete/version.rb
|
|
108
|
+
- simple_form_auto_awesomplete.gemspec
|
|
109
|
+
homepage: https://github.com/Tab10id/simple_form_auto_awesomplete
|
|
110
|
+
licenses:
|
|
111
|
+
- MIT
|
|
112
|
+
metadata: {}
|
|
113
|
+
post_install_message:
|
|
114
|
+
rdoc_options: []
|
|
115
|
+
require_paths:
|
|
116
|
+
- lib
|
|
117
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
118
|
+
requirements:
|
|
119
|
+
- - '>='
|
|
120
|
+
- !ruby/object:Gem::Version
|
|
121
|
+
version: '0'
|
|
122
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
123
|
+
requirements:
|
|
124
|
+
- - '>='
|
|
125
|
+
- !ruby/object:Gem::Version
|
|
126
|
+
version: '0'
|
|
127
|
+
requirements: []
|
|
128
|
+
rubyforge_project:
|
|
129
|
+
rubygems_version: 2.0.2
|
|
130
|
+
signing_key:
|
|
131
|
+
specification_version: 4
|
|
132
|
+
summary: Provide awesomplete input class for simple_form
|
|
133
|
+
test_files: []
|
|
134
|
+
has_rdoc:
|