yuimai-test-pkg 0.0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/.idea/.name +1 -0
- data/.idea/compiler.xml +22 -0
- data/.idea/copyright/profiles_settings.xml +3 -0
- data/.idea/misc.xml +42 -0
- data/.idea/modules.xml +8 -0
- data/.idea/vcs.xml +6 -0
- data/.idea/workspace.xml +281 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +31 -0
- data/Rakefile +2 -0
- data/lib/yuimai/test/pkg.rb +9 -0
- data/lib/yuimai/test/pkg/version.rb +7 -0
- data/yuimai-test-pkg.gemspec +23 -0
- data/yuimai-test-pkg.iml +22 -0
- metadata +89 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 2219d80efff9454282803bfdeca38435aa85d9e7
|
|
4
|
+
data.tar.gz: 5af6bc6606f02dd27b724dd6d9630eac1cb798c7
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 595ec5a5281fca61a4ceac6c01996fc89a6a5aa9c667ad3f18904c816c89ceca87d11bc4d3069b7f9f0067bfaa59970b04213a52e62dc764e179056c14ee35e6
|
|
7
|
+
data.tar.gz: f15938496ad562f59780dfc3955cd9c8d31cbbb0b8cb04863889bbbcb292bfdcbad7c1063558d86c9436d06d019a96073bc32999097953f219ea7dfb802a9f2a
|
data/.gitignore
ADDED
data/.idea/.name
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
yuimai-test-pkg
|
data/.idea/compiler.xml
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="CompilerConfiguration">
|
|
4
|
+
<option name="DEFAULT_COMPILER" value="Javac" />
|
|
5
|
+
<resourceExtensions />
|
|
6
|
+
<wildcardResourcePatterns>
|
|
7
|
+
<entry name="!?*.java" />
|
|
8
|
+
<entry name="!?*.form" />
|
|
9
|
+
<entry name="!?*.class" />
|
|
10
|
+
<entry name="!?*.groovy" />
|
|
11
|
+
<entry name="!?*.scala" />
|
|
12
|
+
<entry name="!?*.flex" />
|
|
13
|
+
<entry name="!?*.kt" />
|
|
14
|
+
<entry name="!?*.clj" />
|
|
15
|
+
</wildcardResourcePatterns>
|
|
16
|
+
<annotationProcessing>
|
|
17
|
+
<profile default="true" name="Default" enabled="false">
|
|
18
|
+
<processorPath useClasspath="true" />
|
|
19
|
+
</profile>
|
|
20
|
+
</annotationProcessing>
|
|
21
|
+
</component>
|
|
22
|
+
</project>
|
data/.idea/misc.xml
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="EmacsSettings">
|
|
4
|
+
<option name="emacsPath" value="/usr/bin/emacs" />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="MavenImportPreferences">
|
|
7
|
+
<option name="generalSettings">
|
|
8
|
+
<MavenGeneralSettings>
|
|
9
|
+
<option name="mavenHome" value="Bundled (Maven 3)" />
|
|
10
|
+
</MavenGeneralSettings>
|
|
11
|
+
</option>
|
|
12
|
+
</component>
|
|
13
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
|
14
|
+
<OptionsSetting value="true" id="Add" />
|
|
15
|
+
<OptionsSetting value="true" id="Remove" />
|
|
16
|
+
<OptionsSetting value="true" id="Checkout" />
|
|
17
|
+
<OptionsSetting value="true" id="Update" />
|
|
18
|
+
<OptionsSetting value="true" id="Status" />
|
|
19
|
+
<OptionsSetting value="true" id="Edit" />
|
|
20
|
+
<ConfirmationsSetting value="0" id="Add" />
|
|
21
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
|
22
|
+
</component>
|
|
23
|
+
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_3" assert-keyword="false" jdk-15="false" project-jdk-name="rbenv: 2.1.1" project-jdk-type="RUBY_SDK">
|
|
24
|
+
<output url="file://$PROJECT_DIR$/out" />
|
|
25
|
+
</component>
|
|
26
|
+
<component name="masterDetails">
|
|
27
|
+
<states>
|
|
28
|
+
<state key="ProjectJDKs.UI">
|
|
29
|
+
<settings>
|
|
30
|
+
<last-edited>1.7</last-edited>
|
|
31
|
+
<splitter-proportions>
|
|
32
|
+
<option name="proportions">
|
|
33
|
+
<list>
|
|
34
|
+
<option value="0.2" />
|
|
35
|
+
</list>
|
|
36
|
+
</option>
|
|
37
|
+
</splitter-proportions>
|
|
38
|
+
</settings>
|
|
39
|
+
</state>
|
|
40
|
+
</states>
|
|
41
|
+
</component>
|
|
42
|
+
</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$/yuimai-test-pkg.iml" filepath="$PROJECT_DIR$/yuimai-test-pkg.iml" />
|
|
6
|
+
</modules>
|
|
7
|
+
</component>
|
|
8
|
+
</project>
|
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
ADDED
|
@@ -0,0 +1,281 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ChangeListManager">
|
|
4
|
+
<list default="true" id="0d3eb3d9-47c1-4408-ad8f-006d5b0f2178" name="Default" comment="">
|
|
5
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.gitignore" />
|
|
6
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/.name" />
|
|
7
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/Gemfile" />
|
|
8
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/LICENSE.txt" />
|
|
9
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/README.md" />
|
|
10
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/Rakefile" />
|
|
11
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/compiler.xml" />
|
|
12
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/misc.xml" />
|
|
13
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/modules.xml" />
|
|
14
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/lib/yuimai/test/pkg.rb" />
|
|
15
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/copyright/profiles_settings.xml" />
|
|
16
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/vcs.xml" />
|
|
17
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/lib/yuimai/test/pkg/version.rb" />
|
|
18
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
|
|
19
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/yuimai-test-pkg.gemspec" />
|
|
20
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/yuimai-test-pkg.iml" />
|
|
21
|
+
</list>
|
|
22
|
+
<ignored path="yuimai-test-pkg.iws" />
|
|
23
|
+
<ignored path=".idea/workspace.xml" />
|
|
24
|
+
<ignored path="$PROJECT_DIR$/out/" />
|
|
25
|
+
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
|
26
|
+
<option name="TRACKING_ENABLED" value="true" />
|
|
27
|
+
<option name="SHOW_DIALOG" value="false" />
|
|
28
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
29
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
30
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
31
|
+
</component>
|
|
32
|
+
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
|
33
|
+
<component name="CreatePatchCommitExecutor">
|
|
34
|
+
<option name="PATCH_PATH" value="" />
|
|
35
|
+
</component>
|
|
36
|
+
<component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
|
|
37
|
+
<component name="FavoritesManager">
|
|
38
|
+
<favorites_list name="yuimai-test-pkg" />
|
|
39
|
+
</component>
|
|
40
|
+
<component name="Git.Settings">
|
|
41
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
42
|
+
</component>
|
|
43
|
+
<component name="GradleLocalSettings">
|
|
44
|
+
<option name="externalProjectsViewState">
|
|
45
|
+
<projects_view />
|
|
46
|
+
</option>
|
|
47
|
+
</component>
|
|
48
|
+
<component name="JsBuildToolGruntFileManager" detection-done="true" />
|
|
49
|
+
<component name="JsGulpfileManager">
|
|
50
|
+
<detection-done>true</detection-done>
|
|
51
|
+
</component>
|
|
52
|
+
<component name="NamedScopeManager">
|
|
53
|
+
<order />
|
|
54
|
+
</component>
|
|
55
|
+
<component name="PhpServers">
|
|
56
|
+
<servers />
|
|
57
|
+
</component>
|
|
58
|
+
<component name="PhpWorkspaceProjectConfiguration" backward_compatibility_performed="true" />
|
|
59
|
+
<component name="ProjectFrameBounds">
|
|
60
|
+
<option name="y" value="23" />
|
|
61
|
+
<option name="width" value="1440" />
|
|
62
|
+
<option name="height" value="852" />
|
|
63
|
+
</component>
|
|
64
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
|
65
|
+
<OptionsSetting value="true" id="Add" />
|
|
66
|
+
<OptionsSetting value="true" id="Remove" />
|
|
67
|
+
<OptionsSetting value="true" id="Checkout" />
|
|
68
|
+
<OptionsSetting value="true" id="Update" />
|
|
69
|
+
<OptionsSetting value="true" id="Status" />
|
|
70
|
+
<OptionsSetting value="true" id="Edit" />
|
|
71
|
+
<ConfirmationsSetting value="0" id="Add" />
|
|
72
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
|
73
|
+
</component>
|
|
74
|
+
<component name="ProjectView">
|
|
75
|
+
<navigator currentView="ProjectPane" proportions="" version="1">
|
|
76
|
+
<flattenPackages />
|
|
77
|
+
<showMembers />
|
|
78
|
+
<showModules />
|
|
79
|
+
<showLibraryContents />
|
|
80
|
+
<hideEmptyPackages />
|
|
81
|
+
<abbreviatePackageNames />
|
|
82
|
+
<autoscrollToSource />
|
|
83
|
+
<autoscrollFromSource />
|
|
84
|
+
<sortByType />
|
|
85
|
+
</navigator>
|
|
86
|
+
<panes>
|
|
87
|
+
<pane id="Scope" />
|
|
88
|
+
<pane id="ProjectPane">
|
|
89
|
+
<subPane>
|
|
90
|
+
<PATH>
|
|
91
|
+
<PATH_ELEMENT>
|
|
92
|
+
<option name="myItemId" value="yuimai-test-pkg" />
|
|
93
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
94
|
+
</PATH_ELEMENT>
|
|
95
|
+
</PATH>
|
|
96
|
+
<PATH>
|
|
97
|
+
<PATH_ELEMENT>
|
|
98
|
+
<option name="myItemId" value="yuimai-test-pkg" />
|
|
99
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
100
|
+
</PATH_ELEMENT>
|
|
101
|
+
<PATH_ELEMENT>
|
|
102
|
+
<option name="myItemId" value="yuimai-test-pkg" />
|
|
103
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
104
|
+
</PATH_ELEMENT>
|
|
105
|
+
</PATH>
|
|
106
|
+
</subPane>
|
|
107
|
+
</pane>
|
|
108
|
+
<pane id="PackagesPane" />
|
|
109
|
+
<pane id="Scratches" />
|
|
110
|
+
</panes>
|
|
111
|
+
</component>
|
|
112
|
+
<component name="PropertiesComponent">
|
|
113
|
+
<property name="GoToClass.includeLibraries" value="false" />
|
|
114
|
+
<property name="GoToClass.toSaveIncludeLibraries" value="false" />
|
|
115
|
+
<property name="GoToFile.includeJavaFiles" value="false" />
|
|
116
|
+
<property name="MemberChooser.sorted" value="false" />
|
|
117
|
+
<property name="MemberChooser.showClasses" value="true" />
|
|
118
|
+
<property name="MemberChooser.copyJavadoc" value="false" />
|
|
119
|
+
<property name="last_opened_file_path" value="$USER_HOME$/IdeaProjects" />
|
|
120
|
+
<property name="aspect.path.notification.shown" value="true" />
|
|
121
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
|
122
|
+
<property name="FullScreen" value="false" />
|
|
123
|
+
</component>
|
|
124
|
+
<component name="RunManager">
|
|
125
|
+
<configuration default="true" type="#org.jetbrains.idea.devkit.run.PluginConfigurationType" factoryName="Plugin">
|
|
126
|
+
<module name="" />
|
|
127
|
+
<option name="VM_PARAMETERS" value="-Xmx512m -Xms256m -XX:MaxPermSize=250m -ea" />
|
|
128
|
+
<option name="PROGRAM_PARAMETERS" />
|
|
129
|
+
<method />
|
|
130
|
+
</configuration>
|
|
131
|
+
<configuration default="true" type="Applet" factoryName="Applet">
|
|
132
|
+
<option name="WIDTH" value="400" />
|
|
133
|
+
<option name="HEIGHT" value="300" />
|
|
134
|
+
<option name="POLICY_FILE" value="$APPLICATION_HOME_DIR$/bin/appletviewer.policy" />
|
|
135
|
+
<module />
|
|
136
|
+
<method />
|
|
137
|
+
</configuration>
|
|
138
|
+
<configuration default="true" type="Application" factoryName="Application">
|
|
139
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
|
140
|
+
<option name="MAIN_CLASS_NAME" />
|
|
141
|
+
<option name="VM_PARAMETERS" />
|
|
142
|
+
<option name="PROGRAM_PARAMETERS" />
|
|
143
|
+
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
|
|
144
|
+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
|
145
|
+
<option name="ALTERNATIVE_JRE_PATH" />
|
|
146
|
+
<option name="ENABLE_SWING_INSPECTOR" value="false" />
|
|
147
|
+
<option name="ENV_VARIABLES" />
|
|
148
|
+
<option name="PASS_PARENT_ENVS" value="true" />
|
|
149
|
+
<module name="" />
|
|
150
|
+
<envs />
|
|
151
|
+
<method />
|
|
152
|
+
</configuration>
|
|
153
|
+
<configuration default="true" type="JUnit" factoryName="JUnit">
|
|
154
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
|
155
|
+
<module name="" />
|
|
156
|
+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
|
157
|
+
<option name="ALTERNATIVE_JRE_PATH" />
|
|
158
|
+
<option name="PACKAGE_NAME" />
|
|
159
|
+
<option name="MAIN_CLASS_NAME" />
|
|
160
|
+
<option name="METHOD_NAME" />
|
|
161
|
+
<option name="TEST_OBJECT" value="class" />
|
|
162
|
+
<option name="VM_PARAMETERS" value="-ea" />
|
|
163
|
+
<option name="PARAMETERS" />
|
|
164
|
+
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
|
|
165
|
+
<option name="ENV_VARIABLES" />
|
|
166
|
+
<option name="PASS_PARENT_ENVS" value="true" />
|
|
167
|
+
<option name="TEST_SEARCH_SCOPE">
|
|
168
|
+
<value defaultName="moduleWithDependencies" />
|
|
169
|
+
</option>
|
|
170
|
+
<envs />
|
|
171
|
+
<patterns />
|
|
172
|
+
<method />
|
|
173
|
+
</configuration>
|
|
174
|
+
<configuration default="true" type="Remote" factoryName="Remote">
|
|
175
|
+
<option name="USE_SOCKET_TRANSPORT" value="true" />
|
|
176
|
+
<option name="SERVER_MODE" value="false" />
|
|
177
|
+
<option name="SHMEM_ADDRESS" value="javadebug" />
|
|
178
|
+
<option name="HOST" value="localhost" />
|
|
179
|
+
<option name="PORT" value="5005" />
|
|
180
|
+
<method />
|
|
181
|
+
</configuration>
|
|
182
|
+
<configuration default="true" type="TestNG" factoryName="TestNG">
|
|
183
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
|
184
|
+
<module name="" />
|
|
185
|
+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
|
186
|
+
<option name="ALTERNATIVE_JRE_PATH" />
|
|
187
|
+
<option name="SUITE_NAME" />
|
|
188
|
+
<option name="PACKAGE_NAME" />
|
|
189
|
+
<option name="MAIN_CLASS_NAME" />
|
|
190
|
+
<option name="METHOD_NAME" />
|
|
191
|
+
<option name="GROUP_NAME" />
|
|
192
|
+
<option name="TEST_OBJECT" value="CLASS" />
|
|
193
|
+
<option name="VM_PARAMETERS" value="-ea" />
|
|
194
|
+
<option name="PARAMETERS" />
|
|
195
|
+
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
|
|
196
|
+
<option name="OUTPUT_DIRECTORY" />
|
|
197
|
+
<option name="ANNOTATION_TYPE" />
|
|
198
|
+
<option name="ENV_VARIABLES" />
|
|
199
|
+
<option name="PASS_PARENT_ENVS" value="true" />
|
|
200
|
+
<option name="TEST_SEARCH_SCOPE">
|
|
201
|
+
<value defaultName="moduleWithDependencies" />
|
|
202
|
+
</option>
|
|
203
|
+
<option name="USE_DEFAULT_REPORTERS" value="false" />
|
|
204
|
+
<option name="PROPERTIES_FILE" />
|
|
205
|
+
<envs />
|
|
206
|
+
<properties />
|
|
207
|
+
<listeners />
|
|
208
|
+
<method />
|
|
209
|
+
</configuration>
|
|
210
|
+
<configuration name="<template>" type="WebApp" default="true" selected="false">
|
|
211
|
+
<Host>localhost</Host>
|
|
212
|
+
<Port>5050</Port>
|
|
213
|
+
</configuration>
|
|
214
|
+
</component>
|
|
215
|
+
<component name="SbtLocalSettings">
|
|
216
|
+
<option name="externalProjectsViewState">
|
|
217
|
+
<projects_view />
|
|
218
|
+
</option>
|
|
219
|
+
</component>
|
|
220
|
+
<component name="ShelveChangesManager" show_recycled="false" />
|
|
221
|
+
<component name="SvnConfiguration">
|
|
222
|
+
<configuration />
|
|
223
|
+
</component>
|
|
224
|
+
<component name="TaskManager">
|
|
225
|
+
<task active="true" id="Default" summary="Default task">
|
|
226
|
+
<changelist id="0d3eb3d9-47c1-4408-ad8f-006d5b0f2178" name="Default" comment="" />
|
|
227
|
+
<created>1431010809564</created>
|
|
228
|
+
<option name="number" value="Default" />
|
|
229
|
+
<updated>1431010809564</updated>
|
|
230
|
+
<workItem from="1431010812741" duration="319000" />
|
|
231
|
+
</task>
|
|
232
|
+
<servers />
|
|
233
|
+
</component>
|
|
234
|
+
<component name="TimeTrackingManager">
|
|
235
|
+
<option name="totallyTimeSpent" value="319000" />
|
|
236
|
+
</component>
|
|
237
|
+
<component name="ToolWindowManager">
|
|
238
|
+
<frame x="0" y="23" width="1440" height="852" extended-state="6" />
|
|
239
|
+
<editor active="false" />
|
|
240
|
+
<layout>
|
|
241
|
+
<window_info id="Palette	" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
|
242
|
+
<window_info id="UI Designer" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
|
243
|
+
<window_info id="Designer" 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" />
|
|
244
|
+
<window_info id="Palette" 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" />
|
|
245
|
+
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
|
246
|
+
<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" />
|
|
247
|
+
<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" />
|
|
248
|
+
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
|
249
|
+
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="true" content_ui="tabs" />
|
|
250
|
+
<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" />
|
|
251
|
+
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
|
252
|
+
<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" />
|
|
253
|
+
<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" />
|
|
254
|
+
<window_info id="Maven Projects" 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" />
|
|
255
|
+
<window_info id="Application Servers" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
|
256
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.24964234" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
|
257
|
+
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32894737" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
|
258
|
+
<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" />
|
|
259
|
+
<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" />
|
|
260
|
+
<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" />
|
|
261
|
+
<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" />
|
|
262
|
+
<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" />
|
|
263
|
+
<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" />
|
|
264
|
+
</layout>
|
|
265
|
+
</component>
|
|
266
|
+
<component name="Vcs.Log.UiProperties">
|
|
267
|
+
<option name="RECENTLY_FILTERED_USER_GROUPS">
|
|
268
|
+
<collection />
|
|
269
|
+
</option>
|
|
270
|
+
<option name="RECENTLY_FILTERED_BRANCH_GROUPS">
|
|
271
|
+
<collection />
|
|
272
|
+
</option>
|
|
273
|
+
</component>
|
|
274
|
+
<component name="VcsContentAnnotationSettings">
|
|
275
|
+
<option name="myLimit" value="2678400000" />
|
|
276
|
+
</component>
|
|
277
|
+
<component name="XDebuggerManager">
|
|
278
|
+
<breakpoint-manager />
|
|
279
|
+
<watches-manager />
|
|
280
|
+
</component>
|
|
281
|
+
</project>
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Copyright (c) 2015 Yuta Imai
|
|
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
|
+
# Yuimai::Test::Pkg
|
|
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 'yuimai-test-pkg'
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
And then execute:
|
|
14
|
+
|
|
15
|
+
$ bundle
|
|
16
|
+
|
|
17
|
+
Or install it yourself as:
|
|
18
|
+
|
|
19
|
+
$ gem install yuimai-test-pkg
|
|
20
|
+
|
|
21
|
+
## Usage
|
|
22
|
+
|
|
23
|
+
TODO: Write usage instructions here
|
|
24
|
+
|
|
25
|
+
## Contributing
|
|
26
|
+
|
|
27
|
+
1. Fork it ( https://github.com/[my-github-username]/yuimai-test-pkg/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
|
@@ -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 'yuimai/test/pkg/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "yuimai-test-pkg"
|
|
8
|
+
spec.version = Yuimai::Test::Pkg::VERSION
|
|
9
|
+
spec.authors = ["Yuta Imai"]
|
|
10
|
+
spec.email = ["imai.factory@gmail.com"]
|
|
11
|
+
spec.summary = %q{This is a test package from yuimai.}
|
|
12
|
+
spec.description = %q{A test package for publishing gem}
|
|
13
|
+
spec.homepage = "https://github.com/imaifactory/yuimai-test-pkg"
|
|
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
|
data/yuimai-test-pkg.iml
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
|
3
|
+
<component name="FacetManager">
|
|
4
|
+
<facet type="gem" name="Ruby Gem">
|
|
5
|
+
<configuration>
|
|
6
|
+
<option name="GEM_APP_ROOT_PATH" value="$MODULE_DIR$" />
|
|
7
|
+
<option name="GEM_APP_TEST_PATH" value="$MODULE_DIR$/test" />
|
|
8
|
+
<option name="GEM_APP_LIB_PATH" value="$MODULE_DIR$/lib" />
|
|
9
|
+
</configuration>
|
|
10
|
+
</facet>
|
|
11
|
+
</component>
|
|
12
|
+
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
|
13
|
+
<exclude-output />
|
|
14
|
+
<content url="file://$MODULE_DIR$">
|
|
15
|
+
<sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
|
|
16
|
+
</content>
|
|
17
|
+
<orderEntry type="jdk" jdkName="rbenv: 2.1.1" jdkType="RUBY_SDK" />
|
|
18
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
19
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.9.4, rbenv: 2.1.1) [gem]" level="application" />
|
|
20
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v10.1.0, rbenv: 2.1.1) [gem]" level="application" />
|
|
21
|
+
</component>
|
|
22
|
+
</module>
|
metadata
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: yuimai-test-pkg
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.2.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Yuta Imai
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2015-05-08 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.7'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ~>
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.7'
|
|
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: A test package for publishing gem
|
|
42
|
+
email:
|
|
43
|
+
- imai.factory@gmail.com
|
|
44
|
+
executables: []
|
|
45
|
+
extensions: []
|
|
46
|
+
extra_rdoc_files: []
|
|
47
|
+
files:
|
|
48
|
+
- .gitignore
|
|
49
|
+
- .idea/.name
|
|
50
|
+
- .idea/compiler.xml
|
|
51
|
+
- .idea/copyright/profiles_settings.xml
|
|
52
|
+
- .idea/misc.xml
|
|
53
|
+
- .idea/modules.xml
|
|
54
|
+
- .idea/vcs.xml
|
|
55
|
+
- .idea/workspace.xml
|
|
56
|
+
- Gemfile
|
|
57
|
+
- LICENSE.txt
|
|
58
|
+
- README.md
|
|
59
|
+
- Rakefile
|
|
60
|
+
- lib/yuimai/test/pkg.rb
|
|
61
|
+
- lib/yuimai/test/pkg/version.rb
|
|
62
|
+
- yuimai-test-pkg.gemspec
|
|
63
|
+
- yuimai-test-pkg.iml
|
|
64
|
+
homepage: https://github.com/imaifactory/yuimai-test-pkg
|
|
65
|
+
licenses:
|
|
66
|
+
- MIT
|
|
67
|
+
metadata: {}
|
|
68
|
+
post_install_message:
|
|
69
|
+
rdoc_options: []
|
|
70
|
+
require_paths:
|
|
71
|
+
- lib
|
|
72
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
73
|
+
requirements:
|
|
74
|
+
- - '>='
|
|
75
|
+
- !ruby/object:Gem::Version
|
|
76
|
+
version: '0'
|
|
77
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - '>='
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '0'
|
|
82
|
+
requirements: []
|
|
83
|
+
rubyforge_project:
|
|
84
|
+
rubygems_version: 2.0.14
|
|
85
|
+
signing_key:
|
|
86
|
+
specification_version: 4
|
|
87
|
+
summary: This is a test package from yuimai.
|
|
88
|
+
test_files: []
|
|
89
|
+
has_rdoc:
|