grepme-common 0.1.0
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/encodings.xml +6 -0
- data/.idea/grepme-common.iml +54 -0
- data/.idea/misc.xml +33 -0
- data/.idea/modules.xml +8 -0
- data/.idea/workspace.xml +445 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +4 -0
- data/README.md +36 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/grepme-common.gemspec +23 -0
- data/lib/grepme/common.rb +9 -0
- data/lib/grepme/common/version.rb +5 -0
- metadata +87 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 100284e4b4966bea404cdbf0378d0490dfedf3e6
|
4
|
+
data.tar.gz: fef05338d3bfdbf8827b2a893890a4866e8aa4c8
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e48153f53fef2610c4e47b9f9c46dfe48bf5dcac41569322d7e947ec899b5b34a93adb4eb6e00d134e57d62cd3135cfdaa2c09ec9d25a9ae63cfb26c6372e90c
|
7
|
+
data.tar.gz: 3643243fc836a74c03dde8f51ffa5d2f1d4fd45a6ac14a2be78517a9db460fe4e82b1933623b7ffd8f4b2810861c9d308979243d4db69f36b677008ab983fb3e
|
data/.gitignore
ADDED
data/.idea/.name
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
grepme-common
|
data/.idea/encodings.xml
ADDED
@@ -0,0 +1,54 @@
|
|
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="ModuleRunConfigurationManager">
|
13
|
+
<configuration default="false" name="All tests in grepme-common: grepme-common" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
14
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
15
|
+
<module name="grepme-common" />
|
16
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
17
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
18
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
19
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
20
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
21
|
+
<envs>
|
22
|
+
<env name="JRUBY_OPTS" value="-X+O" />
|
23
|
+
</envs>
|
24
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
25
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
26
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
27
|
+
<COVERAGE_PATTERN ENABLED="true">
|
28
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
29
|
+
</COVERAGE_PATTERN>
|
30
|
+
</EXTENSION>
|
31
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="$MODULE_DIR$" />
|
32
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
33
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/{*_test,test_*}.rb" />
|
34
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
35
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="ALL_IN_FOLDER" />
|
36
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
37
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
38
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
39
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
40
|
+
<method />
|
41
|
+
</configuration>
|
42
|
+
</component>
|
43
|
+
<component name="NewModuleRootManager">
|
44
|
+
<content url="file://$MODULE_DIR$">
|
45
|
+
<sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
|
46
|
+
<excludeFolder url="file://$MODULE_DIR$/.bundle" />
|
47
|
+
<excludeFolder url="file://$MODULE_DIR$/vendor/bundle" />
|
48
|
+
</content>
|
49
|
+
<orderEntry type="jdk" jdkName="RVM: ruby-2.2.4" jdkType="RUBY_SDK" />
|
50
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
51
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.11.2, RVM: ruby-2.2.4) [gem]" level="application" />
|
52
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v10.5.0, RVM: ruby-2.2.4) [gem]" level="application" />
|
53
|
+
</component>
|
54
|
+
</module>
|
data/.idea/misc.xml
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="JsBowerSettings">
|
4
|
+
<exe-path>/usr/local/bin/bower</exe-path>
|
5
|
+
<config-path />
|
6
|
+
</component>
|
7
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
8
|
+
<OptionsSetting value="true" id="Add" />
|
9
|
+
<OptionsSetting value="true" id="Remove" />
|
10
|
+
<OptionsSetting value="true" id="Checkout" />
|
11
|
+
<OptionsSetting value="true" id="Update" />
|
12
|
+
<OptionsSetting value="true" id="Status" />
|
13
|
+
<OptionsSetting value="true" id="Edit" />
|
14
|
+
<ConfirmationsSetting value="0" id="Add" />
|
15
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
16
|
+
</component>
|
17
|
+
<component name="ProjectRootManager" version="2" project-jdk-name="RVM: ruby-2.2.3 [global]" project-jdk-type="RUBY_SDK" />
|
18
|
+
<component name="masterDetails">
|
19
|
+
<states>
|
20
|
+
<state key="ScopeChooserConfigurable.UI">
|
21
|
+
<settings>
|
22
|
+
<splitter-proportions>
|
23
|
+
<option name="proportions">
|
24
|
+
<list>
|
25
|
+
<option value="0.2" />
|
26
|
+
</list>
|
27
|
+
</option>
|
28
|
+
</splitter-proportions>
|
29
|
+
</settings>
|
30
|
+
</state>
|
31
|
+
</states>
|
32
|
+
</component>
|
33
|
+
</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/grepme-common.iml" filepath="$PROJECT_DIR$/.idea/grepme-common.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|
data/.idea/workspace.xml
ADDED
@@ -0,0 +1,445 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ChangeListManager">
|
4
|
+
<list default="true" id="1573d586-e400-4bd9-b900-c10a2ebf85e5" name="Default" comment="" />
|
5
|
+
<ignored path="grepme-common.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="grepme-common" />
|
22
|
+
</component>
|
23
|
+
<component name="FileEditorManager">
|
24
|
+
<leaf>
|
25
|
+
<file leaf-file-name="common.rb" pinned="false" current-in-tab="false">
|
26
|
+
<entry file="file://$PROJECT_DIR$/lib/grepme/common.rb">
|
27
|
+
<provider selected="true" editor-type-id="text-editor">
|
28
|
+
<state vertical-scroll-proportion="0.0">
|
29
|
+
<caret line="8" column="3" selection-start-line="8" selection-start-column="3" selection-end-line="8" selection-end-column="3" />
|
30
|
+
<folding />
|
31
|
+
</state>
|
32
|
+
</provider>
|
33
|
+
</entry>
|
34
|
+
</file>
|
35
|
+
<file leaf-file-name="setup" pinned="false" current-in-tab="false">
|
36
|
+
<entry file="file://$PROJECT_DIR$/bin/setup">
|
37
|
+
<provider selected="true" editor-type-id="text-editor">
|
38
|
+
<state vertical-scroll-proportion="0.0">
|
39
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
40
|
+
<folding />
|
41
|
+
</state>
|
42
|
+
</provider>
|
43
|
+
</entry>
|
44
|
+
</file>
|
45
|
+
<file leaf-file-name="README.md" pinned="false" current-in-tab="false">
|
46
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
47
|
+
<provider selected="true" editor-type-id="split-provider[text-editor;MultiMarkdownPreviewEditor]">
|
48
|
+
<state split_layout="FIRST">
|
49
|
+
<first_editor vertical-scroll-proportion="0.0019569471">
|
50
|
+
<caret line="8" column="35" selection-start-line="8" selection-start-column="35" selection-end-line="8" selection-end-column="35" />
|
51
|
+
<folding />
|
52
|
+
</first_editor>
|
53
|
+
<second_editor />
|
54
|
+
</state>
|
55
|
+
</provider>
|
56
|
+
<provider editor-type-id="MultiMarkdownFxPreviewEditor">
|
57
|
+
<state />
|
58
|
+
</provider>
|
59
|
+
</entry>
|
60
|
+
</file>
|
61
|
+
<file leaf-file-name="grepme-common.gemspec" pinned="false" current-in-tab="true">
|
62
|
+
<entry file="file://$PROJECT_DIR$/grepme-common.gemspec">
|
63
|
+
<provider selected="true" editor-type-id="text-editor">
|
64
|
+
<state vertical-scroll-proportion="0.34452298">
|
65
|
+
<caret line="13" column="46" selection-start-line="13" selection-start-column="46" selection-end-line="13" selection-end-column="46" />
|
66
|
+
<folding />
|
67
|
+
</state>
|
68
|
+
</provider>
|
69
|
+
</entry>
|
70
|
+
</file>
|
71
|
+
<file leaf-file-name="version.rb" pinned="false" current-in-tab="false">
|
72
|
+
<entry file="file://$PROJECT_DIR$/lib/grepme/common/version.rb">
|
73
|
+
<provider selected="true" editor-type-id="text-editor">
|
74
|
+
<state vertical-scroll-proportion="0.0">
|
75
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
76
|
+
<folding />
|
77
|
+
</state>
|
78
|
+
</provider>
|
79
|
+
</entry>
|
80
|
+
</file>
|
81
|
+
</leaf>
|
82
|
+
</component>
|
83
|
+
<component name="IdeDocumentHistory">
|
84
|
+
<option name="CHANGED_PATHS">
|
85
|
+
<list>
|
86
|
+
<option value="$PROJECT_DIR$/lib/grepme/common.rb" />
|
87
|
+
<option value="$PROJECT_DIR$/grepme-common.gemspec" />
|
88
|
+
</list>
|
89
|
+
</option>
|
90
|
+
</component>
|
91
|
+
<component name="JsBuildToolGruntFileManager" detection-done="true" />
|
92
|
+
<component name="JsBuildToolPackageJson" detection-done="true" />
|
93
|
+
<component name="JsGulpfileManager">
|
94
|
+
<detection-done>true</detection-done>
|
95
|
+
</component>
|
96
|
+
<component name="ProjectFrameBounds">
|
97
|
+
<option name="y" value="23" />
|
98
|
+
<option name="width" value="1680" />
|
99
|
+
<option name="height" value="982" />
|
100
|
+
</component>
|
101
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
102
|
+
<OptionsSetting value="true" id="Add" />
|
103
|
+
<OptionsSetting value="true" id="Remove" />
|
104
|
+
<OptionsSetting value="true" id="Checkout" />
|
105
|
+
<OptionsSetting value="true" id="Update" />
|
106
|
+
<OptionsSetting value="true" id="Status" />
|
107
|
+
<OptionsSetting value="true" id="Edit" />
|
108
|
+
<ConfirmationsSetting value="0" id="Add" />
|
109
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
110
|
+
</component>
|
111
|
+
<component name="ProjectView">
|
112
|
+
<navigator currentView="ProjectPane" proportions="" version="1">
|
113
|
+
<flattenPackages />
|
114
|
+
<showMembers />
|
115
|
+
<showModules />
|
116
|
+
<showLibraryContents />
|
117
|
+
<hideEmptyPackages />
|
118
|
+
<abbreviatePackageNames />
|
119
|
+
<autoscrollToSource />
|
120
|
+
<autoscrollFromSource />
|
121
|
+
<sortByType />
|
122
|
+
<manualOrder />
|
123
|
+
<foldersAlwaysOnTop value="true" />
|
124
|
+
</navigator>
|
125
|
+
<panes>
|
126
|
+
<pane id="Scope" />
|
127
|
+
<pane id="ProjectPane">
|
128
|
+
<subPane>
|
129
|
+
<PATH>
|
130
|
+
<PATH_ELEMENT>
|
131
|
+
<option name="myItemId" value="grepme-common" />
|
132
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
133
|
+
</PATH_ELEMENT>
|
134
|
+
</PATH>
|
135
|
+
<PATH>
|
136
|
+
<PATH_ELEMENT>
|
137
|
+
<option name="myItemId" value="grepme-common" />
|
138
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
139
|
+
</PATH_ELEMENT>
|
140
|
+
<PATH_ELEMENT>
|
141
|
+
<option name="myItemId" value="grepme-common" />
|
142
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
143
|
+
</PATH_ELEMENT>
|
144
|
+
</PATH>
|
145
|
+
<PATH>
|
146
|
+
<PATH_ELEMENT>
|
147
|
+
<option name="myItemId" value="grepme-common" />
|
148
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
149
|
+
</PATH_ELEMENT>
|
150
|
+
<PATH_ELEMENT>
|
151
|
+
<option name="myItemId" value="grepme-common" />
|
152
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
153
|
+
</PATH_ELEMENT>
|
154
|
+
<PATH_ELEMENT>
|
155
|
+
<option name="myItemId" value="lib" />
|
156
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
157
|
+
</PATH_ELEMENT>
|
158
|
+
<PATH_ELEMENT>
|
159
|
+
<option name="myItemId" value="grepme" />
|
160
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
161
|
+
</PATH_ELEMENT>
|
162
|
+
</PATH>
|
163
|
+
<PATH>
|
164
|
+
<PATH_ELEMENT>
|
165
|
+
<option name="myItemId" value="grepme-common" />
|
166
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
167
|
+
</PATH_ELEMENT>
|
168
|
+
<PATH_ELEMENT>
|
169
|
+
<option name="myItemId" value="grepme-common" />
|
170
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
171
|
+
</PATH_ELEMENT>
|
172
|
+
<PATH_ELEMENT>
|
173
|
+
<option name="myItemId" value="lib" />
|
174
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
175
|
+
</PATH_ELEMENT>
|
176
|
+
<PATH_ELEMENT>
|
177
|
+
<option name="myItemId" value="grepme" />
|
178
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
179
|
+
</PATH_ELEMENT>
|
180
|
+
<PATH_ELEMENT>
|
181
|
+
<option name="myItemId" value="common" />
|
182
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
183
|
+
</PATH_ELEMENT>
|
184
|
+
</PATH>
|
185
|
+
<PATH>
|
186
|
+
<PATH_ELEMENT>
|
187
|
+
<option name="myItemId" value="grepme-common" />
|
188
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
189
|
+
</PATH_ELEMENT>
|
190
|
+
<PATH_ELEMENT>
|
191
|
+
<option name="myItemId" value="grepme-common" />
|
192
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
193
|
+
</PATH_ELEMENT>
|
194
|
+
<PATH_ELEMENT>
|
195
|
+
<option name="myItemId" value="bin" />
|
196
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
197
|
+
</PATH_ELEMENT>
|
198
|
+
</PATH>
|
199
|
+
</subPane>
|
200
|
+
</pane>
|
201
|
+
<pane id="Scratches" />
|
202
|
+
</panes>
|
203
|
+
</component>
|
204
|
+
<component name="PropertiesComponent">
|
205
|
+
<property name="settings.editor.selected.configurable" value="org.jetbrains.plugins.ruby.settings.RubyActiveModuleSdkConfigurable" />
|
206
|
+
<property name="settings.editor.splitter.proportion" value="0.2" />
|
207
|
+
<property name="last_opened_file_path" value="$USER_HOME$/.rvm/rubies/default/bin/ruby" />
|
208
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
209
|
+
<property name="js-jscs-nodeInterpreter" value="$USER_HOME$/.nvm/versions/node/v5.5.0/bin/node" />
|
210
|
+
</component>
|
211
|
+
<component name="RunManager" selected="Test::Unit/Shoulda/Minitest.All tests in grepme-common: grepme-common">
|
212
|
+
<configuration default="true" type="CucumberRunConfigurationType" factoryName="Cucumber">
|
213
|
+
<predefined_log_file id="RUBY_CUCUMBER" enabled="true" />
|
214
|
+
<module name="" />
|
215
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
216
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
217
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
218
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
219
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
220
|
+
<envs />
|
221
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
222
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
223
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
224
|
+
<COVERAGE_PATTERN ENABLED="true">
|
225
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
226
|
+
</COVERAGE_PATTERN>
|
227
|
+
</EXTENSION>
|
228
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*.feature" />
|
229
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
230
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
231
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
232
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TAGS_FILTER" VALUE="" />
|
233
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_NAME_FILTER" VALUE="" />
|
234
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_ARGS" VALUE="--color -r features" />
|
235
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
236
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
237
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="VERBOSE_OPTION" VALUE="false" />
|
238
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
239
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
240
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
241
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_RUNNER_PATH" VALUE="" />
|
242
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_RUNNER" VALUE="false" />
|
243
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SETTINGS_VERSION" VALUE="2" />
|
244
|
+
<method />
|
245
|
+
</configuration>
|
246
|
+
<configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug">
|
247
|
+
<method />
|
248
|
+
</configuration>
|
249
|
+
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
250
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
251
|
+
<module name="" />
|
252
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
253
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
254
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
255
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
256
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
257
|
+
<envs />
|
258
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
259
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
260
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
261
|
+
<COVERAGE_PATTERN ENABLED="true">
|
262
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
263
|
+
</COVERAGE_PATTERN>
|
264
|
+
</EXTENSION>
|
265
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
266
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
267
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
268
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
269
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
270
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
271
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
272
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
273
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
274
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
275
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
276
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
277
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
278
|
+
<method />
|
279
|
+
</configuration>
|
280
|
+
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
281
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
282
|
+
<module name="" />
|
283
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
284
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
285
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
286
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
287
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
288
|
+
<envs />
|
289
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
290
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
291
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
292
|
+
<COVERAGE_PATTERN ENABLED="true">
|
293
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
294
|
+
</COVERAGE_PATTERN>
|
295
|
+
</EXTENSION>
|
296
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
297
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
298
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
299
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
300
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
301
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
302
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
303
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
304
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
305
|
+
<method />
|
306
|
+
</configuration>
|
307
|
+
<configuration default="true" type="js.build_tools.gulp" factoryName="Gulp.js">
|
308
|
+
<method />
|
309
|
+
</configuration>
|
310
|
+
<configuration default="true" type="js.build_tools.npm" factoryName="npm">
|
311
|
+
<command value="run-script" />
|
312
|
+
<scripts />
|
313
|
+
<envs />
|
314
|
+
<method />
|
315
|
+
</configuration>
|
316
|
+
<configuration default="false" name="All tests in grepme-common: grepme-common" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
317
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
318
|
+
<module name="grepme-common" />
|
319
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
320
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
321
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
322
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
323
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
324
|
+
<envs>
|
325
|
+
<env name="JRUBY_OPTS" value="-X+O" />
|
326
|
+
</envs>
|
327
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
328
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
329
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
330
|
+
<COVERAGE_PATTERN ENABLED="true">
|
331
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
332
|
+
</COVERAGE_PATTERN>
|
333
|
+
</EXTENSION>
|
334
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="$MODULE_DIR$" />
|
335
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
336
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/{*_test,test_*}.rb" />
|
337
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
338
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="ALL_IN_FOLDER" />
|
339
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
340
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
341
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
342
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
343
|
+
<method />
|
344
|
+
</configuration>
|
345
|
+
<list size="1">
|
346
|
+
<item index="0" class="java.lang.String" itemvalue="Test::Unit/Shoulda/Minitest.All tests in grepme-common: grepme-common" />
|
347
|
+
</list>
|
348
|
+
</component>
|
349
|
+
<component name="ShelveChangesManager" show_recycled="false" />
|
350
|
+
<component name="SvnConfiguration">
|
351
|
+
<configuration />
|
352
|
+
</component>
|
353
|
+
<component name="TaskManager">
|
354
|
+
<task active="true" id="Default" summary="Default task">
|
355
|
+
<changelist id="1573d586-e400-4bd9-b900-c10a2ebf85e5" name="Default" comment="" />
|
356
|
+
<created>1458206597722</created>
|
357
|
+
<option name="number" value="Default" />
|
358
|
+
<updated>1458206597722</updated>
|
359
|
+
</task>
|
360
|
+
<servers />
|
361
|
+
</component>
|
362
|
+
<component name="ToolWindowManager">
|
363
|
+
<frame x="0" y="23" width="1680" height="982" extended-state="6" />
|
364
|
+
<editor active="true" />
|
365
|
+
<layout>
|
366
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.25274727" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
367
|
+
<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" />
|
368
|
+
<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" />
|
369
|
+
<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" />
|
370
|
+
<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" />
|
371
|
+
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.33032694" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
372
|
+
<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" />
|
373
|
+
<window_info id="Terminal" 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" />
|
374
|
+
<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" />
|
375
|
+
<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" />
|
376
|
+
<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" />
|
377
|
+
<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" />
|
378
|
+
<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" />
|
379
|
+
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
380
|
+
<window_info id="Find" 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" />
|
381
|
+
<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" />
|
382
|
+
<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" />
|
383
|
+
</layout>
|
384
|
+
</component>
|
385
|
+
<component name="VcsContentAnnotationSettings">
|
386
|
+
<option name="myLimit" value="2678400000" />
|
387
|
+
</component>
|
388
|
+
<component name="VcsManagerConfiguration">
|
389
|
+
<ignored-roots>
|
390
|
+
<path value="$PROJECT_DIR$" />
|
391
|
+
</ignored-roots>
|
392
|
+
</component>
|
393
|
+
<component name="XDebuggerManager">
|
394
|
+
<breakpoint-manager />
|
395
|
+
<watches-manager />
|
396
|
+
</component>
|
397
|
+
<component name="editorHistoryManager">
|
398
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
399
|
+
<provider selected="true" editor-type-id="split-provider[text-editor;MultiMarkdownPreviewEditor]">
|
400
|
+
<state split_layout="FIRST">
|
401
|
+
<first_editor vertical-scroll-proportion="0.0019569471">
|
402
|
+
<caret line="8" column="35" selection-start-line="8" selection-start-column="35" selection-end-line="8" selection-end-column="35" />
|
403
|
+
<folding />
|
404
|
+
</first_editor>
|
405
|
+
<second_editor />
|
406
|
+
</state>
|
407
|
+
</provider>
|
408
|
+
<provider editor-type-id="MultiMarkdownFxPreviewEditor">
|
409
|
+
<state />
|
410
|
+
</provider>
|
411
|
+
</entry>
|
412
|
+
<entry file="file://$PROJECT_DIR$/lib/grepme/common/version.rb">
|
413
|
+
<provider selected="true" editor-type-id="text-editor">
|
414
|
+
<state vertical-scroll-proportion="0.0">
|
415
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
416
|
+
<folding />
|
417
|
+
</state>
|
418
|
+
</provider>
|
419
|
+
</entry>
|
420
|
+
<entry file="file://$PROJECT_DIR$/bin/setup">
|
421
|
+
<provider selected="true" editor-type-id="text-editor">
|
422
|
+
<state vertical-scroll-proportion="0.0">
|
423
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
424
|
+
<folding />
|
425
|
+
</state>
|
426
|
+
</provider>
|
427
|
+
</entry>
|
428
|
+
<entry file="file://$PROJECT_DIR$/lib/grepme/common.rb">
|
429
|
+
<provider selected="true" editor-type-id="text-editor">
|
430
|
+
<state vertical-scroll-proportion="0.0">
|
431
|
+
<caret line="8" column="3" selection-start-line="8" selection-start-column="3" selection-end-line="8" selection-end-column="3" />
|
432
|
+
<folding />
|
433
|
+
</state>
|
434
|
+
</provider>
|
435
|
+
</entry>
|
436
|
+
<entry file="file://$PROJECT_DIR$/grepme-common.gemspec">
|
437
|
+
<provider selected="true" editor-type-id="text-editor">
|
438
|
+
<state vertical-scroll-proportion="0.34452298">
|
439
|
+
<caret line="13" column="46" selection-start-line="13" selection-start-column="46" selection-end-line="13" selection-end-column="46" />
|
440
|
+
<folding />
|
441
|
+
</state>
|
442
|
+
</provider>
|
443
|
+
</entry>
|
444
|
+
</component>
|
445
|
+
</project>
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, and in the interest of
|
4
|
+
fostering an open and welcoming community, we pledge to respect all people who
|
5
|
+
contribute through reporting issues, posting feature requests, updating
|
6
|
+
documentation, submitting pull requests or patches, and other activities.
|
7
|
+
|
8
|
+
We are committed to making participation in this project a harassment-free
|
9
|
+
experience for everyone, regardless of level of experience, gender, gender
|
10
|
+
identity and expression, sexual orientation, disability, personal appearance,
|
11
|
+
body size, race, ethnicity, age, religion, or nationality.
|
12
|
+
|
13
|
+
Examples of unacceptable behavior by participants include:
|
14
|
+
|
15
|
+
* The use of sexualized language or imagery
|
16
|
+
* Personal attacks
|
17
|
+
* Trolling or insulting/derogatory comments
|
18
|
+
* Public or private harassment
|
19
|
+
* Publishing other's private information, such as physical or electronic
|
20
|
+
addresses, without explicit permission
|
21
|
+
* Other unethical or unprofessional conduct
|
22
|
+
|
23
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
24
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
25
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
26
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
27
|
+
threatening, offensive, or harmful.
|
28
|
+
|
29
|
+
By adopting this Code of Conduct, project maintainers commit themselves to
|
30
|
+
fairly and consistently applying these principles to every aspect of managing
|
31
|
+
this project. Project maintainers who do not follow or enforce the Code of
|
32
|
+
Conduct may be permanently removed from the project team.
|
33
|
+
|
34
|
+
This code of conduct applies both within project spaces and in public spaces
|
35
|
+
when an individual is representing the project or its community.
|
36
|
+
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
38
|
+
reported by contacting a project maintainer at xueron@xueron.com. All
|
39
|
+
complaints will be reviewed and investigated and will result in a response that
|
40
|
+
is deemed necessary and appropriate to the circumstances. Maintainers are
|
41
|
+
obligated to maintain confidentiality with regard to the reporter of an
|
42
|
+
incident.
|
43
|
+
|
44
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
45
|
+
version 1.3.0, available at
|
46
|
+
[http://contributor-covenant.org/version/1/3/0/][version]
|
47
|
+
|
48
|
+
[homepage]: http://contributor-covenant.org
|
49
|
+
[version]: http://contributor-covenant.org/version/1/3/0/
|
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
# Grepme::Common
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/grepme/common`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'grepme-common'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install grepme-common
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/grepme-common. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
36
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "grepme/common"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
@@ -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 'grepme/common/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "grepme-common"
|
8
|
+
spec.version = Grepme::Common::VERSION
|
9
|
+
spec.authors = ["GrepMe"]
|
10
|
+
spec.email = ["dev@grepme.cn"]
|
11
|
+
|
12
|
+
spec.summary = %q{This is a common gem for grepme.cn}
|
13
|
+
spec.description = %q{Common funcs for grepme}
|
14
|
+
spec.homepage = "https://www.grepme.cn"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
17
|
+
spec.bindir = "exe"
|
18
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.11"
|
22
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
23
|
+
end
|
metadata
ADDED
@@ -0,0 +1,87 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: grepme-common
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- GrepMe
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-03-17 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.11'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.11'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
description: Common funcs for grepme
|
42
|
+
email:
|
43
|
+
- dev@grepme.cn
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- ".gitignore"
|
49
|
+
- ".idea/.name"
|
50
|
+
- ".idea/encodings.xml"
|
51
|
+
- ".idea/grepme-common.iml"
|
52
|
+
- ".idea/misc.xml"
|
53
|
+
- ".idea/modules.xml"
|
54
|
+
- ".idea/workspace.xml"
|
55
|
+
- CODE_OF_CONDUCT.md
|
56
|
+
- Gemfile
|
57
|
+
- README.md
|
58
|
+
- Rakefile
|
59
|
+
- bin/console
|
60
|
+
- bin/setup
|
61
|
+
- grepme-common.gemspec
|
62
|
+
- lib/grepme/common.rb
|
63
|
+
- lib/grepme/common/version.rb
|
64
|
+
homepage: https://www.grepme.cn
|
65
|
+
licenses: []
|
66
|
+
metadata: {}
|
67
|
+
post_install_message:
|
68
|
+
rdoc_options: []
|
69
|
+
require_paths:
|
70
|
+
- lib
|
71
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - ">="
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '0'
|
81
|
+
requirements: []
|
82
|
+
rubyforge_project:
|
83
|
+
rubygems_version: 2.4.8
|
84
|
+
signing_key:
|
85
|
+
specification_version: 4
|
86
|
+
summary: This is a common gem for grepme.cn
|
87
|
+
test_files: []
|