jquery_uniform-rails 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 +17 -0
- data/.idea/.name +1 -0
- data/.idea/encodings.xml +6 -0
- data/.idea/jquery_uniform-rails.iml +21 -0
- data/.idea/misc.xml +56 -0
- data/.idea/modules.xml +8 -0
- data/.idea/workspace.xml +430 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +1 -0
- data/jquery_uniform-rails.gemspec +23 -0
- data/lib/jquery_uniform/rails/version.rb +5 -0
- data/lib/jquery_uniform/rails.rb +11 -0
- metadata +86 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: bb0f3526ad92d6283f448d4ddc6e2d4497393563
|
4
|
+
data.tar.gz: 2540645700ff927e3b2beaa017c8923d2f63deb3
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 0493e9ab7b490b337b4b6a795a8a072ab1accdcd3ac82ea4f51ea4470554885243f0b3078b7f097802dda279ff2c5c45bc4fa9181647ee69d3b13775e725cce3
|
7
|
+
data.tar.gz: 586e826b2f4f79db8ff6890e7d3f88d0775347683bfbf7a10610fa99c9818f65aa09d7016c5b7c2eebae2e93ab5a174749377bada808998e64b3058e4caeda77
|
data/.gitignore
ADDED
data/.idea/.name
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
jquery_uniform-rails
|
data/.idea/encodings.xml
ADDED
@@ -0,0 +1,21 @@
|
|
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="" />
|
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
|
+
<excludeFolder url="file://$MODULE_DIR$/.bundle" />
|
15
|
+
<excludeFolder url="file://$MODULE_DIR$/vendor/bundle" />
|
16
|
+
</content>
|
17
|
+
<orderEntry type="jdk" jdkName="RVM: ruby-2.1.1" jdkType="RUBY_SDK" />
|
18
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
19
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.5.3, RVM: ruby-2.1.1) [gem]" level="application" />
|
20
|
+
</component>
|
21
|
+
</module>
|
data/.idea/misc.xml
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="EclipseCodeFormatter">
|
4
|
+
<option name="defaultSettings" value="true" />
|
5
|
+
<option name="id" value="1422406858856" />
|
6
|
+
<option name="name" value="default" />
|
7
|
+
</component>
|
8
|
+
<component name="ProjectInspectionProfilesVisibleTreeState">
|
9
|
+
<entry key="Project Default">
|
10
|
+
<profile-state>
|
11
|
+
<expanded-state>
|
12
|
+
<State>
|
13
|
+
<id />
|
14
|
+
</State>
|
15
|
+
<State>
|
16
|
+
<id>CSS</id>
|
17
|
+
</State>
|
18
|
+
<State>
|
19
|
+
<id>Data flow issuesJavaScript</id>
|
20
|
+
</State>
|
21
|
+
<State>
|
22
|
+
<id>JavaScript</id>
|
23
|
+
</State>
|
24
|
+
<State>
|
25
|
+
<id>Naming ConventionsRuby</id>
|
26
|
+
</State>
|
27
|
+
<State>
|
28
|
+
<id>Naming conventionsJavaScript</id>
|
29
|
+
</State>
|
30
|
+
<State>
|
31
|
+
<id>Probable bugsJavaScript</id>
|
32
|
+
</State>
|
33
|
+
<State>
|
34
|
+
<id>Ruby</id>
|
35
|
+
</State>
|
36
|
+
</expanded-state>
|
37
|
+
<selected-state>
|
38
|
+
<State>
|
39
|
+
<id>BashSupport</id>
|
40
|
+
</State>
|
41
|
+
</selected-state>
|
42
|
+
</profile-state>
|
43
|
+
</entry>
|
44
|
+
</component>
|
45
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
46
|
+
<OptionsSetting value="true" id="Add" />
|
47
|
+
<OptionsSetting value="true" id="Remove" />
|
48
|
+
<OptionsSetting value="true" id="Checkout" />
|
49
|
+
<OptionsSetting value="true" id="Update" />
|
50
|
+
<OptionsSetting value="true" id="Status" />
|
51
|
+
<OptionsSetting value="true" id="Edit" />
|
52
|
+
<ConfirmationsSetting value="0" id="Add" />
|
53
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
54
|
+
</component>
|
55
|
+
<component name="ProjectRootManager" version="2" project-jdk-name="RVM: ruby-1.9.3-p547" project-jdk-type="RUBY_SDK" />
|
56
|
+
</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/jquery_uniform-rails.iml" filepath="$PROJECT_DIR$/.idea/jquery_uniform-rails.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|
data/.idea/workspace.xml
ADDED
@@ -0,0 +1,430 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ChangeListManager">
|
4
|
+
<list default="true" id="a989327f-892b-496f-8112-a289ceb71798" name="Default" comment="" />
|
5
|
+
<ignored path="jquery_uniform-rails.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="FavoritesManager">
|
20
|
+
<favorites_list name="jquery_uniform-rails" />
|
21
|
+
</component>
|
22
|
+
<component name="FileEditorManager">
|
23
|
+
<leaf>
|
24
|
+
<file leaf-file-name="uniform.agent.scss" pinned="false" current-in-tab="false">
|
25
|
+
<entry file="file://$PROJECT_DIR$/vendor/assets/stylesheets/jquery.uniform/uniform.agent.scss">
|
26
|
+
<provider selected="true" editor-type-id="text-editor">
|
27
|
+
<state vertical-scroll-proportion="-4.2363634">
|
28
|
+
<caret line="39" column="0" selection-start-line="39" selection-start-column="0" selection-end-line="39" selection-end-column="0" />
|
29
|
+
<folding />
|
30
|
+
</state>
|
31
|
+
</provider>
|
32
|
+
</entry>
|
33
|
+
</file>
|
34
|
+
<file leaf-file-name="uniform.aristo.scss" pinned="false" current-in-tab="false">
|
35
|
+
<entry file="file://$PROJECT_DIR$/vendor/assets/stylesheets/jquery.uniform/uniform.aristo.scss">
|
36
|
+
<provider selected="true" editor-type-id="text-editor">
|
37
|
+
<state vertical-scroll-proportion="-12.0">
|
38
|
+
<caret line="18" column="79" selection-start-line="18" selection-start-column="79" selection-end-line="18" selection-end-column="79" />
|
39
|
+
<folding />
|
40
|
+
</state>
|
41
|
+
</provider>
|
42
|
+
</entry>
|
43
|
+
</file>
|
44
|
+
<file leaf-file-name="uniform.jeans.scss" pinned="false" current-in-tab="false">
|
45
|
+
<entry file="file://$PROJECT_DIR$/vendor/assets/stylesheets/jquery.uniform/uniform.jeans.scss">
|
46
|
+
<provider selected="true" editor-type-id="text-editor">
|
47
|
+
<state vertical-scroll-proportion="-12.0">
|
48
|
+
<caret line="18" column="78" selection-start-line="18" selection-start-column="78" selection-end-line="18" selection-end-column="78" />
|
49
|
+
<folding />
|
50
|
+
</state>
|
51
|
+
</provider>
|
52
|
+
</entry>
|
53
|
+
</file>
|
54
|
+
<file leaf-file-name="uniform._base.scss" pinned="false" current-in-tab="false">
|
55
|
+
<entry file="file://$PROJECT_DIR$/vendor/assets/stylesheets/jquery.uniform/uniform._base.scss">
|
56
|
+
<provider selected="true" editor-type-id="text-editor">
|
57
|
+
<state vertical-scroll-proportion="-9.333333">
|
58
|
+
<caret line="104" column="9" selection-start-line="104" selection-start-column="9" selection-end-line="104" selection-end-column="9" />
|
59
|
+
<folding />
|
60
|
+
</state>
|
61
|
+
</provider>
|
62
|
+
</entry>
|
63
|
+
</file>
|
64
|
+
<file leaf-file-name="uniform._base.scss" pinned="false" current-in-tab="false">
|
65
|
+
<entry file="file://$PROJECT_DIR$/vendor/bower_components/jquery.uniform/themes/_base/css/uniform._base.scss">
|
66
|
+
<provider selected="true" editor-type-id="text-editor">
|
67
|
+
<state vertical-scroll-proportion="-5.814815">
|
68
|
+
<caret line="74" column="47" selection-start-line="74" selection-start-column="47" selection-end-line="74" selection-end-column="47" />
|
69
|
+
<folding />
|
70
|
+
</state>
|
71
|
+
</provider>
|
72
|
+
</entry>
|
73
|
+
</file>
|
74
|
+
<file leaf-file-name="rails.rb" pinned="false" current-in-tab="true">
|
75
|
+
<entry file="file://$PROJECT_DIR$/lib/jquery_uniform/rails.rb">
|
76
|
+
<provider selected="true" editor-type-id="text-editor">
|
77
|
+
<state vertical-scroll-proportion="0.39759037">
|
78
|
+
<caret line="11" column="0" selection-start-line="11" selection-start-column="0" selection-end-line="11" selection-end-column="0" />
|
79
|
+
<folding />
|
80
|
+
</state>
|
81
|
+
</provider>
|
82
|
+
</entry>
|
83
|
+
</file>
|
84
|
+
</leaf>
|
85
|
+
</component>
|
86
|
+
<component name="IdeDocumentHistory">
|
87
|
+
<option name="CHANGED_PATHS">
|
88
|
+
<list>
|
89
|
+
<option value="$PROJECT_DIR$/jquery_uniform-rails.gemspec" />
|
90
|
+
<option value="$PROJECT_DIR$/lib/jquery_uniform/rails/version.rb" />
|
91
|
+
<option value="$PROJECT_DIR$/Rakefile" />
|
92
|
+
<option value="$PROJECT_DIR$/vendor/assets/stylesheets/jquery.uniform/uniform.agent.css" />
|
93
|
+
<option value="$PROJECT_DIR$/vendor/assets/stylesheets/jquery.uniform/uniform.jeans.scss" />
|
94
|
+
<option value="$PROJECT_DIR$/vendor/assets/stylesheets/jquery.uniform/uniform.aristo.scss" />
|
95
|
+
<option value="$PROJECT_DIR$/vendor/assets/stylesheets/jquery.uniform/uniform.agent.scss" />
|
96
|
+
<option value="$PROJECT_DIR$/vendor/assets/stylesheets/jquery.uniform/uniform._base.scss" />
|
97
|
+
<option value="$PROJECT_DIR$/vendor/bower_components/jquery.uniform/themes/_base/css/uniform._base.scss" />
|
98
|
+
<option value="$PROJECT_DIR$/lib/jquery_uniform/rails.rb" />
|
99
|
+
</list>
|
100
|
+
</option>
|
101
|
+
</component>
|
102
|
+
<component name="JsBuildToolGruntFileManager" detection-done="true" />
|
103
|
+
<component name="JsBuildToolPackageJson" detection-done="true" />
|
104
|
+
<component name="JsGulpfileManager">
|
105
|
+
<detection-done>true</detection-done>
|
106
|
+
</component>
|
107
|
+
<component name="ProjectFrameBounds">
|
108
|
+
<option name="x" value="-1" />
|
109
|
+
<option name="y" value="29" />
|
110
|
+
<option name="width" value="1602" />
|
111
|
+
<option name="height" value="875" />
|
112
|
+
</component>
|
113
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
114
|
+
<OptionsSetting value="true" id="Add" />
|
115
|
+
<OptionsSetting value="true" id="Remove" />
|
116
|
+
<OptionsSetting value="true" id="Checkout" />
|
117
|
+
<OptionsSetting value="true" id="Update" />
|
118
|
+
<OptionsSetting value="true" id="Status" />
|
119
|
+
<OptionsSetting value="true" id="Edit" />
|
120
|
+
<ConfirmationsSetting value="0" id="Add" />
|
121
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
122
|
+
</component>
|
123
|
+
<component name="ProjectView">
|
124
|
+
<navigator currentView="ProjectPane" proportions="" version="1">
|
125
|
+
<flattenPackages />
|
126
|
+
<showMembers />
|
127
|
+
<showModules />
|
128
|
+
<showLibraryContents />
|
129
|
+
<hideEmptyPackages />
|
130
|
+
<abbreviatePackageNames />
|
131
|
+
<autoscrollToSource />
|
132
|
+
<autoscrollFromSource />
|
133
|
+
<sortByType />
|
134
|
+
<manualOrder />
|
135
|
+
<foldersAlwaysOnTop value="true" />
|
136
|
+
</navigator>
|
137
|
+
<panes>
|
138
|
+
<pane id="ProjectPane">
|
139
|
+
<subPane>
|
140
|
+
<PATH>
|
141
|
+
<PATH_ELEMENT>
|
142
|
+
<option name="myItemId" value="jquery_uniform-rails" />
|
143
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
144
|
+
</PATH_ELEMENT>
|
145
|
+
<PATH_ELEMENT>
|
146
|
+
<option name="myItemId" value="External Libraries" />
|
147
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ExternalLibrariesNode" />
|
148
|
+
</PATH_ELEMENT>
|
149
|
+
</PATH>
|
150
|
+
<PATH>
|
151
|
+
<PATH_ELEMENT>
|
152
|
+
<option name="myItemId" value="jquery_uniform-rails" />
|
153
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
154
|
+
</PATH_ELEMENT>
|
155
|
+
</PATH>
|
156
|
+
</subPane>
|
157
|
+
</pane>
|
158
|
+
<pane id="Scratches" />
|
159
|
+
<pane id="Scope" />
|
160
|
+
</panes>
|
161
|
+
</component>
|
162
|
+
<component name="PropertiesComponent">
|
163
|
+
<property name="settings.editor.selected.configurable" value="configurable.group.appearance" />
|
164
|
+
<property name="js.eslint.nodeInterpreter" value="/usr/bin/node" />
|
165
|
+
<property name="js.eslint.eslintPackage" value="" />
|
166
|
+
<property name="settings.editor.splitter.proportion" value="0.2" />
|
167
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
168
|
+
<property name="js-jscs-nodeInterpreter" value="/usr/bin/node" />
|
169
|
+
</component>
|
170
|
+
<component name="RecentsManager">
|
171
|
+
<key name="MoveFile.RECENT_KEYS">
|
172
|
+
<recent name="$PROJECT_DIR$/vendor/assets/images/jquery.uniform" />
|
173
|
+
<recent name="$PROJECT_DIR$/vendor/assets/stylesheets/jquery.uniform" />
|
174
|
+
<recent name="$PROJECT_DIR$/vendor/assets/stylesheets/jquery.uniform/agent" />
|
175
|
+
<recent name="$PROJECT_DIR$/vendor/assets/stylesheets/jquery.uniform/_base" />
|
176
|
+
<recent name="$PROJECT_DIR$/vendor/assets/images/jquery.uniform/jeans" />
|
177
|
+
</key>
|
178
|
+
</component>
|
179
|
+
<component name="RunManager">
|
180
|
+
<configuration default="true" type="BashConfigurationType" factoryName="Bash">
|
181
|
+
<option name="INTERPRETER_OPTIONS" value="" />
|
182
|
+
<option name="INTERPRETER_PATH" value="/bin/bash" />
|
183
|
+
<option name="WORKING_DIRECTORY" value="" />
|
184
|
+
<option name="PARENT_ENVS" value="true" />
|
185
|
+
<option name="SCRIPT_NAME" value="" />
|
186
|
+
<option name="PARAMETERS" value="" />
|
187
|
+
<module name="" />
|
188
|
+
<envs />
|
189
|
+
<method />
|
190
|
+
</configuration>
|
191
|
+
<configuration default="true" type="CucumberRunConfigurationType" factoryName="Cucumber">
|
192
|
+
<predefined_log_file id="RUBY_CUCUMBER" enabled="true" />
|
193
|
+
<module name="" />
|
194
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
195
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
196
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
197
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
198
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
199
|
+
<envs />
|
200
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
201
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
202
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
203
|
+
<COVERAGE_PATTERN ENABLED="true">
|
204
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
205
|
+
</COVERAGE_PATTERN>
|
206
|
+
</EXTENSION>
|
207
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*.feature" />
|
208
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
209
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
210
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
211
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TAGS_FILTER" VALUE="" />
|
212
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_NAME_FILTER" VALUE="" />
|
213
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_ARGS" VALUE="--color -r features" />
|
214
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
215
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
216
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="VERBOSE_OPTION" VALUE="false" />
|
217
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
218
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
219
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
220
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_RUNNER_PATH" VALUE="" />
|
221
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_RUNNER" VALUE="false" />
|
222
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SETTINGS_VERSION" VALUE="2" />
|
223
|
+
<method />
|
224
|
+
</configuration>
|
225
|
+
<configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug">
|
226
|
+
<method />
|
227
|
+
</configuration>
|
228
|
+
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
229
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
230
|
+
<module name="" />
|
231
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
232
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
233
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
234
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
235
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
236
|
+
<envs />
|
237
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
238
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
239
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
240
|
+
<COVERAGE_PATTERN ENABLED="true">
|
241
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
242
|
+
</COVERAGE_PATTERN>
|
243
|
+
</EXTENSION>
|
244
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
245
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
246
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
247
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
248
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
249
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
250
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
251
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
252
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
253
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
254
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
255
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
256
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
257
|
+
<method />
|
258
|
+
</configuration>
|
259
|
+
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
260
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
261
|
+
<module name="" />
|
262
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
263
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
264
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
265
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
266
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
267
|
+
<envs />
|
268
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
269
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
270
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
271
|
+
<COVERAGE_PATTERN ENABLED="true">
|
272
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
273
|
+
</COVERAGE_PATTERN>
|
274
|
+
</EXTENSION>
|
275
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
276
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
277
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
278
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
279
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
280
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
281
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
282
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
283
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
284
|
+
<method />
|
285
|
+
</configuration>
|
286
|
+
<configuration default="true" type="js.build_tools.gulp" factoryName="Gulp.js">
|
287
|
+
<method />
|
288
|
+
</configuration>
|
289
|
+
<configuration default="true" type="js.build_tools.npm" factoryName="npm">
|
290
|
+
<command value="run-script" />
|
291
|
+
<scripts />
|
292
|
+
<envs />
|
293
|
+
<method />
|
294
|
+
</configuration>
|
295
|
+
</component>
|
296
|
+
<component name="ShelveChangesManager" show_recycled="false" />
|
297
|
+
<component name="SvnConfiguration">
|
298
|
+
<configuration>$USER_HOME$/.subversion</configuration>
|
299
|
+
</component>
|
300
|
+
<component name="TaskManager">
|
301
|
+
<task active="true" id="Default" summary="Default task">
|
302
|
+
<changelist id="a989327f-892b-496f-8112-a289ceb71798" name="Default" comment="" />
|
303
|
+
<created>1452775081505</created>
|
304
|
+
<option name="number" value="Default" />
|
305
|
+
<updated>1452775081505</updated>
|
306
|
+
</task>
|
307
|
+
<servers />
|
308
|
+
</component>
|
309
|
+
<component name="ToolWindowManager">
|
310
|
+
<frame x="-1" y="29" width="1602" height="875" extended-state="6" />
|
311
|
+
<editor active="false" />
|
312
|
+
<layout>
|
313
|
+
<window_info id="GitLabIntegration" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
314
|
+
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.32950193" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
315
|
+
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
316
|
+
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.32950193" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
317
|
+
<window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
318
|
+
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
319
|
+
<window_info id="Project" active="true" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.25288832" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
320
|
+
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
321
|
+
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.3299363" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
322
|
+
<window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="true" content_ui="tabs" />
|
323
|
+
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="true" content_ui="tabs" />
|
324
|
+
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
325
|
+
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
|
326
|
+
<window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
327
|
+
<window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
328
|
+
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="SLIDING" type="SLIDING" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
329
|
+
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
|
330
|
+
<window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
|
331
|
+
</layout>
|
332
|
+
</component>
|
333
|
+
<component name="VcsContentAnnotationSettings">
|
334
|
+
<option name="myLimit" value="2678400000" />
|
335
|
+
</component>
|
336
|
+
<component name="XDebuggerManager">
|
337
|
+
<breakpoint-manager />
|
338
|
+
<watches-manager />
|
339
|
+
</component>
|
340
|
+
<component name="editorHistoryManager">
|
341
|
+
<entry file="file://$PROJECT_DIR$/lib/jquery_uniform/rails/version.rb">
|
342
|
+
<provider selected="true" editor-type-id="text-editor">
|
343
|
+
<state vertical-scroll-proportion="0.0">
|
344
|
+
<caret line="2" column="16" selection-start-line="2" selection-start-column="16" selection-end-line="2" selection-end-column="16" />
|
345
|
+
<folding />
|
346
|
+
</state>
|
347
|
+
</provider>
|
348
|
+
</entry>
|
349
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
350
|
+
<provider selected="true" editor-type-id="text-editor">
|
351
|
+
<state vertical-scroll-proportion="0.0">
|
352
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
353
|
+
<folding />
|
354
|
+
</state>
|
355
|
+
</provider>
|
356
|
+
</entry>
|
357
|
+
<entry file="file://$PROJECT_DIR$/jquery_uniform-rails.gemspec">
|
358
|
+
<provider selected="true" editor-type-id="text-editor">
|
359
|
+
<state vertical-scroll-proportion="0.0">
|
360
|
+
<caret line="20" column="46" selection-start-line="20" selection-start-column="46" selection-end-line="20" selection-end-column="46" />
|
361
|
+
<folding />
|
362
|
+
</state>
|
363
|
+
</provider>
|
364
|
+
</entry>
|
365
|
+
<entry file="file://$PROJECT_DIR$/LICENSE.txt">
|
366
|
+
<provider selected="true" editor-type-id="text-editor">
|
367
|
+
<state vertical-scroll-proportion="0.0">
|
368
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
369
|
+
<folding />
|
370
|
+
</state>
|
371
|
+
</provider>
|
372
|
+
</entry>
|
373
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
374
|
+
<provider selected="true" editor-type-id="text-editor">
|
375
|
+
<state vertical-scroll-proportion="0.0">
|
376
|
+
<caret line="0" column="10" selection-start-line="0" selection-start-column="10" selection-end-line="0" selection-end-column="10" />
|
377
|
+
<folding />
|
378
|
+
</state>
|
379
|
+
</provider>
|
380
|
+
</entry>
|
381
|
+
<entry file="file://$PROJECT_DIR$/vendor/assets/stylesheets/jquery.uniform/uniform.jeans.scss">
|
382
|
+
<provider selected="true" editor-type-id="text-editor">
|
383
|
+
<state vertical-scroll-proportion="-12.0">
|
384
|
+
<caret line="18" column="78" selection-start-line="18" selection-start-column="78" selection-end-line="18" selection-end-column="78" />
|
385
|
+
<folding />
|
386
|
+
</state>
|
387
|
+
</provider>
|
388
|
+
</entry>
|
389
|
+
<entry file="file://$PROJECT_DIR$/vendor/assets/stylesheets/jquery.uniform/uniform.aristo.scss">
|
390
|
+
<provider selected="true" editor-type-id="text-editor">
|
391
|
+
<state vertical-scroll-proportion="-12.0">
|
392
|
+
<caret line="18" column="79" selection-start-line="18" selection-start-column="79" selection-end-line="18" selection-end-column="79" />
|
393
|
+
<folding />
|
394
|
+
</state>
|
395
|
+
</provider>
|
396
|
+
</entry>
|
397
|
+
<entry file="file://$PROJECT_DIR$/vendor/assets/stylesheets/jquery.uniform/uniform.agent.scss">
|
398
|
+
<provider selected="true" editor-type-id="text-editor">
|
399
|
+
<state vertical-scroll-proportion="-4.2363634">
|
400
|
+
<caret line="39" column="0" selection-start-line="39" selection-start-column="0" selection-end-line="39" selection-end-column="0" />
|
401
|
+
<folding />
|
402
|
+
</state>
|
403
|
+
</provider>
|
404
|
+
</entry>
|
405
|
+
<entry file="file://$PROJECT_DIR$/vendor/assets/stylesheets/jquery.uniform/uniform._base.scss">
|
406
|
+
<provider selected="true" editor-type-id="text-editor">
|
407
|
+
<state vertical-scroll-proportion="-9.333333">
|
408
|
+
<caret line="104" column="9" selection-start-line="104" selection-start-column="9" selection-end-line="104" selection-end-column="9" />
|
409
|
+
<folding />
|
410
|
+
</state>
|
411
|
+
</provider>
|
412
|
+
</entry>
|
413
|
+
<entry file="file://$PROJECT_DIR$/vendor/bower_components/jquery.uniform/themes/_base/css/uniform._base.scss">
|
414
|
+
<provider selected="true" editor-type-id="text-editor">
|
415
|
+
<state vertical-scroll-proportion="-5.814815">
|
416
|
+
<caret line="74" column="47" selection-start-line="74" selection-start-column="47" selection-end-line="74" selection-end-column="47" />
|
417
|
+
<folding />
|
418
|
+
</state>
|
419
|
+
</provider>
|
420
|
+
</entry>
|
421
|
+
<entry file="file://$PROJECT_DIR$/lib/jquery_uniform/rails.rb">
|
422
|
+
<provider selected="true" editor-type-id="text-editor">
|
423
|
+
<state vertical-scroll-proportion="0.39759037">
|
424
|
+
<caret line="11" column="0" selection-start-line="11" selection-start-column="0" selection-end-line="11" selection-end-column="0" />
|
425
|
+
<folding />
|
426
|
+
</state>
|
427
|
+
</provider>
|
428
|
+
</entry>
|
429
|
+
</component>
|
430
|
+
</project>
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2016 Mariusz Henn
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# JqueryUniform::Rails
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'jquery_uniform-rails'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install jquery_uniform-rails
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it ( http://github.com/<my-github-username>/jquery_uniform-rails/fork )
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require 'bundler/gem_tasks'
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'jquery_uniform/rails/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'jquery_uniform-rails'
|
8
|
+
spec.version = JqueryUniform::Rails::VERSION
|
9
|
+
spec.authors = ['Mariusz Henn']
|
10
|
+
spec.email = ['mariusz.henn@gmail.com']
|
11
|
+
spec.summary = 'uniformjs for rails'
|
12
|
+
spec.description = 'uniformjs for rails assets pipeline'
|
13
|
+
spec.homepage = ''
|
14
|
+
spec.license = 'MIT'
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
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_development_dependency 'bundler', '~> 1.5'
|
22
|
+
spec.add_development_dependency 'rake'
|
23
|
+
end
|
metadata
ADDED
@@ -0,0 +1,86 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jquery_uniform-rails
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Mariusz Henn
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-01-14 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.5'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.5'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: uniformjs for rails assets pipeline
|
42
|
+
email:
|
43
|
+
- mariusz.henn@gmail.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- ".gitignore"
|
49
|
+
- ".idea/.name"
|
50
|
+
- ".idea/encodings.xml"
|
51
|
+
- ".idea/jquery_uniform-rails.iml"
|
52
|
+
- ".idea/misc.xml"
|
53
|
+
- ".idea/modules.xml"
|
54
|
+
- ".idea/workspace.xml"
|
55
|
+
- Gemfile
|
56
|
+
- LICENSE.txt
|
57
|
+
- README.md
|
58
|
+
- Rakefile
|
59
|
+
- jquery_uniform-rails.gemspec
|
60
|
+
- lib/jquery_uniform/rails.rb
|
61
|
+
- lib/jquery_uniform/rails/version.rb
|
62
|
+
homepage: ''
|
63
|
+
licenses:
|
64
|
+
- MIT
|
65
|
+
metadata: {}
|
66
|
+
post_install_message:
|
67
|
+
rdoc_options: []
|
68
|
+
require_paths:
|
69
|
+
- lib
|
70
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0'
|
75
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
76
|
+
requirements:
|
77
|
+
- - ">="
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: '0'
|
80
|
+
requirements: []
|
81
|
+
rubyforge_project:
|
82
|
+
rubygems_version: 2.2.2
|
83
|
+
signing_key:
|
84
|
+
specification_version: 4
|
85
|
+
summary: uniformjs for rails
|
86
|
+
test_files: []
|