mdb_basic_gem 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 +11 -0
- data/.idea/inspectionProfiles/Project_Default.xml +7 -0
- data/.idea/mdb_basic_gem.iml +18 -0
- data/.idea/modules.xml +8 -0
- data/.idea/workspace.xml +309 -0
- data/.rspec +3 -0
- data/.travis.yml +5 -0
- data/Gemfile +6 -0
- data/README.md +35 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/exe/mdb_basic_gem +3 -0
- data/lib/mdb_basic_gem.rb +10 -0
- data/lib/mdb_basic_gem/version.rb +3 -0
- data/mdb_basic_gem.gemspec +35 -0
- metadata +104 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 490d813ca5950c90dd13e51baa80b84441cc36a5
|
|
4
|
+
data.tar.gz: 449f0c4e52f0d5e8065d3a6fe87e6f0100d5769d
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: b474a365252f0a604162b138211b3ef017b855a8dc809ea2de1c97d72def8a4a3bb8fd116cf0557c7102c14e54c8f008172e21eea373152f32dca495101ea886
|
|
7
|
+
data.tar.gz: 4c5ce888ca523a6b86862037058c7316358b79935cf4ff1491507657603ce8967060dbcd878e59bad569cfbe475de9ab8fccc2c1a57e098a3fa48fbd3dade0e7
|
data/.gitignore
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<component name="InspectionProjectProfileManager">
|
|
2
|
+
<profile version="1.0">
|
|
3
|
+
<option name="myName" value="Project Default" />
|
|
4
|
+
<inspection_tool class="Rubocop" enabled="false" level="WARNING" enabled_by_default="false" />
|
|
5
|
+
<inspection_tool class="SpellCheckingInspection" enabled="false" level="TYPO" enabled_by_default="false" />
|
|
6
|
+
</profile>
|
|
7
|
+
</component>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
|
3
|
+
<component name="ModuleRunConfigurationManager">
|
|
4
|
+
<shared />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="NewModuleRootManager">
|
|
7
|
+
<content url="file://$MODULE_DIR$" />
|
|
8
|
+
<orderEntry type="inheritedJdk" />
|
|
9
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
10
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.16.0, RVM: ruby-2.2.2) [gem]" level="application" />
|
|
11
|
+
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.3, RVM: ruby-2.2.2) [gem]" level="application" />
|
|
12
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec (v3.7.0, RVM: ruby-2.2.2) [gem]" level="application" />
|
|
13
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.7.0, RVM: ruby-2.2.2) [gem]" level="application" />
|
|
14
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.7.0, RVM: ruby-2.2.2) [gem]" level="application" />
|
|
15
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.7.0, RVM: ruby-2.2.2) [gem]" level="application" />
|
|
16
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.7.0, RVM: ruby-2.2.2) [gem]" level="application" />
|
|
17
|
+
</component>
|
|
18
|
+
</module>
|
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/mdb_basic_gem.iml" filepath="$PROJECT_DIR$/.idea/mdb_basic_gem.iml" />
|
|
6
|
+
</modules>
|
|
7
|
+
</component>
|
|
8
|
+
</project>
|
data/.idea/workspace.xml
ADDED
|
@@ -0,0 +1,309 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ChangeListManager">
|
|
4
|
+
<list default="true" id="9b0384c2-e383-4e7a-af93-28bb55981242" name="Default" comment="">
|
|
5
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.gitignore" />
|
|
6
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/inspectionProfiles/Project_Default.xml" />
|
|
7
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/mdb_basic_gem.iml" />
|
|
8
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/modules.xml" />
|
|
9
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
|
|
10
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.rspec" />
|
|
11
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.travis.yml" />
|
|
12
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/Gemfile" />
|
|
13
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/README.md" />
|
|
14
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/Rakefile" />
|
|
15
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/bin/console" />
|
|
16
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/bin/setup" />
|
|
17
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/exe/mdb_basic_gem" />
|
|
18
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/lib/mdb_basic_gem.rb" />
|
|
19
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/lib/mdb_basic_gem/version.rb" />
|
|
20
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/mdb_basic_gem.gemspec" />
|
|
21
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/spec/mdb_basic_gem_spec.rb" />
|
|
22
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/spec/spec_helper.rb" />
|
|
23
|
+
</list>
|
|
24
|
+
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
|
25
|
+
<option name="TRACKING_ENABLED" value="true" />
|
|
26
|
+
<option name="SHOW_DIALOG" value="false" />
|
|
27
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
28
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
29
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
30
|
+
</component>
|
|
31
|
+
<component name="FileColors">
|
|
32
|
+
<fileColor scope="Project Files" color="Blue" />
|
|
33
|
+
<fileColor scope="Problems" color="Rose" />
|
|
34
|
+
</component>
|
|
35
|
+
<component name="FileEditorManager">
|
|
36
|
+
<leaf>
|
|
37
|
+
<file leaf-file-name="mdb_basic_gem.gemspec" pinned="false" current-in-tab="false">
|
|
38
|
+
<entry file="file://$PROJECT_DIR$/mdb_basic_gem.gemspec">
|
|
39
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
40
|
+
<state relative-caret-position="306">
|
|
41
|
+
<caret line="18" column="62" lean-forward="false" selection-start-line="18" selection-start-column="62" selection-end-line="18" selection-end-column="62" />
|
|
42
|
+
<folding />
|
|
43
|
+
</state>
|
|
44
|
+
</provider>
|
|
45
|
+
</entry>
|
|
46
|
+
</file>
|
|
47
|
+
<file leaf-file-name="mdb_basic_gem" pinned="false" current-in-tab="false">
|
|
48
|
+
<entry file="file://$PROJECT_DIR$/exe/mdb_basic_gem">
|
|
49
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
50
|
+
<state relative-caret-position="0">
|
|
51
|
+
<caret line="0" column="0" lean-forward="false" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
52
|
+
<folding />
|
|
53
|
+
</state>
|
|
54
|
+
</provider>
|
|
55
|
+
</entry>
|
|
56
|
+
</file>
|
|
57
|
+
<file leaf-file-name="mdb_basic_gem.rb" pinned="false" current-in-tab="true">
|
|
58
|
+
<entry file="file://$PROJECT_DIR$/lib/mdb_basic_gem.rb">
|
|
59
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
60
|
+
<state relative-caret-position="136">
|
|
61
|
+
<caret line="8" column="38" lean-forward="false" selection-start-line="8" selection-start-column="38" selection-end-line="8" selection-end-column="38" />
|
|
62
|
+
<folding />
|
|
63
|
+
</state>
|
|
64
|
+
</provider>
|
|
65
|
+
</entry>
|
|
66
|
+
</file>
|
|
67
|
+
</leaf>
|
|
68
|
+
</component>
|
|
69
|
+
<component name="Git.Settings">
|
|
70
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
71
|
+
</component>
|
|
72
|
+
<component name="IdeDocumentHistory">
|
|
73
|
+
<option name="CHANGED_PATHS">
|
|
74
|
+
<list>
|
|
75
|
+
<option value="$PROJECT_DIR$/mdb_basic_gem.gemspec" />
|
|
76
|
+
<option value="$PROJECT_DIR$/lib/mdb_basic_gem.rb" />
|
|
77
|
+
</list>
|
|
78
|
+
</option>
|
|
79
|
+
</component>
|
|
80
|
+
<component name="JsBowerSettings">
|
|
81
|
+
<node-interpreter value="project" />
|
|
82
|
+
<exe-path>/usr/local/bin/bower</exe-path>
|
|
83
|
+
<config-path />
|
|
84
|
+
</component>
|
|
85
|
+
<component name="JsBuildToolGruntFileManager" detection-done="true" sorting="DEFINITION_ORDER" />
|
|
86
|
+
<component name="JsBuildToolPackageJson" detection-done="true" sorting="DEFINITION_ORDER" />
|
|
87
|
+
<component name="JsFlowSettings">
|
|
88
|
+
<service-enabled>true</service-enabled>
|
|
89
|
+
<exe-path />
|
|
90
|
+
<annotation-enable>false</annotation-enable>
|
|
91
|
+
<other-services-enabled>true</other-services-enabled>
|
|
92
|
+
<auto-save>true</auto-save>
|
|
93
|
+
</component>
|
|
94
|
+
<component name="JsGulpfileManager">
|
|
95
|
+
<detection-done>true</detection-done>
|
|
96
|
+
<sorting>DEFINITION_ORDER</sorting>
|
|
97
|
+
</component>
|
|
98
|
+
<component name="ProjectFrameBounds">
|
|
99
|
+
<option name="x" value="4" />
|
|
100
|
+
<option name="y" value="22" />
|
|
101
|
+
<option name="width" value="1436" />
|
|
102
|
+
<option name="height" value="878" />
|
|
103
|
+
</component>
|
|
104
|
+
<component name="ProjectInspectionProfilesVisibleTreeState">
|
|
105
|
+
<entry key="Project Default">
|
|
106
|
+
<profile-state>
|
|
107
|
+
<expanded-state>
|
|
108
|
+
<State>
|
|
109
|
+
<id />
|
|
110
|
+
</State>
|
|
111
|
+
</expanded-state>
|
|
112
|
+
<selected-state>
|
|
113
|
+
<State>
|
|
114
|
+
<id>Spelling</id>
|
|
115
|
+
</State>
|
|
116
|
+
</selected-state>
|
|
117
|
+
</profile-state>
|
|
118
|
+
</entry>
|
|
119
|
+
</component>
|
|
120
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="true" />
|
|
121
|
+
<component name="ProjectView">
|
|
122
|
+
<navigator currentView="ProjectPane" proportions="" version="1">
|
|
123
|
+
<flattenPackages />
|
|
124
|
+
<showMembers />
|
|
125
|
+
<showModules />
|
|
126
|
+
<showLibraryContents />
|
|
127
|
+
<hideEmptyPackages />
|
|
128
|
+
<abbreviatePackageNames />
|
|
129
|
+
<autoscrollToSource />
|
|
130
|
+
<autoscrollFromSource />
|
|
131
|
+
<sortByType />
|
|
132
|
+
<manualOrder />
|
|
133
|
+
<foldersAlwaysOnTop value="true" />
|
|
134
|
+
</navigator>
|
|
135
|
+
<panes>
|
|
136
|
+
<pane id="ProjectPane">
|
|
137
|
+
<subPane>
|
|
138
|
+
<expand>
|
|
139
|
+
<path>
|
|
140
|
+
<item name="mdb_basic_gem" type="b2602c69:ProjectViewProjectNode" />
|
|
141
|
+
<item name="mdb_basic_gem" type="462c0819:PsiDirectoryNode" />
|
|
142
|
+
</path>
|
|
143
|
+
<path>
|
|
144
|
+
<item name="mdb_basic_gem" type="b2602c69:ProjectViewProjectNode" />
|
|
145
|
+
<item name="mdb_basic_gem" type="462c0819:PsiDirectoryNode" />
|
|
146
|
+
<item name="bin" type="462c0819:PsiDirectoryNode" />
|
|
147
|
+
</path>
|
|
148
|
+
<path>
|
|
149
|
+
<item name="mdb_basic_gem" type="b2602c69:ProjectViewProjectNode" />
|
|
150
|
+
<item name="mdb_basic_gem" type="462c0819:PsiDirectoryNode" />
|
|
151
|
+
<item name="exe" type="462c0819:PsiDirectoryNode" />
|
|
152
|
+
</path>
|
|
153
|
+
<path>
|
|
154
|
+
<item name="mdb_basic_gem" type="b2602c69:ProjectViewProjectNode" />
|
|
155
|
+
<item name="mdb_basic_gem" type="462c0819:PsiDirectoryNode" />
|
|
156
|
+
<item name="lib" type="462c0819:PsiDirectoryNode" />
|
|
157
|
+
</path>
|
|
158
|
+
<path>
|
|
159
|
+
<item name="mdb_basic_gem" type="b2602c69:ProjectViewProjectNode" />
|
|
160
|
+
<item name="mdb_basic_gem" type="462c0819:PsiDirectoryNode" />
|
|
161
|
+
<item name="lib" type="462c0819:PsiDirectoryNode" />
|
|
162
|
+
<item name="mdb_basic_gem" type="462c0819:PsiDirectoryNode" />
|
|
163
|
+
</path>
|
|
164
|
+
</expand>
|
|
165
|
+
<select />
|
|
166
|
+
</subPane>
|
|
167
|
+
</pane>
|
|
168
|
+
<pane id="Scratches" />
|
|
169
|
+
<pane id="Scope" />
|
|
170
|
+
</panes>
|
|
171
|
+
</component>
|
|
172
|
+
<component name="PropertiesComponent">
|
|
173
|
+
<property name="settings.editor.selected.configurable" value="project.propVCSSupport.Confirmation" />
|
|
174
|
+
<property name="nodejs_interpreter_path" value="/usr/local/bin/node" />
|
|
175
|
+
<property name="javascript.nodejs.core.library.configured.version" value="8.9.1" />
|
|
176
|
+
<property name="node.js.path.for.package.eslint" value="project" />
|
|
177
|
+
<property name="node.js.selected.package.eslint" value="" />
|
|
178
|
+
<property name="node.js.path.for.package.standard" value="project" />
|
|
179
|
+
<property name="node.js.selected.package.standard" value="/usr/local/lib/node_modules/standard" />
|
|
180
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
|
181
|
+
</component>
|
|
182
|
+
<component name="RunDashboard">
|
|
183
|
+
<option name="ruleStates">
|
|
184
|
+
<list>
|
|
185
|
+
<RuleState>
|
|
186
|
+
<option name="name" value="ConfigurationTypeDashboardGroupingRule" />
|
|
187
|
+
</RuleState>
|
|
188
|
+
<RuleState>
|
|
189
|
+
<option name="name" value="StatusDashboardGroupingRule" />
|
|
190
|
+
</RuleState>
|
|
191
|
+
</list>
|
|
192
|
+
</option>
|
|
193
|
+
</component>
|
|
194
|
+
<component name="ShelveChangesManager" show_recycled="false">
|
|
195
|
+
<option name="remove_strategy" value="false" />
|
|
196
|
+
</component>
|
|
197
|
+
<component name="SpringUtil" SPRING_PRE_LOADER_OPTION="true" />
|
|
198
|
+
<component name="TaskManager">
|
|
199
|
+
<task active="true" id="Default" summary="Default task">
|
|
200
|
+
<changelist id="9b0384c2-e383-4e7a-af93-28bb55981242" name="Default" comment="" />
|
|
201
|
+
<created>1511311720574</created>
|
|
202
|
+
<option name="number" value="Default" />
|
|
203
|
+
<option name="presentableId" value="Default" />
|
|
204
|
+
<updated>1511311720574</updated>
|
|
205
|
+
<workItem from="1511311721726" duration="293000" />
|
|
206
|
+
</task>
|
|
207
|
+
<servers />
|
|
208
|
+
</component>
|
|
209
|
+
<component name="TimeTrackingManager">
|
|
210
|
+
<option name="totallyTimeSpent" value="293000" />
|
|
211
|
+
</component>
|
|
212
|
+
<component name="ToolWindowManager">
|
|
213
|
+
<frame x="4" y="22" width="1436" height="878" extended-state="0" />
|
|
214
|
+
<editor active="true" />
|
|
215
|
+
<layout>
|
|
216
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
|
217
|
+
<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" />
|
|
218
|
+
<window_info id="Cargo" 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" />
|
|
219
|
+
<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" />
|
|
220
|
+
<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" />
|
|
221
|
+
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.32934132" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
|
222
|
+
<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" />
|
|
223
|
+
<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" />
|
|
224
|
+
<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" />
|
|
225
|
+
<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" />
|
|
226
|
+
<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" />
|
|
227
|
+
<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" />
|
|
228
|
+
<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" />
|
|
229
|
+
<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" />
|
|
230
|
+
<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" />
|
|
231
|
+
<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" />
|
|
232
|
+
<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" />
|
|
233
|
+
<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" />
|
|
234
|
+
</layout>
|
|
235
|
+
</component>
|
|
236
|
+
<component name="TypeScriptGeneratedFilesManager">
|
|
237
|
+
<option name="version" value="1" />
|
|
238
|
+
</component>
|
|
239
|
+
<component name="VcsContentAnnotationSettings">
|
|
240
|
+
<option name="myLimit" value="2678400000" />
|
|
241
|
+
</component>
|
|
242
|
+
<component name="VcsManagerConfiguration">
|
|
243
|
+
<option name="PERFORM_UPDATE_IN_BACKGROUND" value="false" />
|
|
244
|
+
<option name="PERFORM_EDIT_IN_BACKGROUND" value="false" />
|
|
245
|
+
<option name="PERFORM_CHECKOUT_IN_BACKGROUND" value="false" />
|
|
246
|
+
<option name="PERFORM_ADD_REMOVE_IN_BACKGROUND" value="false" />
|
|
247
|
+
</component>
|
|
248
|
+
<component name="XDebuggerManager">
|
|
249
|
+
<breakpoint-manager />
|
|
250
|
+
<watches-manager />
|
|
251
|
+
</component>
|
|
252
|
+
<component name="editorHistoryManager">
|
|
253
|
+
<entry file="file://$PROJECT_DIR$/mdb_basic_gem.gemspec">
|
|
254
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
255
|
+
<state relative-caret-position="306">
|
|
256
|
+
<caret line="18" column="62" lean-forward="false" selection-start-line="18" selection-start-column="62" selection-end-line="18" selection-end-column="62" />
|
|
257
|
+
<folding />
|
|
258
|
+
</state>
|
|
259
|
+
</provider>
|
|
260
|
+
</entry>
|
|
261
|
+
<entry file="file://$PROJECT_DIR$/bin/console">
|
|
262
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
263
|
+
<state relative-caret-position="0">
|
|
264
|
+
<caret line="0" column="0" lean-forward="false" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
265
|
+
<folding />
|
|
266
|
+
</state>
|
|
267
|
+
</provider>
|
|
268
|
+
</entry>
|
|
269
|
+
<entry file="file://$PROJECT_DIR$/bin/setup">
|
|
270
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
271
|
+
<state relative-caret-position="0">
|
|
272
|
+
<caret line="0" column="0" lean-forward="false" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
273
|
+
<folding />
|
|
274
|
+
</state>
|
|
275
|
+
</provider>
|
|
276
|
+
</entry>
|
|
277
|
+
<entry file="file://$PROJECT_DIR$/exe/mdb_basic_gem">
|
|
278
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
279
|
+
<state relative-caret-position="0">
|
|
280
|
+
<caret line="0" column="0" lean-forward="false" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
281
|
+
<folding />
|
|
282
|
+
</state>
|
|
283
|
+
</provider>
|
|
284
|
+
</entry>
|
|
285
|
+
<entry file="file://$PROJECT_DIR$/lib/mdb_basic_gem.rb">
|
|
286
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
287
|
+
<state relative-caret-position="136">
|
|
288
|
+
<caret line="8" column="38" lean-forward="false" selection-start-line="8" selection-start-column="38" selection-end-line="8" selection-end-column="38" />
|
|
289
|
+
<folding />
|
|
290
|
+
</state>
|
|
291
|
+
</provider>
|
|
292
|
+
</entry>
|
|
293
|
+
</component>
|
|
294
|
+
<component name="masterDetails">
|
|
295
|
+
<states>
|
|
296
|
+
<state key="ScopeChooserConfigurable.UI">
|
|
297
|
+
<settings>
|
|
298
|
+
<splitter-proportions>
|
|
299
|
+
<option name="proportions">
|
|
300
|
+
<list>
|
|
301
|
+
<option value="0.1796875" />
|
|
302
|
+
</list>
|
|
303
|
+
</option>
|
|
304
|
+
</splitter-proportions>
|
|
305
|
+
</settings>
|
|
306
|
+
</state>
|
|
307
|
+
</states>
|
|
308
|
+
</component>
|
|
309
|
+
</project>
|
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# MdbBasicGem
|
|
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/mdb_basic_gem`. 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 'mdb_basic_gem'
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
And then execute:
|
|
16
|
+
|
|
17
|
+
$ bundle
|
|
18
|
+
|
|
19
|
+
Or install it yourself as:
|
|
20
|
+
|
|
21
|
+
$ gem install mdb_basic_gem
|
|
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. Then, run `rake spec` to run the tests. 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]/mdb_basic_gem.
|
data/Rakefile
ADDED
data/bin/console
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require "bundler/setup"
|
|
4
|
+
require "mdb_basic_gem"
|
|
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(__FILE__)
|
data/bin/setup
ADDED
data/exe/mdb_basic_gem
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
|
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require "mdb_basic_gem/version"
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "mdb_basic_gem"
|
|
8
|
+
spec.version = MdbBasicGem::VERSION
|
|
9
|
+
spec.authors = ["matt-daniel-brown"]
|
|
10
|
+
spec.email = ["matt@dev.mattdanielbrown.com"]
|
|
11
|
+
|
|
12
|
+
spec.summary = %q{Just a test.}
|
|
13
|
+
spec.description = %q{Simple gem to test the process of writing, buiding, and publishing a gem.}
|
|
14
|
+
spec.homepage = "http://bitbucket.com/matt-daniel-brown/mdb_basic_gem"
|
|
15
|
+
|
|
16
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
|
17
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
|
18
|
+
if spec.respond_to?(:metadata)
|
|
19
|
+
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
|
20
|
+
else
|
|
21
|
+
raise "RubyGems 2.0 or newer is required to protect against " \
|
|
22
|
+
"public gem pushes."
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
26
|
+
f.match(%r{^(test|spec|features)/})
|
|
27
|
+
end
|
|
28
|
+
spec.bindir = "exe"
|
|
29
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
30
|
+
spec.require_paths = ["lib"]
|
|
31
|
+
|
|
32
|
+
spec.add_development_dependency "bundler", "~> 1.16"
|
|
33
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
|
34
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
|
35
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: mdb_basic_gem
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- matt-daniel-brown
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2017-11-22 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.16'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.16'
|
|
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
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: rspec
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '3.0'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '3.0'
|
|
55
|
+
description: Simple gem to test the process of writing, buiding, and publishing a
|
|
56
|
+
gem.
|
|
57
|
+
email:
|
|
58
|
+
- matt@dev.mattdanielbrown.com
|
|
59
|
+
executables:
|
|
60
|
+
- mdb_basic_gem
|
|
61
|
+
extensions: []
|
|
62
|
+
extra_rdoc_files: []
|
|
63
|
+
files:
|
|
64
|
+
- ".gitignore"
|
|
65
|
+
- ".idea/inspectionProfiles/Project_Default.xml"
|
|
66
|
+
- ".idea/mdb_basic_gem.iml"
|
|
67
|
+
- ".idea/modules.xml"
|
|
68
|
+
- ".idea/workspace.xml"
|
|
69
|
+
- ".rspec"
|
|
70
|
+
- ".travis.yml"
|
|
71
|
+
- Gemfile
|
|
72
|
+
- README.md
|
|
73
|
+
- Rakefile
|
|
74
|
+
- bin/console
|
|
75
|
+
- bin/setup
|
|
76
|
+
- exe/mdb_basic_gem
|
|
77
|
+
- lib/mdb_basic_gem.rb
|
|
78
|
+
- lib/mdb_basic_gem/version.rb
|
|
79
|
+
- mdb_basic_gem.gemspec
|
|
80
|
+
homepage: http://bitbucket.com/matt-daniel-brown/mdb_basic_gem
|
|
81
|
+
licenses: []
|
|
82
|
+
metadata:
|
|
83
|
+
allowed_push_host: https://rubygems.org
|
|
84
|
+
post_install_message:
|
|
85
|
+
rdoc_options: []
|
|
86
|
+
require_paths:
|
|
87
|
+
- lib
|
|
88
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
89
|
+
requirements:
|
|
90
|
+
- - ">="
|
|
91
|
+
- !ruby/object:Gem::Version
|
|
92
|
+
version: '0'
|
|
93
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
|
+
requirements:
|
|
95
|
+
- - ">="
|
|
96
|
+
- !ruby/object:Gem::Version
|
|
97
|
+
version: '0'
|
|
98
|
+
requirements: []
|
|
99
|
+
rubyforge_project:
|
|
100
|
+
rubygems_version: 2.6.14
|
|
101
|
+
signing_key:
|
|
102
|
+
specification_version: 4
|
|
103
|
+
summary: Just a test.
|
|
104
|
+
test_files: []
|