monkeydo 1.0.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 +34 -0
- data/.idea/.rakeTasks +7 -0
- data/.idea/MonkeyDo.iml +12 -0
- data/.idea/inspectionProfiles/Project_Default.xml +6 -0
- data/.idea/misc.xml +7 -0
- data/.idea/modules.xml +8 -0
- data/.idea/vcs.xml +6 -0
- data/.idea/workspace.xml +269 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +30 -0
- data/Rakefile +1 -0
- data/lib/monkeydo.rb +5 -0
- data/lib/monkeydo/version.rb +3 -0
- data/monkeydo.gemspec +26 -0
- metadata +115 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: eacb1eb6becf3928c7f227d41c2a1ba66b5f57a165b3d5ee244498369a725304
|
4
|
+
data.tar.gz: 143482bd8f231d2e73c845cb68570a144ccb0c153d6248e5bc926a086441054d
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 0f50b4fd17748518f8c93c72c7d80dcada286ec3c0127eb525704245821a5e5293485af82fd5ddfb46c7df4b6bdfe3d9c2122921a0e55feea4e5d80ce3612ee9
|
7
|
+
data.tar.gz: 1f4fafa1c69b2d2e12343dd930710f4c1a8fd3863468589277f31a5c7716fcb68dbb23a43f0511d2ce596dd60bd96432bc4c5d7bfb9945db853ff57243623702
|
data/.gitignore
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
/.config
|
4
|
+
/coverage/
|
5
|
+
/InstalledFiles
|
6
|
+
/pkg/
|
7
|
+
/spec/reports/
|
8
|
+
/test/tmp/
|
9
|
+
/test/version_tmp/
|
10
|
+
/tmp/
|
11
|
+
|
12
|
+
## Specific to RubyMotion:
|
13
|
+
.dat*
|
14
|
+
.repl_history
|
15
|
+
build/
|
16
|
+
|
17
|
+
## Documentation cache and generated files:
|
18
|
+
/.yardoc/
|
19
|
+
/_yardoc/
|
20
|
+
/doc/
|
21
|
+
/rdoc/
|
22
|
+
|
23
|
+
## Environment normalisation:
|
24
|
+
/.bundle/
|
25
|
+
/lib/bundler/man/
|
26
|
+
|
27
|
+
# for a library or gem, you might want to ignore these files since the code is
|
28
|
+
# intended to run in multiple environments; otherwise check them in:
|
29
|
+
# Gemfile.lock
|
30
|
+
# .ruby-version
|
31
|
+
# .ruby-gemset
|
32
|
+
|
33
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
34
|
+
.rvmrc
|
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" /></Settings>
|
data/.idea/MonkeyDo.iml
ADDED
@@ -0,0 +1,12 @@
|
|
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.17.3, ruby-2.6.0-p0) [gem]" level="application" />
|
11
|
+
</component>
|
12
|
+
</module>
|
data/.idea/misc.xml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="JavaScriptSettings">
|
4
|
+
<option name="languageLevel" value="ES6" />
|
5
|
+
</component>
|
6
|
+
<component name="ProjectRootManager" version="2" project-jdk-name="ruby-2.6.0-p0" project-jdk-type="RUBY_SDK" />
|
7
|
+
</project>
|
data/.idea/modules.xml
ADDED
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
ADDED
@@ -0,0 +1,269 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ChangeListManager">
|
4
|
+
<list default="true" id="2d5f1757-80ff-4007-b05c-4a2b409c2c90" name="Default Changelist" comment="">
|
5
|
+
<change afterPath="$PROJECT_DIR$/Gemfile" afterDir="false" />
|
6
|
+
<change afterPath="$PROJECT_DIR$/Rakefile" afterDir="false" />
|
7
|
+
<change afterPath="$PROJECT_DIR$/lib/monkeydo.rb" afterDir="false" />
|
8
|
+
<change afterPath="$PROJECT_DIR$/lib/monkeydo/version.rb" afterDir="false" />
|
9
|
+
<change afterPath="$PROJECT_DIR$/monkeydo.gemspec" afterDir="false" />
|
10
|
+
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
11
|
+
<change beforePath="$PROJECT_DIR$/README.md" beforeDir="false" afterPath="$PROJECT_DIR$/README.md" afterDir="false" />
|
12
|
+
</list>
|
13
|
+
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
14
|
+
<option name="SHOW_DIALOG" value="false" />
|
15
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
16
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
17
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
18
|
+
</component>
|
19
|
+
<component name="FileEditorManager">
|
20
|
+
<leaf>
|
21
|
+
<file pinned="false" current-in-tab="false">
|
22
|
+
<entry file="file://$PROJECT_DIR$/.gitignore">
|
23
|
+
<provider selected="true" editor-type-id="text-editor">
|
24
|
+
<state relative-caret-position="399">
|
25
|
+
<caret line="33" column="6" selection-start-line="33" selection-start-column="6" selection-end-line="33" selection-end-column="6" />
|
26
|
+
</state>
|
27
|
+
</provider>
|
28
|
+
</entry>
|
29
|
+
</file>
|
30
|
+
<file pinned="false" current-in-tab="false">
|
31
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
32
|
+
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
33
|
+
<state split_layout="SPLIT">
|
34
|
+
<first_editor relative-caret-position="44">
|
35
|
+
<caret line="3" column="126" lean-forward="true" selection-start-line="3" selection-end-line="3" selection-end-column="126" />
|
36
|
+
</first_editor>
|
37
|
+
<second_editor />
|
38
|
+
</state>
|
39
|
+
</provider>
|
40
|
+
</entry>
|
41
|
+
</file>
|
42
|
+
<file pinned="false" current-in-tab="false">
|
43
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
44
|
+
<provider selected="true" editor-type-id="text-editor">
|
45
|
+
<state relative-caret-position="15">
|
46
|
+
<caret line="1" selection-start-line="1" selection-end-line="1" />
|
47
|
+
</state>
|
48
|
+
</provider>
|
49
|
+
</entry>
|
50
|
+
</file>
|
51
|
+
<file pinned="false" current-in-tab="false">
|
52
|
+
<entry file="file://$PROJECT_DIR$/monkeydo.gemspec">
|
53
|
+
<provider selected="true" editor-type-id="text-editor">
|
54
|
+
<state relative-caret-position="150">
|
55
|
+
<caret line="10" column="81" selection-start-line="10" selection-start-column="81" selection-end-line="10" selection-end-column="81" />
|
56
|
+
</state>
|
57
|
+
</provider>
|
58
|
+
</entry>
|
59
|
+
</file>
|
60
|
+
<file pinned="false" current-in-tab="false">
|
61
|
+
<entry file="file://$PROJECT_DIR$/lib/monkeydo.rb">
|
62
|
+
<provider selected="true" editor-type-id="text-editor">
|
63
|
+
<state relative-caret-position="60">
|
64
|
+
<caret line="4" column="3" lean-forward="true" selection-start-line="4" selection-start-column="3" selection-end-line="4" selection-end-column="3" />
|
65
|
+
</state>
|
66
|
+
</provider>
|
67
|
+
</entry>
|
68
|
+
</file>
|
69
|
+
<file pinned="false" current-in-tab="true">
|
70
|
+
<entry file="file://$PROJECT_DIR$/lib/monkeydo/version.rb">
|
71
|
+
<provider selected="true" editor-type-id="text-editor">
|
72
|
+
<state relative-caret-position="15">
|
73
|
+
<caret line="1" column="18" selection-start-line="1" selection-start-column="18" selection-end-line="1" selection-end-column="18" />
|
74
|
+
</state>
|
75
|
+
</provider>
|
76
|
+
</entry>
|
77
|
+
</file>
|
78
|
+
<file pinned="false" current-in-tab="false">
|
79
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
80
|
+
<provider selected="true" editor-type-id="text-editor">
|
81
|
+
<state relative-caret-position="45">
|
82
|
+
<caret line="3" column="9" selection-start-line="3" selection-start-column="9" selection-end-line="3" selection-end-column="9" />
|
83
|
+
</state>
|
84
|
+
</provider>
|
85
|
+
</entry>
|
86
|
+
</file>
|
87
|
+
</leaf>
|
88
|
+
</component>
|
89
|
+
<component name="FileTemplateManagerImpl">
|
90
|
+
<option name="RECENT_TEMPLATES">
|
91
|
+
<list>
|
92
|
+
<option value="Ruby File" />
|
93
|
+
</list>
|
94
|
+
</option>
|
95
|
+
</component>
|
96
|
+
<component name="Git.Settings">
|
97
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
98
|
+
</component>
|
99
|
+
<component name="IdeDocumentHistory">
|
100
|
+
<option name="CHANGED_PATHS">
|
101
|
+
<list>
|
102
|
+
<option value="$PROJECT_DIR$/MonkeyDo.gemspec" />
|
103
|
+
<option value="$PROJECT_DIR$/.gitignore" />
|
104
|
+
<option value="$PROJECT_DIR$/Gemfile" />
|
105
|
+
<option value="$PROJECT_DIR$/README.md" />
|
106
|
+
<option value="$PROJECT_DIR$/Rakefile" />
|
107
|
+
<option value="$PROJECT_DIR$/lib/monkeydo.rb" />
|
108
|
+
<option value="$PROJECT_DIR$/monkeydo.gemspec" />
|
109
|
+
<option value="$PROJECT_DIR$/lib/monkeydo/version.rb" />
|
110
|
+
</list>
|
111
|
+
</option>
|
112
|
+
</component>
|
113
|
+
<component name="ProjectFrameBounds">
|
114
|
+
<option name="y" value="444" />
|
115
|
+
<option name="width" value="1680" />
|
116
|
+
<option name="height" value="606" />
|
117
|
+
</component>
|
118
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="true" />
|
119
|
+
<component name="ProjectView">
|
120
|
+
<navigator proportions="" version="1">
|
121
|
+
<foldersAlwaysOnTop value="true" />
|
122
|
+
</navigator>
|
123
|
+
<panes>
|
124
|
+
<pane id="ProjectPane">
|
125
|
+
<subPane>
|
126
|
+
<expand>
|
127
|
+
<path>
|
128
|
+
<item name="MonkeyDo" type="b2602c69:ProjectViewProjectNode" />
|
129
|
+
<item name="MonkeyDo" type="462c0819:PsiDirectoryNode" />
|
130
|
+
</path>
|
131
|
+
</expand>
|
132
|
+
<select />
|
133
|
+
</subPane>
|
134
|
+
</pane>
|
135
|
+
<pane id="Scope" />
|
136
|
+
</panes>
|
137
|
+
</component>
|
138
|
+
<component name="PropertiesComponent">
|
139
|
+
<property name="SHARE_PROJECT_CONFIGURATION_FILES" value="true" />
|
140
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
141
|
+
<property name="nodejs_interpreter_path.stuck_in_default_project" value="undefined stuck path" />
|
142
|
+
<property name="nodejs_npm_path_reset_for_default_project" value="true" />
|
143
|
+
</component>
|
144
|
+
<component name="RunDashboard">
|
145
|
+
<option name="ruleStates">
|
146
|
+
<list>
|
147
|
+
<RuleState>
|
148
|
+
<option name="name" value="ConfigurationTypeDashboardGroupingRule" />
|
149
|
+
</RuleState>
|
150
|
+
<RuleState>
|
151
|
+
<option name="name" value="StatusDashboardGroupingRule" />
|
152
|
+
</RuleState>
|
153
|
+
</list>
|
154
|
+
</option>
|
155
|
+
</component>
|
156
|
+
<component name="SpringUtil" SPRING_PRE_LOADER_OPTION="true" />
|
157
|
+
<component name="SvnConfiguration">
|
158
|
+
<configuration />
|
159
|
+
</component>
|
160
|
+
<component name="TaskManager">
|
161
|
+
<task active="true" id="Default" summary="Default task">
|
162
|
+
<changelist id="2d5f1757-80ff-4007-b05c-4a2b409c2c90" name="Default Changelist" comment="" />
|
163
|
+
<created>1559972097509</created>
|
164
|
+
<option name="number" value="Default" />
|
165
|
+
<option name="presentableId" value="Default" />
|
166
|
+
<updated>1559972097509</updated>
|
167
|
+
<workItem from="1559972099298" duration="848000" />
|
168
|
+
</task>
|
169
|
+
<task id="LOCAL-00001" summary="Initial commit">
|
170
|
+
<created>1559972468773</created>
|
171
|
+
<option name="number" value="00001" />
|
172
|
+
<option name="presentableId" value="LOCAL-00001" />
|
173
|
+
<option name="project" value="LOCAL" />
|
174
|
+
<updated>1559972468773</updated>
|
175
|
+
</task>
|
176
|
+
<option name="localTasksCounter" value="2" />
|
177
|
+
<servers />
|
178
|
+
</component>
|
179
|
+
<component name="TimeTrackingManager">
|
180
|
+
<option name="totallyTimeSpent" value="848000" />
|
181
|
+
</component>
|
182
|
+
<component name="ToolWindowManager">
|
183
|
+
<frame x="0" y="444" width="1680" height="606" extended-state="0" />
|
184
|
+
<editor active="true" />
|
185
|
+
<layout>
|
186
|
+
<window_info id="Favorites" side_tool="true" />
|
187
|
+
<window_info content_ui="combo" id="Project" order="0" visible="true" weight="0.20695971" />
|
188
|
+
<window_info id="Structure" order="1" side_tool="true" weight="0.25" />
|
189
|
+
<window_info anchor="bottom" id="Docker" show_stripe_button="false" />
|
190
|
+
<window_info anchor="bottom" id="Database Changes" />
|
191
|
+
<window_info anchor="bottom" id="Version Control" />
|
192
|
+
<window_info anchor="bottom" id="Messages" weight="0.32960895" />
|
193
|
+
<window_info anchor="bottom" id="Terminal" />
|
194
|
+
<window_info anchor="bottom" id="Event Log" side_tool="true" />
|
195
|
+
<window_info anchor="bottom" id="Message" order="0" />
|
196
|
+
<window_info anchor="bottom" id="Find" order="1" />
|
197
|
+
<window_info active="true" anchor="bottom" id="Run" order="2" visible="true" weight="0.32879376" />
|
198
|
+
<window_info anchor="bottom" id="Debug" order="3" weight="0.4" />
|
199
|
+
<window_info anchor="bottom" id="Cvs" order="4" weight="0.25" />
|
200
|
+
<window_info anchor="bottom" id="Inspection" order="5" weight="0.4" />
|
201
|
+
<window_info anchor="bottom" id="TODO" order="6" />
|
202
|
+
<window_info anchor="right" id="Database" />
|
203
|
+
<window_info anchor="right" id="Commander" internal_type="SLIDING" order="0" type="SLIDING" weight="0.4" />
|
204
|
+
<window_info anchor="right" id="Ant Build" order="1" weight="0.25" />
|
205
|
+
<window_info anchor="right" content_ui="combo" id="Hierarchy" order="2" weight="0.25" />
|
206
|
+
</layout>
|
207
|
+
</component>
|
208
|
+
<component name="TypeScriptGeneratedFilesManager">
|
209
|
+
<option name="version" value="1" />
|
210
|
+
</component>
|
211
|
+
<component name="VcsManagerConfiguration">
|
212
|
+
<MESSAGE value="Initial commit" />
|
213
|
+
<option name="LAST_COMMIT_MESSAGE" value="Initial commit" />
|
214
|
+
</component>
|
215
|
+
<component name="editorHistoryManager">
|
216
|
+
<entry file="file://$PROJECT_DIR$/.gitignore">
|
217
|
+
<provider selected="true" editor-type-id="text-editor">
|
218
|
+
<state relative-caret-position="399">
|
219
|
+
<caret line="33" column="6" selection-start-line="33" selection-start-column="6" selection-end-line="33" selection-end-column="6" />
|
220
|
+
</state>
|
221
|
+
</provider>
|
222
|
+
</entry>
|
223
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
224
|
+
<provider selected="true" editor-type-id="text-editor">
|
225
|
+
<state relative-caret-position="15">
|
226
|
+
<caret line="1" selection-start-line="1" selection-end-line="1" />
|
227
|
+
</state>
|
228
|
+
</provider>
|
229
|
+
</entry>
|
230
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
231
|
+
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
232
|
+
<state split_layout="SPLIT">
|
233
|
+
<first_editor relative-caret-position="44">
|
234
|
+
<caret line="3" column="126" lean-forward="true" selection-start-line="3" selection-end-line="3" selection-end-column="126" />
|
235
|
+
</first_editor>
|
236
|
+
<second_editor />
|
237
|
+
</state>
|
238
|
+
</provider>
|
239
|
+
</entry>
|
240
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
241
|
+
<provider selected="true" editor-type-id="text-editor">
|
242
|
+
<state relative-caret-position="45">
|
243
|
+
<caret line="3" column="9" selection-start-line="3" selection-start-column="9" selection-end-line="3" selection-end-column="9" />
|
244
|
+
</state>
|
245
|
+
</provider>
|
246
|
+
</entry>
|
247
|
+
<entry file="file://$PROJECT_DIR$/lib/monkeydo.rb">
|
248
|
+
<provider selected="true" editor-type-id="text-editor">
|
249
|
+
<state relative-caret-position="60">
|
250
|
+
<caret line="4" column="3" lean-forward="true" selection-start-line="4" selection-start-column="3" selection-end-line="4" selection-end-column="3" />
|
251
|
+
</state>
|
252
|
+
</provider>
|
253
|
+
</entry>
|
254
|
+
<entry file="file://$PROJECT_DIR$/monkeydo.gemspec">
|
255
|
+
<provider selected="true" editor-type-id="text-editor">
|
256
|
+
<state relative-caret-position="150">
|
257
|
+
<caret line="10" column="81" selection-start-line="10" selection-start-column="81" selection-end-line="10" selection-end-column="81" />
|
258
|
+
</state>
|
259
|
+
</provider>
|
260
|
+
</entry>
|
261
|
+
<entry file="file://$PROJECT_DIR$/lib/monkeydo/version.rb">
|
262
|
+
<provider selected="true" editor-type-id="text-editor">
|
263
|
+
<state relative-caret-position="15">
|
264
|
+
<caret line="1" column="18" selection-start-line="1" selection-start-column="18" selection-end-line="1" selection-end-column="18" />
|
265
|
+
</state>
|
266
|
+
</provider>
|
267
|
+
</entry>
|
268
|
+
</component>
|
269
|
+
</project>
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2019 Vincenzo Fehring
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
MonkeyDo
|
2
|
+
========
|
3
|
+
|
4
|
+
Updating your iOS app should not be painful and time consuming. Automate the whole process to start with Continuous Deployment
|
5
|
+
|
6
|
+
## Installation
|
7
|
+
|
8
|
+
Add this line to your application's Gemfile:
|
9
|
+
|
10
|
+
gem 'monkeydo'
|
11
|
+
|
12
|
+
And then execute:
|
13
|
+
|
14
|
+
$ bundle
|
15
|
+
|
16
|
+
Or install it yourself as:
|
17
|
+
|
18
|
+
$ gem install monkeydo
|
19
|
+
|
20
|
+
## Usage
|
21
|
+
|
22
|
+
TODO: Write usage instructions here
|
23
|
+
|
24
|
+
## Contributing
|
25
|
+
|
26
|
+
1. Fork it ( https://github.com/vincenzofehring/monkeydo/fork )
|
27
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
28
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
29
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
30
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/lib/monkeydo.rb
ADDED
data/monkeydo.gemspec
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'monkeydo/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "monkeydo"
|
8
|
+
spec.version = MonkeyDo::VERSION
|
9
|
+
spec.authors = ["Vincenzo Fehring"]
|
10
|
+
spec.email = ["Vincenzo Fehring"]
|
11
|
+
spec.summary = "Updating your iOS app should not be painful and time consuming."
|
12
|
+
spec.description = "Updating your iOS app should not be painful and time consuming. Automate the whole process to start with Continuous Deployment."
|
13
|
+
spec.homepage = "http://vincenzofehring.com"
|
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_dependency 'capybara'
|
22
|
+
spec.add_dependency 'poltergeist'
|
23
|
+
|
24
|
+
spec.add_development_dependency "bundler", "~> 1.6"
|
25
|
+
spec.add_development_dependency "rake"
|
26
|
+
end
|
metadata
ADDED
@@ -0,0 +1,115 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: monkeydo
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Vincenzo Fehring
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-06-08 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: capybara
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: poltergeist
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.6'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.6'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
description: Updating your iOS app should not be painful and time consuming. Automate
|
70
|
+
the whole process to start with Continuous Deployment.
|
71
|
+
email:
|
72
|
+
- Vincenzo Fehring
|
73
|
+
executables: []
|
74
|
+
extensions: []
|
75
|
+
extra_rdoc_files: []
|
76
|
+
files:
|
77
|
+
- ".gitignore"
|
78
|
+
- ".idea/.rakeTasks"
|
79
|
+
- ".idea/MonkeyDo.iml"
|
80
|
+
- ".idea/inspectionProfiles/Project_Default.xml"
|
81
|
+
- ".idea/misc.xml"
|
82
|
+
- ".idea/modules.xml"
|
83
|
+
- ".idea/vcs.xml"
|
84
|
+
- ".idea/workspace.xml"
|
85
|
+
- Gemfile
|
86
|
+
- LICENSE.txt
|
87
|
+
- README.md
|
88
|
+
- Rakefile
|
89
|
+
- lib/monkeydo.rb
|
90
|
+
- lib/monkeydo/version.rb
|
91
|
+
- monkeydo.gemspec
|
92
|
+
homepage: http://vincenzofehring.com
|
93
|
+
licenses:
|
94
|
+
- MIT
|
95
|
+
metadata: {}
|
96
|
+
post_install_message:
|
97
|
+
rdoc_options: []
|
98
|
+
require_paths:
|
99
|
+
- lib
|
100
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - ">="
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
105
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - ">="
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
requirements: []
|
111
|
+
rubygems_version: 3.0.3
|
112
|
+
signing_key:
|
113
|
+
specification_version: 4
|
114
|
+
summary: Updating your iOS app should not be painful and time consuming.
|
115
|
+
test_files: []
|