myRubyGem 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.
- data/.gitignore +14 -0
- data/.idea/.name +1 -0
- data/.idea/.rakeTasks +7 -0
- data/.idea/encodings.xml +5 -0
- data/.idea/misc.xml +5 -0
- data/.idea/modules.xml +9 -0
- data/.idea/myRubyGem.iml +47 -0
- data/.idea/scopes/scope_settings.xml +5 -0
- data/.idea/vcs.xml +7 -0
- data/.idea/workspace.xml +405 -0
- data/Gemfile +5 -0
- data/LICENSE.txt +22 -0
- data/README.md +31 -0
- data/Rakefile +2 -0
- data/lib/myRubyGem/version.rb +3 -0
- data/lib/myRubyGem.rb +65 -0
- data/myRubyGem.gemspec +23 -0
- metadata +101 -0
data/.gitignore
ADDED
data/.idea/.name
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
myRubyGem
|
data/.idea/.rakeTasks
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<Settings><!--This file was automatically generated by Ruby plugin.
|
3
|
+
You are allowed to:
|
4
|
+
1. Remove rake task
|
5
|
+
2. Add existing rake tasks
|
6
|
+
To add existing rake tasks automatically delete this file and reload the project.
|
7
|
+
--><RakeGroup description="" fullCmd="" taksId="rake"><RakeTask description="Build myRubyGem-0.0.1.gem into the pkg directory" fullCmd="build" taksId="build" /><RakeTask description="Build and install myRubyGem-0.0.1.gem into system gems" fullCmd="install" taksId="install" /><RakeTask description="Create tag v0.0.1 and build and push myRubyGem-0.0.1.gem to Rubygems" fullCmd="release" taksId="release" /></RakeGroup></Settings>
|
data/.idea/encodings.xml
ADDED
data/.idea/misc.xml
ADDED
data/.idea/modules.xml
ADDED
@@ -0,0 +1,9 @@
|
|
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/myRubyGem.iml" filepath="$PROJECT_DIR$/.idea/myRubyGem.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|
9
|
+
|
data/.idea/myRubyGem.iml
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
3
|
+
<component name="CompassSettings">
|
4
|
+
<option name="compassSupportEnabled" value="true" />
|
5
|
+
</component>
|
6
|
+
<component name="FacetManager">
|
7
|
+
<facet type="gem" name="Ruby Gem">
|
8
|
+
<configuration>
|
9
|
+
<option name="GEM_APP_ROOT_PATH" value="$MODULE_DIR$" />
|
10
|
+
<option name="GEM_APP_TEST_PATH" value="$MODULE_DIR$/test" />
|
11
|
+
<option name="GEM_APP_LIB_PATH" value="$MODULE_DIR$/lib" />
|
12
|
+
</configuration>
|
13
|
+
</facet>
|
14
|
+
</component>
|
15
|
+
<component name="ModuleRunConfigurationManager">
|
16
|
+
<configuration default="false" name="myRubyGem" type="RubyRunConfigurationType" factoryName="Ruby" temporary="true">
|
17
|
+
<module name="myRubyGem" />
|
18
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
19
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="$MODULE_DIR$/lib" />
|
20
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
21
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
22
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
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
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
28
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="$MODULE_DIR$/lib/myRubyGem.rb" />
|
29
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
30
|
+
<RunnerSettings RunnerId="RubyDebugRunner" />
|
31
|
+
<RunnerSettings RunnerId="RubyRunner" />
|
32
|
+
<ConfigurationWrapper RunnerId="RubyDebugRunner" />
|
33
|
+
<ConfigurationWrapper RunnerId="RubyRunner" />
|
34
|
+
<method />
|
35
|
+
</configuration>
|
36
|
+
</component>
|
37
|
+
<component name="NewModuleRootManager">
|
38
|
+
<content url="file://$MODULE_DIR$">
|
39
|
+
<sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
|
40
|
+
</content>
|
41
|
+
<orderEntry type="inheritedJdk" />
|
42
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
43
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.7.3, ruby-1.9.3-p484) [gem]" level="application" />
|
44
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v10.3.1, ruby-1.9.3-p484) [gem]" level="application" />
|
45
|
+
</component>
|
46
|
+
</module>
|
47
|
+
|
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
ADDED
@@ -0,0 +1,405 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ChangeListManager">
|
4
|
+
<list default="true" id="b61981ab-2cad-4aff-b442-a3e9893b29a6" name="Default" comment="" />
|
5
|
+
<ignored path="myRubyGem.iws" />
|
6
|
+
<ignored path=".idea/workspace.xml" />
|
7
|
+
<option name="TRACKING_ENABLED" value="true" />
|
8
|
+
<option name="SHOW_DIALOG" value="false" />
|
9
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
10
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
11
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
12
|
+
</component>
|
13
|
+
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
14
|
+
<component name="CoverageDataManager">
|
15
|
+
<SUITE FILE_PATH="coverage/myRubyGem@myRubyGem.coverage" NAME="myRubyGem Coverage Results" MODIFIED="1413804424477" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$/lib" MODULE_NAME="myRubyGem" />
|
16
|
+
</component>
|
17
|
+
<component name="CreatePatchCommitExecutor">
|
18
|
+
<option name="PATCH_PATH" value="" />
|
19
|
+
</component>
|
20
|
+
<component name="DaemonCodeAnalyzer">
|
21
|
+
<disable_hints />
|
22
|
+
</component>
|
23
|
+
<component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
|
24
|
+
<component name="FavoritesManager">
|
25
|
+
<favorites_list name="myRubyGem" />
|
26
|
+
</component>
|
27
|
+
<component name="FileEditorManager">
|
28
|
+
<leaf>
|
29
|
+
<file leaf-file-name="myRubyGem.rb" pinned="false" current="false" current-in-tab="false">
|
30
|
+
<entry file="file://$PROJECT_DIR$/lib/myRubyGem.rb">
|
31
|
+
<provider selected="true" editor-type-id="text-editor">
|
32
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="485" max-vertical-offset="1207">
|
33
|
+
<caret line="35" column="20" selection-start-line="35" selection-start-column="20" selection-end-line="35" selection-end-column="20" />
|
34
|
+
<folding />
|
35
|
+
</state>
|
36
|
+
</provider>
|
37
|
+
</entry>
|
38
|
+
</file>
|
39
|
+
<file leaf-file-name="myRubyGem.gemspec" pinned="false" current="true" current-in-tab="true">
|
40
|
+
<entry file="file://$PROJECT_DIR$/myRubyGem.gemspec">
|
41
|
+
<provider selected="true" editor-type-id="text-editor">
|
42
|
+
<state vertical-scroll-proportion="0.7526042" vertical-offset="51" max-vertical-offset="493">
|
43
|
+
<caret line="20" column="53" selection-start-line="20" selection-start-column="53" selection-end-line="20" selection-end-column="53" />
|
44
|
+
<folding />
|
45
|
+
</state>
|
46
|
+
</provider>
|
47
|
+
</entry>
|
48
|
+
</file>
|
49
|
+
<file leaf-file-name="version.rb" pinned="false" current="false" current-in-tab="false">
|
50
|
+
<entry file="file://$PROJECT_DIR$/lib/myRubyGem/version.rb">
|
51
|
+
<provider selected="true" editor-type-id="text-editor">
|
52
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="153">
|
53
|
+
<caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
54
|
+
<folding />
|
55
|
+
</state>
|
56
|
+
</provider>
|
57
|
+
</entry>
|
58
|
+
</file>
|
59
|
+
</leaf>
|
60
|
+
</component>
|
61
|
+
<component name="FindManager">
|
62
|
+
<FindUsagesManager>
|
63
|
+
<setting name="OPEN_NEW_TAB" value="true" />
|
64
|
+
</FindUsagesManager>
|
65
|
+
</component>
|
66
|
+
<component name="Git.Settings">
|
67
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
68
|
+
</component>
|
69
|
+
<component name="IdeDocumentHistory">
|
70
|
+
<option name="changedFiles">
|
71
|
+
<list>
|
72
|
+
<option value="$PROJECT_DIR$/lib/myRubyGem.rb" />
|
73
|
+
<option value="$PROJECT_DIR$/Gemfile" />
|
74
|
+
<option value="$PROJECT_DIR$/myRubyGem.gemspec" />
|
75
|
+
</list>
|
76
|
+
</option>
|
77
|
+
</component>
|
78
|
+
<component name="ProjectFrameBounds">
|
79
|
+
<option name="x" value="10" />
|
80
|
+
<option name="width" value="1346" />
|
81
|
+
<option name="height" value="728" />
|
82
|
+
</component>
|
83
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="true">
|
84
|
+
<OptionsSetting value="true" id="Add" />
|
85
|
+
<OptionsSetting value="true" id="Remove" />
|
86
|
+
<OptionsSetting value="true" id="Checkout" />
|
87
|
+
<OptionsSetting value="true" id="Update" />
|
88
|
+
<OptionsSetting value="true" id="Status" />
|
89
|
+
<OptionsSetting value="true" id="Edit" />
|
90
|
+
<ConfirmationsSetting value="0" id="Add" />
|
91
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
92
|
+
</component>
|
93
|
+
<component name="ProjectReloadState">
|
94
|
+
<option name="STATE" value="0" />
|
95
|
+
</component>
|
96
|
+
<component name="ProjectView">
|
97
|
+
<navigator currentView="ProjectPane" proportions="" version="1">
|
98
|
+
<flattenPackages />
|
99
|
+
<showMembers />
|
100
|
+
<showModules />
|
101
|
+
<showLibraryContents />
|
102
|
+
<hideEmptyPackages />
|
103
|
+
<abbreviatePackageNames />
|
104
|
+
<autoscrollToSource />
|
105
|
+
<autoscrollFromSource />
|
106
|
+
<sortByType />
|
107
|
+
</navigator>
|
108
|
+
<panes>
|
109
|
+
<pane id="ProjectPane">
|
110
|
+
<subPane>
|
111
|
+
<PATH>
|
112
|
+
<PATH_ELEMENT>
|
113
|
+
<option name="myItemId" value="myRubyGem" />
|
114
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
115
|
+
</PATH_ELEMENT>
|
116
|
+
</PATH>
|
117
|
+
<PATH>
|
118
|
+
<PATH_ELEMENT>
|
119
|
+
<option name="myItemId" value="myRubyGem" />
|
120
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
121
|
+
</PATH_ELEMENT>
|
122
|
+
<PATH_ELEMENT>
|
123
|
+
<option name="myItemId" value="myRubyGem" />
|
124
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
125
|
+
</PATH_ELEMENT>
|
126
|
+
</PATH>
|
127
|
+
<PATH>
|
128
|
+
<PATH_ELEMENT>
|
129
|
+
<option name="myItemId" value="myRubyGem" />
|
130
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
131
|
+
</PATH_ELEMENT>
|
132
|
+
<PATH_ELEMENT>
|
133
|
+
<option name="myItemId" value="myRubyGem" />
|
134
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
135
|
+
</PATH_ELEMENT>
|
136
|
+
<PATH_ELEMENT>
|
137
|
+
<option name="myItemId" value="lib" />
|
138
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
139
|
+
</PATH_ELEMENT>
|
140
|
+
</PATH>
|
141
|
+
<PATH>
|
142
|
+
<PATH_ELEMENT>
|
143
|
+
<option name="myItemId" value="myRubyGem" />
|
144
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
145
|
+
</PATH_ELEMENT>
|
146
|
+
<PATH_ELEMENT>
|
147
|
+
<option name="myItemId" value="myRubyGem" />
|
148
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
149
|
+
</PATH_ELEMENT>
|
150
|
+
<PATH_ELEMENT>
|
151
|
+
<option name="myItemId" value="lib" />
|
152
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
153
|
+
</PATH_ELEMENT>
|
154
|
+
<PATH_ELEMENT>
|
155
|
+
<option name="myItemId" value="myRubyGem" />
|
156
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
157
|
+
</PATH_ELEMENT>
|
158
|
+
</PATH>
|
159
|
+
</subPane>
|
160
|
+
</pane>
|
161
|
+
<pane id="Scope" />
|
162
|
+
</panes>
|
163
|
+
</component>
|
164
|
+
<component name="PropertiesComponent">
|
165
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
166
|
+
<property name="recentsLimit" value="5" />
|
167
|
+
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
168
|
+
<property name="ChangesBrowser.SHOW_FLATTEN" value="true" />
|
169
|
+
<property name="WebServerToolWindowPanel.toolwindow.show.size" value="false" />
|
170
|
+
<property name="WebServerToolWindowPanel.toolwindow.show.date" value="false" />
|
171
|
+
<property name="WebServerToolWindowPanel.toolwindow.show.permissions" value="false" />
|
172
|
+
<property name="WebServerToolWindowPanel.toolwindow.highlight.symlinks" value="true" />
|
173
|
+
<property name="WebServerToolWindowPanel.toolwindow.highlight.mappings" value="true" />
|
174
|
+
</component>
|
175
|
+
<component name="RunManager" selected="Ruby.myRubyGem">
|
176
|
+
<configuration default="false" name="myRubyGem" type="RubyRunConfigurationType" factoryName="Ruby" temporary="true">
|
177
|
+
<module name="myRubyGem" />
|
178
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
179
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="$MODULE_DIR$/lib" />
|
180
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
181
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
182
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
183
|
+
<envs />
|
184
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
185
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
186
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov" />
|
187
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
188
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="$MODULE_DIR$/lib/myRubyGem.rb" />
|
189
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
190
|
+
<RunnerSettings RunnerId="RubyDebugRunner" />
|
191
|
+
<RunnerSettings RunnerId="RubyRunner" />
|
192
|
+
<ConfigurationWrapper RunnerId="RubyDebugRunner" />
|
193
|
+
<ConfigurationWrapper RunnerId="RubyRunner" />
|
194
|
+
<method />
|
195
|
+
</configuration>
|
196
|
+
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
197
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
198
|
+
<module name="" />
|
199
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
200
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
201
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
202
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
203
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
204
|
+
<envs />
|
205
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
206
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
207
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov" />
|
208
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
209
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
210
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
211
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
212
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
213
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
214
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
215
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
216
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
217
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
218
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
219
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
220
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
221
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
222
|
+
<method />
|
223
|
+
</configuration>
|
224
|
+
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
225
|
+
<module name="" />
|
226
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
227
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
228
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
229
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
230
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
231
|
+
<envs />
|
232
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
233
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
234
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov" />
|
235
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
236
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
237
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
238
|
+
<method />
|
239
|
+
</configuration>
|
240
|
+
<configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug">
|
241
|
+
<method />
|
242
|
+
</configuration>
|
243
|
+
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
244
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
245
|
+
<module name="" />
|
246
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
247
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
248
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
249
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
250
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
251
|
+
<envs />
|
252
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
253
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
254
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov" />
|
255
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
256
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
257
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
258
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
259
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
260
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
261
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
262
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
263
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
264
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
265
|
+
<method />
|
266
|
+
</configuration>
|
267
|
+
<list size="1">
|
268
|
+
<item index="0" class="java.lang.String" itemvalue="Ruby.myRubyGem" />
|
269
|
+
</list>
|
270
|
+
<recent_temporary>
|
271
|
+
<list size="1">
|
272
|
+
<item index="0" class="java.lang.String" itemvalue="Ruby.myRubyGem" />
|
273
|
+
</list>
|
274
|
+
</recent_temporary>
|
275
|
+
</component>
|
276
|
+
<component name="ShelveChangesManager" show_recycled="false" />
|
277
|
+
<component name="SvnConfiguration">
|
278
|
+
<configuration />
|
279
|
+
</component>
|
280
|
+
<component name="TaskManager">
|
281
|
+
<task active="true" id="Default" summary="Default task">
|
282
|
+
<changelist id="b61981ab-2cad-4aff-b442-a3e9893b29a6" name="Default" comment="" />
|
283
|
+
<created>1413801482693</created>
|
284
|
+
<updated>1413801482693</updated>
|
285
|
+
</task>
|
286
|
+
<task id="LOCAL-00001" summary="initial commit">
|
287
|
+
<created>1413802779833</created>
|
288
|
+
<updated>1413802779833</updated>
|
289
|
+
</task>
|
290
|
+
<task id="LOCAL-00002" summary="third commit">
|
291
|
+
<created>1413804581391</created>
|
292
|
+
<updated>1413804581391</updated>
|
293
|
+
</task>
|
294
|
+
<option name="localTasksCounter" value="3" />
|
295
|
+
<servers />
|
296
|
+
</component>
|
297
|
+
<component name="ToolWindowManager">
|
298
|
+
<frame x="10" y="0" width="1346" height="728" extended-state="0" />
|
299
|
+
<editor active="true" />
|
300
|
+
<layout>
|
301
|
+
<window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
302
|
+
<window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32744783" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
303
|
+
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.31578946" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
304
|
+
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
305
|
+
<window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
306
|
+
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
307
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.25776398" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
308
|
+
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3993808" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
309
|
+
<window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="true" content_ui="tabs" />
|
310
|
+
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.31621188" sideWeight="0.5" order="-1" side_tool="true" content_ui="tabs" />
|
311
|
+
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.34189406" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
312
|
+
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32744783" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
313
|
+
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
|
314
|
+
<window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
315
|
+
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
316
|
+
<window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
317
|
+
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="SLIDING" type="SLIDING" visible="false" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
318
|
+
<window_info id="Remote Host" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32996893" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
319
|
+
<window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
|
320
|
+
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
|
321
|
+
</layout>
|
322
|
+
</component>
|
323
|
+
<component name="Vcs.Log.UiProperties">
|
324
|
+
<option name="RECENTLY_FILTERED_USER_GROUPS">
|
325
|
+
<collection />
|
326
|
+
</option>
|
327
|
+
<option name="RECENTLY_FILTERED_BRANCH_GROUPS">
|
328
|
+
<collection />
|
329
|
+
</option>
|
330
|
+
</component>
|
331
|
+
<component name="VcsContentAnnotationSettings">
|
332
|
+
<option name="myLimit" value="2678400000" />
|
333
|
+
</component>
|
334
|
+
<component name="VcsManagerConfiguration">
|
335
|
+
<option name="myTodoPanelSettings">
|
336
|
+
<TodoPanelSettings />
|
337
|
+
</option>
|
338
|
+
<MESSAGE value="initial commit" />
|
339
|
+
<MESSAGE value="third commit" />
|
340
|
+
<option name="LAST_COMMIT_MESSAGE" value="third commit" />
|
341
|
+
</component>
|
342
|
+
<component name="XDebuggerManager">
|
343
|
+
<breakpoint-manager>
|
344
|
+
<breakpoints>
|
345
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
346
|
+
<url>file://$PROJECT_DIR$/lib/myRubyGem.rb</url>
|
347
|
+
<line>43</line>
|
348
|
+
<option name="timeStamp" value="3" />
|
349
|
+
</line-breakpoint>
|
350
|
+
</breakpoints>
|
351
|
+
<option name="time" value="4" />
|
352
|
+
</breakpoint-manager>
|
353
|
+
</component>
|
354
|
+
<component name="editorHistoryManager">
|
355
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
356
|
+
<provider selected="true" editor-type-id="text-editor">
|
357
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="362">
|
358
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
359
|
+
<folding />
|
360
|
+
</state>
|
361
|
+
</provider>
|
362
|
+
</entry>
|
363
|
+
<entry file="file://$PROJECT_DIR$/lib/myRubyGem.rb">
|
364
|
+
<provider selected="true" editor-type-id="text-editor">
|
365
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="485" max-vertical-offset="1207">
|
366
|
+
<caret line="35" column="20" selection-start-line="35" selection-start-column="20" selection-end-line="35" selection-end-column="20" />
|
367
|
+
<folding />
|
368
|
+
</state>
|
369
|
+
</provider>
|
370
|
+
</entry>
|
371
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
372
|
+
<provider selected="true" editor-type-id="text-editor">
|
373
|
+
<state vertical-scroll-proportion="0.1328125" vertical-offset="0" max-vertical-offset="384">
|
374
|
+
<caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
375
|
+
<folding />
|
376
|
+
</state>
|
377
|
+
</provider>
|
378
|
+
</entry>
|
379
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
380
|
+
<provider selected="true" editor-type-id="text-editor">
|
381
|
+
<state vertical-scroll-proportion="0.30640668" vertical-offset="43" max-vertical-offset="629">
|
382
|
+
<caret line="9" column="15" selection-start-line="9" selection-start-column="15" selection-end-line="9" selection-end-column="15" />
|
383
|
+
<folding />
|
384
|
+
</state>
|
385
|
+
</provider>
|
386
|
+
</entry>
|
387
|
+
<entry file="file://$PROJECT_DIR$/lib/myRubyGem/version.rb">
|
388
|
+
<provider selected="true" editor-type-id="text-editor">
|
389
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="153">
|
390
|
+
<caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
391
|
+
<folding />
|
392
|
+
</state>
|
393
|
+
</provider>
|
394
|
+
</entry>
|
395
|
+
<entry file="file://$PROJECT_DIR$/myRubyGem.gemspec">
|
396
|
+
<provider selected="true" editor-type-id="text-editor">
|
397
|
+
<state vertical-scroll-proportion="0.7526042" vertical-offset="51" max-vertical-offset="493">
|
398
|
+
<caret line="20" column="53" selection-start-line="20" selection-start-column="53" selection-end-line="20" selection-end-column="53" />
|
399
|
+
<folding />
|
400
|
+
</state>
|
401
|
+
</provider>
|
402
|
+
</entry>
|
403
|
+
</component>
|
404
|
+
</project>
|
405
|
+
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 joinabhimanyu
|
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,31 @@
|
|
1
|
+
# MyRubyGem
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'myRubyGem'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install myRubyGem
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
TODO: Write usage instructions here
|
24
|
+
|
25
|
+
## Contributing
|
26
|
+
|
27
|
+
1. Fork it ( https://github.com/[my-github-username]/myRubyGem/fork )
|
28
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
29
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
30
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
31
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
data/lib/myRubyGem.rb
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
require "myRubyGem/version"
|
2
|
+
|
3
|
+
module MyRubyGem
|
4
|
+
class Pet
|
5
|
+
def initialize(name, gender, color)
|
6
|
+
@name, @gender, @color = name, gender, color
|
7
|
+
end
|
8
|
+
|
9
|
+
def showName
|
10
|
+
puts "Name: #{@name}"
|
11
|
+
end
|
12
|
+
|
13
|
+
def showGender
|
14
|
+
puts "Gender: #{@gender}"
|
15
|
+
end
|
16
|
+
|
17
|
+
def showColor
|
18
|
+
puts "Color: #{@color}"
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
class Dog < Pet
|
23
|
+
def initialize(name, gender, color, sound)
|
24
|
+
super(name, gender, color)
|
25
|
+
@sound = sound
|
26
|
+
end
|
27
|
+
|
28
|
+
def bark
|
29
|
+
puts "Dog #{@sound}"
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
class Cat < Pet
|
34
|
+
def initialize(name, gender, color, nails)
|
35
|
+
super(name, gender, color)
|
36
|
+
@nails = nails
|
37
|
+
end
|
38
|
+
|
39
|
+
def scratch
|
40
|
+
puts "Cat scratches with #{@nails} nails"
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
dog = Dog.new("dog", "f", "black", "barks")
|
45
|
+
dog.showName
|
46
|
+
dog.showGender
|
47
|
+
dog.showColor
|
48
|
+
dog.bark
|
49
|
+
|
50
|
+
cat = Cat.new("cat", "male", "white", "long")
|
51
|
+
cat.showName
|
52
|
+
cat.showGender
|
53
|
+
cat.showColor
|
54
|
+
cat.scratch
|
55
|
+
|
56
|
+
puts "Program terminated"
|
57
|
+
puts "Yet another dialog"
|
58
|
+
|
59
|
+
end
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
|
data/myRubyGem.gemspec
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 'myRubyGem/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "myRubyGem"
|
8
|
+
spec.version = MyRubyGem::VERSION
|
9
|
+
spec.authors = ["joinabhimanyu"]
|
10
|
+
spec.email = ["joinabhimanyu@gmail.com"]
|
11
|
+
spec.summary = "myRubyGem!"
|
12
|
+
spec.description = "a simple gem for pets"
|
13
|
+
spec.homepage = "http://rubygems.org/gems/myRubyGem"
|
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.7"
|
22
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
23
|
+
end
|
metadata
ADDED
@@ -0,0 +1,101 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: myRubyGem
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- joinabhimanyu
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2014-10-20 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: bundler
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '1.7'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.7'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: rake
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ~>
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '10.0'
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '10.0'
|
46
|
+
description: a simple gem for pets
|
47
|
+
email:
|
48
|
+
- joinabhimanyu@gmail.com
|
49
|
+
executables: []
|
50
|
+
extensions: []
|
51
|
+
extra_rdoc_files: []
|
52
|
+
files:
|
53
|
+
- .gitignore
|
54
|
+
- .idea/.name
|
55
|
+
- .idea/.rakeTasks
|
56
|
+
- .idea/encodings.xml
|
57
|
+
- .idea/misc.xml
|
58
|
+
- .idea/modules.xml
|
59
|
+
- .idea/myRubyGem.iml
|
60
|
+
- .idea/scopes/scope_settings.xml
|
61
|
+
- .idea/vcs.xml
|
62
|
+
- .idea/workspace.xml
|
63
|
+
- Gemfile
|
64
|
+
- LICENSE.txt
|
65
|
+
- README.md
|
66
|
+
- Rakefile
|
67
|
+
- lib/myRubyGem.rb
|
68
|
+
- lib/myRubyGem/version.rb
|
69
|
+
- myRubyGem.gemspec
|
70
|
+
homepage: http://rubygems.org/gems/myRubyGem
|
71
|
+
licenses:
|
72
|
+
- MIT
|
73
|
+
post_install_message:
|
74
|
+
rdoc_options: []
|
75
|
+
require_paths:
|
76
|
+
- lib
|
77
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
78
|
+
none: false
|
79
|
+
requirements:
|
80
|
+
- - ! '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
segments:
|
84
|
+
- 0
|
85
|
+
hash: -365831999
|
86
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
87
|
+
none: false
|
88
|
+
requirements:
|
89
|
+
- - ! '>='
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: '0'
|
92
|
+
segments:
|
93
|
+
- 0
|
94
|
+
hash: -365831999
|
95
|
+
requirements: []
|
96
|
+
rubyforge_project:
|
97
|
+
rubygems_version: 1.8.28
|
98
|
+
signing_key:
|
99
|
+
specification_version: 3
|
100
|
+
summary: myRubyGem!
|
101
|
+
test_files: []
|