pantograph 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (202) hide show
  1. checksums.yaml +7 -0
  2. data/.yardopts +1 -0
  3. data/LICENSE +21 -0
  4. data/README.md +197 -0
  5. data/bin/bin-proxy +19 -0
  6. data/bin/pantograph +23 -0
  7. data/pantograph/README.md +11 -0
  8. data/pantograph/lib/assets/ActionDetails.md.erb +106 -0
  9. data/pantograph/lib/assets/Actions.md.erb +43 -0
  10. data/pantograph/lib/assets/DefaultPantfileTemplate +20 -0
  11. data/pantograph/lib/assets/completions/completion.bash +23 -0
  12. data/pantograph/lib/assets/completions/completion.fish +39 -0
  13. data/pantograph/lib/assets/completions/completion.sh +12 -0
  14. data/pantograph/lib/assets/completions/completion.zsh +23 -0
  15. data/pantograph/lib/assets/custom_action_template.rb +80 -0
  16. data/pantograph/lib/assets/report_template.xml.erb +15 -0
  17. data/pantograph/lib/pantograph/action.rb +194 -0
  18. data/pantograph/lib/pantograph/action_collector.rb +35 -0
  19. data/pantograph/lib/pantograph/actions/README.md +3 -0
  20. data/pantograph/lib/pantograph/actions/actions_helper.rb +166 -0
  21. data/pantograph/lib/pantograph/actions/add_extra_platforms.rb +45 -0
  22. data/pantograph/lib/pantograph/actions/artifactory.rb +157 -0
  23. data/pantograph/lib/pantograph/actions/bundle_install.rb +156 -0
  24. data/pantograph/lib/pantograph/actions/changelog_from_git_commits.rb +197 -0
  25. data/pantograph/lib/pantograph/actions/clipboard.rb +52 -0
  26. data/pantograph/lib/pantograph/actions/cloc.rb +89 -0
  27. data/pantograph/lib/pantograph/actions/create_pull_request.rb +190 -0
  28. data/pantograph/lib/pantograph/actions/danger.rb +131 -0
  29. data/pantograph/lib/pantograph/actions/debug.rb +32 -0
  30. data/pantograph/lib/pantograph/actions/default_platform.rb +47 -0
  31. data/pantograph/lib/pantograph/actions/download.rb +76 -0
  32. data/pantograph/lib/pantograph/actions/echo.rb +14 -0
  33. data/pantograph/lib/pantograph/actions/ensure_bundle_exec.rb +59 -0
  34. data/pantograph/lib/pantograph/actions/ensure_env_vars.rb +58 -0
  35. data/pantograph/lib/pantograph/actions/ensure_git_branch.rb +69 -0
  36. data/pantograph/lib/pantograph/actions/ensure_git_status_clean.rb +81 -0
  37. data/pantograph/lib/pantograph/actions/erb.rb +88 -0
  38. data/pantograph/lib/pantograph/actions/get_build_number_repository.rb +120 -0
  39. data/pantograph/lib/pantograph/actions/get_github_release.rb +163 -0
  40. data/pantograph/lib/pantograph/actions/git_add.rb +93 -0
  41. data/pantograph/lib/pantograph/actions/git_branch.rb +58 -0
  42. data/pantograph/lib/pantograph/actions/git_commit.rb +80 -0
  43. data/pantograph/lib/pantograph/actions/git_pull.rb +53 -0
  44. data/pantograph/lib/pantograph/actions/git_submodule_update.rb +52 -0
  45. data/pantograph/lib/pantograph/actions/git_tag_exists.rb +74 -0
  46. data/pantograph/lib/pantograph/actions/github_api.rb +262 -0
  47. data/pantograph/lib/pantograph/actions/gradle.rb +278 -0
  48. data/pantograph/lib/pantograph/actions/import.rb +49 -0
  49. data/pantograph/lib/pantograph/actions/import_from_git.rb +71 -0
  50. data/pantograph/lib/pantograph/actions/is_ci.rb +51 -0
  51. data/pantograph/lib/pantograph/actions/jira.rb +115 -0
  52. data/pantograph/lib/pantograph/actions/lane_context.rb +60 -0
  53. data/pantograph/lib/pantograph/actions/last_git_commit.rb +58 -0
  54. data/pantograph/lib/pantograph/actions/last_git_tag.rb +51 -0
  55. data/pantograph/lib/pantograph/actions/make_changelog_from_jenkins.rb +81 -0
  56. data/pantograph/lib/pantograph/actions/min_pantograph_version.rb +57 -0
  57. data/pantograph/lib/pantograph/actions/nexus_upload.rb +230 -0
  58. data/pantograph/lib/pantograph/actions/notification.rb +75 -0
  59. data/pantograph/lib/pantograph/actions/number_of_commits.rb +75 -0
  60. data/pantograph/lib/pantograph/actions/opt_out_usage.rb +40 -0
  61. data/pantograph/lib/pantograph/actions/pantograph_version.rb +15 -0
  62. data/pantograph/lib/pantograph/actions/println.rb +14 -0
  63. data/pantograph/lib/pantograph/actions/prompt.rb +119 -0
  64. data/pantograph/lib/pantograph/actions/push_git_tags.rb +76 -0
  65. data/pantograph/lib/pantograph/actions/push_to_git_remote.rb +127 -0
  66. data/pantograph/lib/pantograph/actions/puts.rb +68 -0
  67. data/pantograph/lib/pantograph/actions/reset_git_repo.rb +121 -0
  68. data/pantograph/lib/pantograph/actions/rocket.rb +83 -0
  69. data/pantograph/lib/pantograph/actions/rsync.rb +74 -0
  70. data/pantograph/lib/pantograph/actions/ruby_version.rb +56 -0
  71. data/pantograph/lib/pantograph/actions/say.rb +56 -0
  72. data/pantograph/lib/pantograph/actions/scp.rb +114 -0
  73. data/pantograph/lib/pantograph/actions/set_github_release.rb +274 -0
  74. data/pantograph/lib/pantograph/actions/sh.rb +71 -0
  75. data/pantograph/lib/pantograph/actions/skip_docs.rb +52 -0
  76. data/pantograph/lib/pantograph/actions/slack.rb +288 -0
  77. data/pantograph/lib/pantograph/actions/sonar.rb +156 -0
  78. data/pantograph/lib/pantograph/actions/ssh.rb +162 -0
  79. data/pantograph/lib/pantograph/actions/twitter.rb +89 -0
  80. data/pantograph/lib/pantograph/actions/update_pantograph.rb +177 -0
  81. data/pantograph/lib/pantograph/actions/zip.rb +120 -0
  82. data/pantograph/lib/pantograph/auto_complete.rb +82 -0
  83. data/pantograph/lib/pantograph/boolean.rb +5 -0
  84. data/pantograph/lib/pantograph/cli_tools_distributor.rb +183 -0
  85. data/pantograph/lib/pantograph/command_line_handler.rb +43 -0
  86. data/pantograph/lib/pantograph/commands_generator.rb +344 -0
  87. data/pantograph/lib/pantograph/configuration_helper.rb +26 -0
  88. data/pantograph/lib/pantograph/core_ext/bundler_monkey_patch.rb +14 -0
  89. data/pantograph/lib/pantograph/documentation/actions_list.rb +214 -0
  90. data/pantograph/lib/pantograph/documentation/docs_generator.rb +95 -0
  91. data/pantograph/lib/pantograph/documentation/markdown_docs_generator.rb +221 -0
  92. data/pantograph/lib/pantograph/environment_printer.rb +282 -0
  93. data/pantograph/lib/pantograph/erb_template_helper.rb +30 -0
  94. data/pantograph/lib/pantograph/features.rb +4 -0
  95. data/pantograph/lib/pantograph/helper/README.md +29 -0
  96. data/pantograph/lib/pantograph/helper/dotenv_helper.rb +50 -0
  97. data/pantograph/lib/pantograph/helper/gem_helper.rb +26 -0
  98. data/pantograph/lib/pantograph/helper/git_helper.rb +135 -0
  99. data/pantograph/lib/pantograph/helper/gradle_helper.rb +62 -0
  100. data/pantograph/lib/pantograph/helper/sh_helper.rb +134 -0
  101. data/pantograph/lib/pantograph/junit_generator.rb +27 -0
  102. data/pantograph/lib/pantograph/lane.rb +97 -0
  103. data/pantograph/lib/pantograph/lane_list.rb +77 -0
  104. data/pantograph/lib/pantograph/lane_manager.rb +140 -0
  105. data/pantograph/lib/pantograph/lane_manager_base.rb +92 -0
  106. data/pantograph/lib/pantograph/markdown_table_formatter.rb +62 -0
  107. data/pantograph/lib/pantograph/new_action.rb +47 -0
  108. data/pantograph/lib/pantograph/one_off.rb +45 -0
  109. data/pantograph/lib/pantograph/other_action.rb +29 -0
  110. data/pantograph/lib/pantograph/pant_file.rb +377 -0
  111. data/pantograph/lib/pantograph/pantograph_require.rb +75 -0
  112. data/pantograph/lib/pantograph/plugins/plugin_fetcher.rb +55 -0
  113. data/pantograph/lib/pantograph/plugins/plugin_generator.rb +86 -0
  114. data/pantograph/lib/pantograph/plugins/plugin_generator_ui.rb +19 -0
  115. data/pantograph/lib/pantograph/plugins/plugin_info.rb +49 -0
  116. data/pantograph/lib/pantograph/plugins/plugin_info_collector.rb +159 -0
  117. data/pantograph/lib/pantograph/plugins/plugin_manager.rb +387 -0
  118. data/pantograph/lib/pantograph/plugins/plugin_search.rb +46 -0
  119. data/pantograph/lib/pantograph/plugins/plugin_update_manager.rb +70 -0
  120. data/pantograph/lib/pantograph/plugins/plugins.rb +12 -0
  121. data/pantograph/lib/pantograph/plugins/template/%gem_name%.gemspec.erb +35 -0
  122. data/pantograph/lib/pantograph/plugins/template/.circleci/config.yml +43 -0
  123. data/pantograph/lib/pantograph/plugins/template/.gitignore +12 -0
  124. data/pantograph/lib/pantograph/plugins/template/.rspec +5 -0
  125. data/pantograph/lib/pantograph/plugins/template/.rubocop.yml +179 -0
  126. data/pantograph/lib/pantograph/plugins/template/.travis.yml +4 -0
  127. data/pantograph/lib/pantograph/plugins/template/Gemfile +6 -0
  128. data/pantograph/lib/pantograph/plugins/template/LICENSE.erb +21 -0
  129. data/pantograph/lib/pantograph/plugins/template/README.md.erb +52 -0
  130. data/pantograph/lib/pantograph/plugins/template/Rakefile +9 -0
  131. data/pantograph/lib/pantograph/plugins/template/lib/pantograph/plugin/%plugin_name%/actions/%plugin_name%_action.rb.erb +47 -0
  132. data/pantograph/lib/pantograph/plugins/template/lib/pantograph/plugin/%plugin_name%/helper/%plugin_name%_helper.rb.erb +16 -0
  133. data/pantograph/lib/pantograph/plugins/template/lib/pantograph/plugin/%plugin_name%/version.rb.erb +5 -0
  134. data/pantograph/lib/pantograph/plugins/template/lib/pantograph/plugin/%plugin_name%.rb.erb +16 -0
  135. data/pantograph/lib/pantograph/plugins/template/pantograph/Pantfile.erb +3 -0
  136. data/pantograph/lib/pantograph/plugins/template/pantograph/Pluginfile.erb +1 -0
  137. data/pantograph/lib/pantograph/plugins/template/spec/%plugin_name%_action_spec.rb.erb +9 -0
  138. data/pantograph/lib/pantograph/plugins/template/spec/spec_helper.rb.erb +15 -0
  139. data/pantograph/lib/pantograph/runner.rb +371 -0
  140. data/pantograph/lib/pantograph/server/action_command.rb +61 -0
  141. data/pantograph/lib/pantograph/server/action_command_return.rb +14 -0
  142. data/pantograph/lib/pantograph/server/command_executor.rb +7 -0
  143. data/pantograph/lib/pantograph/server/command_parser.rb +36 -0
  144. data/pantograph/lib/pantograph/server/control_command.rb +23 -0
  145. data/pantograph/lib/pantograph/server/json_return_value_processor.rb +72 -0
  146. data/pantograph/lib/pantograph/server/socket_server.rb +232 -0
  147. data/pantograph/lib/pantograph/server/socket_server_action_command_executor.rb +101 -0
  148. data/pantograph/lib/pantograph/setup/setup.rb +290 -0
  149. data/pantograph/lib/pantograph/setup/setup_android.rb +64 -0
  150. data/pantograph/lib/pantograph/setup/setup_ios.rb +412 -0
  151. data/pantograph/lib/pantograph/shells.rb +6 -0
  152. data/pantograph/lib/pantograph/supported_platforms.rb +28 -0
  153. data/pantograph/lib/pantograph/tools.rb +10 -0
  154. data/pantograph/lib/pantograph/version.rb +5 -0
  155. data/pantograph/lib/pantograph.rb +51 -0
  156. data/pantograph_core/README.md +79 -0
  157. data/pantograph_core/lib/assets/XMLTemplate.xml.erb +12 -0
  158. data/pantograph_core/lib/pantograph_core/analytics/action_completion_context.rb +34 -0
  159. data/pantograph_core/lib/pantograph_core/analytics/action_launch_context.rb +38 -0
  160. data/pantograph_core/lib/pantograph_core/analytics/analytics_event_builder.rb +23 -0
  161. data/pantograph_core/lib/pantograph_core/analytics/analytics_ingester_client.rb +54 -0
  162. data/pantograph_core/lib/pantograph_core/analytics/analytics_session.rb +71 -0
  163. data/pantograph_core/lib/pantograph_core/cert_checker.rb +116 -0
  164. data/pantograph_core/lib/pantograph_core/command_executor.rb +99 -0
  165. data/pantograph_core/lib/pantograph_core/configuration/commander_generator.rb +103 -0
  166. data/pantograph_core/lib/pantograph_core/configuration/config_item.rb +314 -0
  167. data/pantograph_core/lib/pantograph_core/configuration/configuration.rb +332 -0
  168. data/pantograph_core/lib/pantograph_core/configuration/configuration_file.rb +182 -0
  169. data/pantograph_core/lib/pantograph_core/core_ext/shellwords.rb +63 -0
  170. data/pantograph_core/lib/pantograph_core/core_ext/string.rb +17 -0
  171. data/pantograph_core/lib/pantograph_core/env.rb +9 -0
  172. data/pantograph_core/lib/pantograph_core/feature/feature.rb +51 -0
  173. data/pantograph_core/lib/pantograph_core/features.rb +4 -0
  174. data/pantograph_core/lib/pantograph_core/globals.rb +27 -0
  175. data/pantograph_core/lib/pantograph_core/helper.rb +409 -0
  176. data/pantograph_core/lib/pantograph_core/keychain_importer.rb +74 -0
  177. data/pantograph_core/lib/pantograph_core/languages.rb +14 -0
  178. data/pantograph_core/lib/pantograph_core/module.rb +29 -0
  179. data/pantograph_core/lib/pantograph_core/pantograph_folder.rb +39 -0
  180. data/pantograph_core/lib/pantograph_core/pantograph_pty.rb +57 -0
  181. data/pantograph_core/lib/pantograph_core/pkg_file_analyser.rb +44 -0
  182. data/pantograph_core/lib/pantograph_core/print_table.rb +131 -0
  183. data/pantograph_core/lib/pantograph_core/string_filters.rb +51 -0
  184. data/pantograph_core/lib/pantograph_core/swag.rb +85 -0
  185. data/pantograph_core/lib/pantograph_core/tag_version.rb +31 -0
  186. data/pantograph_core/lib/pantograph_core/test_parser.rb +107 -0
  187. data/pantograph_core/lib/pantograph_core/ui/disable_colors.rb +17 -0
  188. data/pantograph_core/lib/pantograph_core/ui/errors/pantograph_common_error.rb +19 -0
  189. data/pantograph_core/lib/pantograph_core/ui/errors/pantograph_crash.rb +11 -0
  190. data/pantograph_core/lib/pantograph_core/ui/errors/pantograph_error.rb +25 -0
  191. data/pantograph_core/lib/pantograph_core/ui/errors/pantograph_exception.rb +19 -0
  192. data/pantograph_core/lib/pantograph_core/ui/errors/pantograph_shell_error.rb +11 -0
  193. data/pantograph_core/lib/pantograph_core/ui/errors.rb +1 -0
  194. data/pantograph_core/lib/pantograph_core/ui/github_issue_inspector_reporter.rb +62 -0
  195. data/pantograph_core/lib/pantograph_core/ui/implementations/shell.rb +159 -0
  196. data/pantograph_core/lib/pantograph_core/ui/interface.rb +205 -0
  197. data/pantograph_core/lib/pantograph_core/ui/pantograph_runner.rb +276 -0
  198. data/pantograph_core/lib/pantograph_core/ui/ui.rb +26 -0
  199. data/pantograph_core/lib/pantograph_core/update_checker/changelog.rb +37 -0
  200. data/pantograph_core/lib/pantograph_core/update_checker/update_checker.rb +107 -0
  201. data/pantograph_core/lib/pantograph_core.rb +45 -0
  202. metadata +987 -0
metadata ADDED
@@ -0,0 +1,987 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pantograph
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - John Knapp
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-12-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: slack-notifier
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 2.0.0
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 3.0.0
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: 2.0.0
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: 3.0.0
33
+ - !ruby/object:Gem::Dependency
34
+ name: xcpretty
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: 0.3.0
40
+ type: :runtime
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: 0.3.0
47
+ - !ruby/object:Gem::Dependency
48
+ name: terminal-notifier
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: 2.0.0
54
+ - - "<"
55
+ - !ruby/object:Gem::Version
56
+ version: 3.0.0
57
+ type: :runtime
58
+ prerelease: false
59
+ version_requirements: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: 2.0.0
64
+ - - "<"
65
+ - !ruby/object:Gem::Version
66
+ version: 3.0.0
67
+ - !ruby/object:Gem::Dependency
68
+ name: terminal-table
69
+ requirement: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: 1.4.5
74
+ - - "<"
75
+ - !ruby/object:Gem::Version
76
+ version: 2.0.0
77
+ type: :runtime
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: 1.4.5
84
+ - - "<"
85
+ - !ruby/object:Gem::Version
86
+ version: 2.0.0
87
+ - !ruby/object:Gem::Dependency
88
+ name: plist
89
+ requirement: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ version: 3.1.0
94
+ - - "<"
95
+ - !ruby/object:Gem::Version
96
+ version: 4.0.0
97
+ type: :runtime
98
+ prerelease: false
99
+ version_requirements: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: 3.1.0
104
+ - - "<"
105
+ - !ruby/object:Gem::Version
106
+ version: 4.0.0
107
+ - !ruby/object:Gem::Dependency
108
+ name: addressable
109
+ requirement: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - ">="
112
+ - !ruby/object:Gem::Version
113
+ version: '2.3'
114
+ - - "<"
115
+ - !ruby/object:Gem::Version
116
+ version: 3.0.0
117
+ type: :runtime
118
+ prerelease: false
119
+ version_requirements: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - ">="
122
+ - !ruby/object:Gem::Version
123
+ version: '2.3'
124
+ - - "<"
125
+ - !ruby/object:Gem::Version
126
+ version: 3.0.0
127
+ - !ruby/object:Gem::Dependency
128
+ name: multipart-post
129
+ requirement: !ruby/object:Gem::Requirement
130
+ requirements:
131
+ - - "~>"
132
+ - !ruby/object:Gem::Version
133
+ version: 2.0.0
134
+ type: :runtime
135
+ prerelease: false
136
+ version_requirements: !ruby/object:Gem::Requirement
137
+ requirements:
138
+ - - "~>"
139
+ - !ruby/object:Gem::Version
140
+ version: 2.0.0
141
+ - !ruby/object:Gem::Dependency
142
+ name: word_wrap
143
+ requirement: !ruby/object:Gem::Requirement
144
+ requirements:
145
+ - - "~>"
146
+ - !ruby/object:Gem::Version
147
+ version: 1.0.0
148
+ type: :runtime
149
+ prerelease: false
150
+ version_requirements: !ruby/object:Gem::Requirement
151
+ requirements:
152
+ - - "~>"
153
+ - !ruby/object:Gem::Version
154
+ version: 1.0.0
155
+ - !ruby/object:Gem::Dependency
156
+ name: public_suffix
157
+ requirement: !ruby/object:Gem::Requirement
158
+ requirements:
159
+ - - "~>"
160
+ - !ruby/object:Gem::Version
161
+ version: 2.0.0
162
+ type: :runtime
163
+ prerelease: false
164
+ version_requirements: !ruby/object:Gem::Requirement
165
+ requirements:
166
+ - - "~>"
167
+ - !ruby/object:Gem::Version
168
+ version: 2.0.0
169
+ - !ruby/object:Gem::Dependency
170
+ name: tty-screen
171
+ requirement: !ruby/object:Gem::Requirement
172
+ requirements:
173
+ - - ">="
174
+ - !ruby/object:Gem::Version
175
+ version: 0.6.3
176
+ - - "<"
177
+ - !ruby/object:Gem::Version
178
+ version: 1.0.0
179
+ type: :runtime
180
+ prerelease: false
181
+ version_requirements: !ruby/object:Gem::Requirement
182
+ requirements:
183
+ - - ">="
184
+ - !ruby/object:Gem::Version
185
+ version: 0.6.3
186
+ - - "<"
187
+ - !ruby/object:Gem::Version
188
+ version: 1.0.0
189
+ - !ruby/object:Gem::Dependency
190
+ name: tty-spinner
191
+ requirement: !ruby/object:Gem::Requirement
192
+ requirements:
193
+ - - ">="
194
+ - !ruby/object:Gem::Version
195
+ version: 0.8.0
196
+ - - "<"
197
+ - !ruby/object:Gem::Version
198
+ version: 1.0.0
199
+ type: :runtime
200
+ prerelease: false
201
+ version_requirements: !ruby/object:Gem::Requirement
202
+ requirements:
203
+ - - ">="
204
+ - !ruby/object:Gem::Version
205
+ version: 0.8.0
206
+ - - "<"
207
+ - !ruby/object:Gem::Version
208
+ version: 1.0.0
209
+ - !ruby/object:Gem::Dependency
210
+ name: babosa
211
+ requirement: !ruby/object:Gem::Requirement
212
+ requirements:
213
+ - - ">="
214
+ - !ruby/object:Gem::Version
215
+ version: 1.0.2
216
+ - - "<"
217
+ - !ruby/object:Gem::Version
218
+ version: 2.0.0
219
+ type: :runtime
220
+ prerelease: false
221
+ version_requirements: !ruby/object:Gem::Requirement
222
+ requirements:
223
+ - - ">="
224
+ - !ruby/object:Gem::Version
225
+ version: 1.0.2
226
+ - - "<"
227
+ - !ruby/object:Gem::Version
228
+ version: 2.0.0
229
+ - !ruby/object:Gem::Dependency
230
+ name: colored
231
+ requirement: !ruby/object:Gem::Requirement
232
+ requirements:
233
+ - - ">="
234
+ - !ruby/object:Gem::Version
235
+ version: '0'
236
+ type: :runtime
237
+ prerelease: false
238
+ version_requirements: !ruby/object:Gem::Requirement
239
+ requirements:
240
+ - - ">="
241
+ - !ruby/object:Gem::Version
242
+ version: '0'
243
+ - !ruby/object:Gem::Dependency
244
+ name: commander-fastlane
245
+ requirement: !ruby/object:Gem::Requirement
246
+ requirements:
247
+ - - ">="
248
+ - !ruby/object:Gem::Version
249
+ version: 4.4.6
250
+ - - "<"
251
+ - !ruby/object:Gem::Version
252
+ version: 5.0.0
253
+ type: :runtime
254
+ prerelease: false
255
+ version_requirements: !ruby/object:Gem::Requirement
256
+ requirements:
257
+ - - ">="
258
+ - !ruby/object:Gem::Version
259
+ version: 4.4.6
260
+ - - "<"
261
+ - !ruby/object:Gem::Version
262
+ version: 5.0.0
263
+ - !ruby/object:Gem::Dependency
264
+ name: excon
265
+ requirement: !ruby/object:Gem::Requirement
266
+ requirements:
267
+ - - ">="
268
+ - !ruby/object:Gem::Version
269
+ version: 0.45.0
270
+ - - "<"
271
+ - !ruby/object:Gem::Version
272
+ version: 1.0.0
273
+ type: :runtime
274
+ prerelease: false
275
+ version_requirements: !ruby/object:Gem::Requirement
276
+ requirements:
277
+ - - ">="
278
+ - !ruby/object:Gem::Version
279
+ version: 0.45.0
280
+ - - "<"
281
+ - !ruby/object:Gem::Version
282
+ version: 1.0.0
283
+ - !ruby/object:Gem::Dependency
284
+ name: faraday
285
+ requirement: !ruby/object:Gem::Requirement
286
+ requirements:
287
+ - - "<"
288
+ - !ruby/object:Gem::Version
289
+ version: 0.16.0
290
+ type: :runtime
291
+ prerelease: false
292
+ version_requirements: !ruby/object:Gem::Requirement
293
+ requirements:
294
+ - - "<"
295
+ - !ruby/object:Gem::Version
296
+ version: 0.16.0
297
+ - !ruby/object:Gem::Dependency
298
+ name: faraday_middleware
299
+ requirement: !ruby/object:Gem::Requirement
300
+ requirements:
301
+ - - "<"
302
+ - !ruby/object:Gem::Version
303
+ version: 0.16.0
304
+ type: :runtime
305
+ prerelease: false
306
+ version_requirements: !ruby/object:Gem::Requirement
307
+ requirements:
308
+ - - "<"
309
+ - !ruby/object:Gem::Version
310
+ version: 0.16.0
311
+ - !ruby/object:Gem::Dependency
312
+ name: faraday-cookie_jar
313
+ requirement: !ruby/object:Gem::Requirement
314
+ requirements:
315
+ - - "~>"
316
+ - !ruby/object:Gem::Version
317
+ version: 0.0.6
318
+ type: :runtime
319
+ prerelease: false
320
+ version_requirements: !ruby/object:Gem::Requirement
321
+ requirements:
322
+ - - "~>"
323
+ - !ruby/object:Gem::Version
324
+ version: 0.0.6
325
+ - !ruby/object:Gem::Dependency
326
+ name: gh_inspector
327
+ requirement: !ruby/object:Gem::Requirement
328
+ requirements:
329
+ - - ">="
330
+ - !ruby/object:Gem::Version
331
+ version: 1.1.2
332
+ - - "<"
333
+ - !ruby/object:Gem::Version
334
+ version: 2.0.0
335
+ type: :runtime
336
+ prerelease: false
337
+ version_requirements: !ruby/object:Gem::Requirement
338
+ requirements:
339
+ - - ">="
340
+ - !ruby/object:Gem::Version
341
+ version: 1.1.2
342
+ - - "<"
343
+ - !ruby/object:Gem::Version
344
+ version: 2.0.0
345
+ - !ruby/object:Gem::Dependency
346
+ name: highline
347
+ requirement: !ruby/object:Gem::Requirement
348
+ requirements:
349
+ - - ">="
350
+ - !ruby/object:Gem::Version
351
+ version: 1.7.2
352
+ - - "<"
353
+ - !ruby/object:Gem::Version
354
+ version: 2.0.0
355
+ type: :runtime
356
+ prerelease: false
357
+ version_requirements: !ruby/object:Gem::Requirement
358
+ requirements:
359
+ - - ">="
360
+ - !ruby/object:Gem::Version
361
+ version: 1.7.2
362
+ - - "<"
363
+ - !ruby/object:Gem::Version
364
+ version: 2.0.0
365
+ - !ruby/object:Gem::Dependency
366
+ name: json
367
+ requirement: !ruby/object:Gem::Requirement
368
+ requirements:
369
+ - - "<"
370
+ - !ruby/object:Gem::Version
371
+ version: 3.0.0
372
+ type: :runtime
373
+ prerelease: false
374
+ version_requirements: !ruby/object:Gem::Requirement
375
+ requirements:
376
+ - - "<"
377
+ - !ruby/object:Gem::Version
378
+ version: 3.0.0
379
+ - !ruby/object:Gem::Dependency
380
+ name: mini_magick
381
+ requirement: !ruby/object:Gem::Requirement
382
+ requirements:
383
+ - - ">="
384
+ - !ruby/object:Gem::Version
385
+ version: 4.9.4
386
+ - - "<"
387
+ - !ruby/object:Gem::Version
388
+ version: 5.0.0
389
+ type: :runtime
390
+ prerelease: false
391
+ version_requirements: !ruby/object:Gem::Requirement
392
+ requirements:
393
+ - - ">="
394
+ - !ruby/object:Gem::Version
395
+ version: 4.9.4
396
+ - - "<"
397
+ - !ruby/object:Gem::Version
398
+ version: 5.0.0
399
+ - !ruby/object:Gem::Dependency
400
+ name: multi_xml
401
+ requirement: !ruby/object:Gem::Requirement
402
+ requirements:
403
+ - - "~>"
404
+ - !ruby/object:Gem::Version
405
+ version: '0.5'
406
+ type: :runtime
407
+ prerelease: false
408
+ version_requirements: !ruby/object:Gem::Requirement
409
+ requirements:
410
+ - - "~>"
411
+ - !ruby/object:Gem::Version
412
+ version: '0.5'
413
+ - !ruby/object:Gem::Dependency
414
+ name: security
415
+ requirement: !ruby/object:Gem::Requirement
416
+ requirements:
417
+ - - '='
418
+ - !ruby/object:Gem::Version
419
+ version: 0.1.3
420
+ type: :runtime
421
+ prerelease: false
422
+ version_requirements: !ruby/object:Gem::Requirement
423
+ requirements:
424
+ - - '='
425
+ - !ruby/object:Gem::Version
426
+ version: 0.1.3
427
+ - !ruby/object:Gem::Dependency
428
+ name: xcpretty-travis-formatter
429
+ requirement: !ruby/object:Gem::Requirement
430
+ requirements:
431
+ - - ">="
432
+ - !ruby/object:Gem::Version
433
+ version: 0.0.3
434
+ type: :runtime
435
+ prerelease: false
436
+ version_requirements: !ruby/object:Gem::Requirement
437
+ requirements:
438
+ - - ">="
439
+ - !ruby/object:Gem::Version
440
+ version: 0.0.3
441
+ - !ruby/object:Gem::Dependency
442
+ name: dotenv
443
+ requirement: !ruby/object:Gem::Requirement
444
+ requirements:
445
+ - - ">="
446
+ - !ruby/object:Gem::Version
447
+ version: 2.1.1
448
+ - - "<"
449
+ - !ruby/object:Gem::Version
450
+ version: 3.0.0
451
+ type: :runtime
452
+ prerelease: false
453
+ version_requirements: !ruby/object:Gem::Requirement
454
+ requirements:
455
+ - - ">="
456
+ - !ruby/object:Gem::Version
457
+ version: 2.1.1
458
+ - - "<"
459
+ - !ruby/object:Gem::Version
460
+ version: 3.0.0
461
+ - !ruby/object:Gem::Dependency
462
+ name: bundler
463
+ requirement: !ruby/object:Gem::Requirement
464
+ requirements:
465
+ - - ">="
466
+ - !ruby/object:Gem::Version
467
+ version: 1.12.0
468
+ - - "<"
469
+ - !ruby/object:Gem::Version
470
+ version: 3.0.0
471
+ type: :runtime
472
+ prerelease: false
473
+ version_requirements: !ruby/object:Gem::Requirement
474
+ requirements:
475
+ - - ">="
476
+ - !ruby/object:Gem::Version
477
+ version: 1.12.0
478
+ - - "<"
479
+ - !ruby/object:Gem::Version
480
+ version: 3.0.0
481
+ - !ruby/object:Gem::Dependency
482
+ name: emoji_regex
483
+ requirement: !ruby/object:Gem::Requirement
484
+ requirements:
485
+ - - ">="
486
+ - !ruby/object:Gem::Version
487
+ version: '0.1'
488
+ - - "<"
489
+ - !ruby/object:Gem::Version
490
+ version: '2.0'
491
+ type: :runtime
492
+ prerelease: false
493
+ version_requirements: !ruby/object:Gem::Requirement
494
+ requirements:
495
+ - - ">="
496
+ - !ruby/object:Gem::Version
497
+ version: '0.1'
498
+ - - "<"
499
+ - !ruby/object:Gem::Version
500
+ version: '2.0'
501
+ - !ruby/object:Gem::Dependency
502
+ name: rake
503
+ requirement: !ruby/object:Gem::Requirement
504
+ requirements:
505
+ - - "<"
506
+ - !ruby/object:Gem::Version
507
+ version: '12'
508
+ type: :development
509
+ prerelease: false
510
+ version_requirements: !ruby/object:Gem::Requirement
511
+ requirements:
512
+ - - "<"
513
+ - !ruby/object:Gem::Version
514
+ version: '12'
515
+ - !ruby/object:Gem::Dependency
516
+ name: rspec
517
+ requirement: !ruby/object:Gem::Requirement
518
+ requirements:
519
+ - - "~>"
520
+ - !ruby/object:Gem::Version
521
+ version: 3.5.0
522
+ type: :development
523
+ prerelease: false
524
+ version_requirements: !ruby/object:Gem::Requirement
525
+ requirements:
526
+ - - "~>"
527
+ - !ruby/object:Gem::Version
528
+ version: 3.5.0
529
+ - !ruby/object:Gem::Dependency
530
+ name: rspec_junit_formatter
531
+ requirement: !ruby/object:Gem::Requirement
532
+ requirements:
533
+ - - "~>"
534
+ - !ruby/object:Gem::Version
535
+ version: 0.2.3
536
+ type: :development
537
+ prerelease: false
538
+ version_requirements: !ruby/object:Gem::Requirement
539
+ requirements:
540
+ - - "~>"
541
+ - !ruby/object:Gem::Version
542
+ version: 0.2.3
543
+ - !ruby/object:Gem::Dependency
544
+ name: pry
545
+ requirement: !ruby/object:Gem::Requirement
546
+ requirements:
547
+ - - ">="
548
+ - !ruby/object:Gem::Version
549
+ version: '0'
550
+ type: :development
551
+ prerelease: false
552
+ version_requirements: !ruby/object:Gem::Requirement
553
+ requirements:
554
+ - - ">="
555
+ - !ruby/object:Gem::Version
556
+ version: '0'
557
+ - !ruby/object:Gem::Dependency
558
+ name: pry-byebug
559
+ requirement: !ruby/object:Gem::Requirement
560
+ requirements:
561
+ - - ">="
562
+ - !ruby/object:Gem::Version
563
+ version: '0'
564
+ type: :development
565
+ prerelease: false
566
+ version_requirements: !ruby/object:Gem::Requirement
567
+ requirements:
568
+ - - ">="
569
+ - !ruby/object:Gem::Version
570
+ version: '0'
571
+ - !ruby/object:Gem::Dependency
572
+ name: pry-rescue
573
+ requirement: !ruby/object:Gem::Requirement
574
+ requirements:
575
+ - - ">="
576
+ - !ruby/object:Gem::Version
577
+ version: '0'
578
+ type: :development
579
+ prerelease: false
580
+ version_requirements: !ruby/object:Gem::Requirement
581
+ requirements:
582
+ - - ">="
583
+ - !ruby/object:Gem::Version
584
+ version: '0'
585
+ - !ruby/object:Gem::Dependency
586
+ name: pry-stack_explorer
587
+ requirement: !ruby/object:Gem::Requirement
588
+ requirements:
589
+ - - ">="
590
+ - !ruby/object:Gem::Version
591
+ version: '0'
592
+ type: :development
593
+ prerelease: false
594
+ version_requirements: !ruby/object:Gem::Requirement
595
+ requirements:
596
+ - - ">="
597
+ - !ruby/object:Gem::Version
598
+ version: '0'
599
+ - !ruby/object:Gem::Dependency
600
+ name: yard
601
+ requirement: !ruby/object:Gem::Requirement
602
+ requirements:
603
+ - - "~>"
604
+ - !ruby/object:Gem::Version
605
+ version: 0.9.11
606
+ type: :development
607
+ prerelease: false
608
+ version_requirements: !ruby/object:Gem::Requirement
609
+ requirements:
610
+ - - "~>"
611
+ - !ruby/object:Gem::Version
612
+ version: 0.9.11
613
+ - !ruby/object:Gem::Dependency
614
+ name: webmock
615
+ requirement: !ruby/object:Gem::Requirement
616
+ requirements:
617
+ - - "~>"
618
+ - !ruby/object:Gem::Version
619
+ version: 2.3.2
620
+ type: :development
621
+ prerelease: false
622
+ version_requirements: !ruby/object:Gem::Requirement
623
+ requirements:
624
+ - - "~>"
625
+ - !ruby/object:Gem::Version
626
+ version: 2.3.2
627
+ - !ruby/object:Gem::Dependency
628
+ name: coveralls
629
+ requirement: !ruby/object:Gem::Requirement
630
+ requirements:
631
+ - - "~>"
632
+ - !ruby/object:Gem::Version
633
+ version: 0.8.13
634
+ type: :development
635
+ prerelease: false
636
+ version_requirements: !ruby/object:Gem::Requirement
637
+ requirements:
638
+ - - "~>"
639
+ - !ruby/object:Gem::Version
640
+ version: 0.8.13
641
+ - !ruby/object:Gem::Dependency
642
+ name: rubocop
643
+ requirement: !ruby/object:Gem::Requirement
644
+ requirements:
645
+ - - '='
646
+ - !ruby/object:Gem::Version
647
+ version: 0.49.1
648
+ type: :development
649
+ prerelease: false
650
+ version_requirements: !ruby/object:Gem::Requirement
651
+ requirements:
652
+ - - '='
653
+ - !ruby/object:Gem::Version
654
+ version: 0.49.1
655
+ - !ruby/object:Gem::Dependency
656
+ name: rubocop-require_tools
657
+ requirement: !ruby/object:Gem::Requirement
658
+ requirements:
659
+ - - ">="
660
+ - !ruby/object:Gem::Version
661
+ version: 0.1.2
662
+ type: :development
663
+ prerelease: false
664
+ version_requirements: !ruby/object:Gem::Requirement
665
+ requirements:
666
+ - - ">="
667
+ - !ruby/object:Gem::Version
668
+ version: 0.1.2
669
+ - !ruby/object:Gem::Dependency
670
+ name: rb-readline
671
+ requirement: !ruby/object:Gem::Requirement
672
+ requirements:
673
+ - - ">="
674
+ - !ruby/object:Gem::Version
675
+ version: '0'
676
+ type: :development
677
+ prerelease: false
678
+ version_requirements: !ruby/object:Gem::Requirement
679
+ requirements:
680
+ - - ">="
681
+ - !ruby/object:Gem::Version
682
+ version: '0'
683
+ - !ruby/object:Gem::Dependency
684
+ name: rest-client
685
+ requirement: !ruby/object:Gem::Requirement
686
+ requirements:
687
+ - - ">="
688
+ - !ruby/object:Gem::Version
689
+ version: 1.8.0
690
+ type: :development
691
+ prerelease: false
692
+ version_requirements: !ruby/object:Gem::Requirement
693
+ requirements:
694
+ - - ">="
695
+ - !ruby/object:Gem::Version
696
+ version: 1.8.0
697
+ - !ruby/object:Gem::Dependency
698
+ name: fakefs
699
+ requirement: !ruby/object:Gem::Requirement
700
+ requirements:
701
+ - - "~>"
702
+ - !ruby/object:Gem::Version
703
+ version: 0.8.1
704
+ type: :development
705
+ prerelease: false
706
+ version_requirements: !ruby/object:Gem::Requirement
707
+ requirements:
708
+ - - "~>"
709
+ - !ruby/object:Gem::Version
710
+ version: 0.8.1
711
+ - !ruby/object:Gem::Dependency
712
+ name: sinatra
713
+ requirement: !ruby/object:Gem::Requirement
714
+ requirements:
715
+ - - "~>"
716
+ - !ruby/object:Gem::Version
717
+ version: 1.4.8
718
+ type: :development
719
+ prerelease: false
720
+ version_requirements: !ruby/object:Gem::Requirement
721
+ requirements:
722
+ - - "~>"
723
+ - !ruby/object:Gem::Version
724
+ version: 1.4.8
725
+ - !ruby/object:Gem::Dependency
726
+ name: xcov
727
+ requirement: !ruby/object:Gem::Requirement
728
+ requirements:
729
+ - - "~>"
730
+ - !ruby/object:Gem::Version
731
+ version: 1.4.1
732
+ type: :development
733
+ prerelease: false
734
+ version_requirements: !ruby/object:Gem::Requirement
735
+ requirements:
736
+ - - "~>"
737
+ - !ruby/object:Gem::Version
738
+ version: 1.4.1
739
+ - !ruby/object:Gem::Dependency
740
+ name: climate_control
741
+ requirement: !ruby/object:Gem::Requirement
742
+ requirements:
743
+ - - "~>"
744
+ - !ruby/object:Gem::Version
745
+ version: 0.2.0
746
+ type: :development
747
+ prerelease: false
748
+ version_requirements: !ruby/object:Gem::Requirement
749
+ requirements:
750
+ - - "~>"
751
+ - !ruby/object:Gem::Version
752
+ version: 0.2.0
753
+ description: The easiest way to automate your apps
754
+ email:
755
+ - knappj2@gmail.com
756
+ executables:
757
+ - bin-proxy
758
+ - pantograph
759
+ extensions: []
760
+ extra_rdoc_files: []
761
+ files:
762
+ - ".yardopts"
763
+ - LICENSE
764
+ - README.md
765
+ - bin/bin-proxy
766
+ - bin/pantograph
767
+ - pantograph/README.md
768
+ - pantograph/lib/assets/ActionDetails.md.erb
769
+ - pantograph/lib/assets/Actions.md.erb
770
+ - pantograph/lib/assets/DefaultPantfileTemplate
771
+ - pantograph/lib/assets/completions/completion.bash
772
+ - pantograph/lib/assets/completions/completion.fish
773
+ - pantograph/lib/assets/completions/completion.sh
774
+ - pantograph/lib/assets/completions/completion.zsh
775
+ - pantograph/lib/assets/custom_action_template.rb
776
+ - pantograph/lib/assets/report_template.xml.erb
777
+ - pantograph/lib/pantograph.rb
778
+ - pantograph/lib/pantograph/action.rb
779
+ - pantograph/lib/pantograph/action_collector.rb
780
+ - pantograph/lib/pantograph/actions/README.md
781
+ - pantograph/lib/pantograph/actions/actions_helper.rb
782
+ - pantograph/lib/pantograph/actions/add_extra_platforms.rb
783
+ - pantograph/lib/pantograph/actions/artifactory.rb
784
+ - pantograph/lib/pantograph/actions/bundle_install.rb
785
+ - pantograph/lib/pantograph/actions/changelog_from_git_commits.rb
786
+ - pantograph/lib/pantograph/actions/clipboard.rb
787
+ - pantograph/lib/pantograph/actions/cloc.rb
788
+ - pantograph/lib/pantograph/actions/create_pull_request.rb
789
+ - pantograph/lib/pantograph/actions/danger.rb
790
+ - pantograph/lib/pantograph/actions/debug.rb
791
+ - pantograph/lib/pantograph/actions/default_platform.rb
792
+ - pantograph/lib/pantograph/actions/download.rb
793
+ - pantograph/lib/pantograph/actions/echo.rb
794
+ - pantograph/lib/pantograph/actions/ensure_bundle_exec.rb
795
+ - pantograph/lib/pantograph/actions/ensure_env_vars.rb
796
+ - pantograph/lib/pantograph/actions/ensure_git_branch.rb
797
+ - pantograph/lib/pantograph/actions/ensure_git_status_clean.rb
798
+ - pantograph/lib/pantograph/actions/erb.rb
799
+ - pantograph/lib/pantograph/actions/get_build_number_repository.rb
800
+ - pantograph/lib/pantograph/actions/get_github_release.rb
801
+ - pantograph/lib/pantograph/actions/git_add.rb
802
+ - pantograph/lib/pantograph/actions/git_branch.rb
803
+ - pantograph/lib/pantograph/actions/git_commit.rb
804
+ - pantograph/lib/pantograph/actions/git_pull.rb
805
+ - pantograph/lib/pantograph/actions/git_submodule_update.rb
806
+ - pantograph/lib/pantograph/actions/git_tag_exists.rb
807
+ - pantograph/lib/pantograph/actions/github_api.rb
808
+ - pantograph/lib/pantograph/actions/gradle.rb
809
+ - pantograph/lib/pantograph/actions/import.rb
810
+ - pantograph/lib/pantograph/actions/import_from_git.rb
811
+ - pantograph/lib/pantograph/actions/is_ci.rb
812
+ - pantograph/lib/pantograph/actions/jira.rb
813
+ - pantograph/lib/pantograph/actions/lane_context.rb
814
+ - pantograph/lib/pantograph/actions/last_git_commit.rb
815
+ - pantograph/lib/pantograph/actions/last_git_tag.rb
816
+ - pantograph/lib/pantograph/actions/make_changelog_from_jenkins.rb
817
+ - pantograph/lib/pantograph/actions/min_pantograph_version.rb
818
+ - pantograph/lib/pantograph/actions/nexus_upload.rb
819
+ - pantograph/lib/pantograph/actions/notification.rb
820
+ - pantograph/lib/pantograph/actions/number_of_commits.rb
821
+ - pantograph/lib/pantograph/actions/opt_out_usage.rb
822
+ - pantograph/lib/pantograph/actions/pantograph_version.rb
823
+ - pantograph/lib/pantograph/actions/println.rb
824
+ - pantograph/lib/pantograph/actions/prompt.rb
825
+ - pantograph/lib/pantograph/actions/push_git_tags.rb
826
+ - pantograph/lib/pantograph/actions/push_to_git_remote.rb
827
+ - pantograph/lib/pantograph/actions/puts.rb
828
+ - pantograph/lib/pantograph/actions/reset_git_repo.rb
829
+ - pantograph/lib/pantograph/actions/rocket.rb
830
+ - pantograph/lib/pantograph/actions/rsync.rb
831
+ - pantograph/lib/pantograph/actions/ruby_version.rb
832
+ - pantograph/lib/pantograph/actions/say.rb
833
+ - pantograph/lib/pantograph/actions/scp.rb
834
+ - pantograph/lib/pantograph/actions/set_github_release.rb
835
+ - pantograph/lib/pantograph/actions/sh.rb
836
+ - pantograph/lib/pantograph/actions/skip_docs.rb
837
+ - pantograph/lib/pantograph/actions/slack.rb
838
+ - pantograph/lib/pantograph/actions/sonar.rb
839
+ - pantograph/lib/pantograph/actions/ssh.rb
840
+ - pantograph/lib/pantograph/actions/twitter.rb
841
+ - pantograph/lib/pantograph/actions/update_pantograph.rb
842
+ - pantograph/lib/pantograph/actions/zip.rb
843
+ - pantograph/lib/pantograph/auto_complete.rb
844
+ - pantograph/lib/pantograph/boolean.rb
845
+ - pantograph/lib/pantograph/cli_tools_distributor.rb
846
+ - pantograph/lib/pantograph/command_line_handler.rb
847
+ - pantograph/lib/pantograph/commands_generator.rb
848
+ - pantograph/lib/pantograph/configuration_helper.rb
849
+ - pantograph/lib/pantograph/core_ext/bundler_monkey_patch.rb
850
+ - pantograph/lib/pantograph/documentation/actions_list.rb
851
+ - pantograph/lib/pantograph/documentation/docs_generator.rb
852
+ - pantograph/lib/pantograph/documentation/markdown_docs_generator.rb
853
+ - pantograph/lib/pantograph/environment_printer.rb
854
+ - pantograph/lib/pantograph/erb_template_helper.rb
855
+ - pantograph/lib/pantograph/features.rb
856
+ - pantograph/lib/pantograph/helper/README.md
857
+ - pantograph/lib/pantograph/helper/dotenv_helper.rb
858
+ - pantograph/lib/pantograph/helper/gem_helper.rb
859
+ - pantograph/lib/pantograph/helper/git_helper.rb
860
+ - pantograph/lib/pantograph/helper/gradle_helper.rb
861
+ - pantograph/lib/pantograph/helper/sh_helper.rb
862
+ - pantograph/lib/pantograph/junit_generator.rb
863
+ - pantograph/lib/pantograph/lane.rb
864
+ - pantograph/lib/pantograph/lane_list.rb
865
+ - pantograph/lib/pantograph/lane_manager.rb
866
+ - pantograph/lib/pantograph/lane_manager_base.rb
867
+ - pantograph/lib/pantograph/markdown_table_formatter.rb
868
+ - pantograph/lib/pantograph/new_action.rb
869
+ - pantograph/lib/pantograph/one_off.rb
870
+ - pantograph/lib/pantograph/other_action.rb
871
+ - pantograph/lib/pantograph/pant_file.rb
872
+ - pantograph/lib/pantograph/pantograph_require.rb
873
+ - pantograph/lib/pantograph/plugins/plugin_fetcher.rb
874
+ - pantograph/lib/pantograph/plugins/plugin_generator.rb
875
+ - pantograph/lib/pantograph/plugins/plugin_generator_ui.rb
876
+ - pantograph/lib/pantograph/plugins/plugin_info.rb
877
+ - pantograph/lib/pantograph/plugins/plugin_info_collector.rb
878
+ - pantograph/lib/pantograph/plugins/plugin_manager.rb
879
+ - pantograph/lib/pantograph/plugins/plugin_search.rb
880
+ - pantograph/lib/pantograph/plugins/plugin_update_manager.rb
881
+ - pantograph/lib/pantograph/plugins/plugins.rb
882
+ - pantograph/lib/pantograph/plugins/template/%gem_name%.gemspec.erb
883
+ - pantograph/lib/pantograph/plugins/template/.circleci/config.yml
884
+ - pantograph/lib/pantograph/plugins/template/.gitignore
885
+ - pantograph/lib/pantograph/plugins/template/.rspec
886
+ - pantograph/lib/pantograph/plugins/template/.rubocop.yml
887
+ - pantograph/lib/pantograph/plugins/template/.travis.yml
888
+ - pantograph/lib/pantograph/plugins/template/Gemfile
889
+ - pantograph/lib/pantograph/plugins/template/LICENSE.erb
890
+ - pantograph/lib/pantograph/plugins/template/README.md.erb
891
+ - pantograph/lib/pantograph/plugins/template/Rakefile
892
+ - pantograph/lib/pantograph/plugins/template/lib/pantograph/plugin/%plugin_name%.rb.erb
893
+ - pantograph/lib/pantograph/plugins/template/lib/pantograph/plugin/%plugin_name%/actions/%plugin_name%_action.rb.erb
894
+ - pantograph/lib/pantograph/plugins/template/lib/pantograph/plugin/%plugin_name%/helper/%plugin_name%_helper.rb.erb
895
+ - pantograph/lib/pantograph/plugins/template/lib/pantograph/plugin/%plugin_name%/version.rb.erb
896
+ - pantograph/lib/pantograph/plugins/template/pantograph/Pantfile.erb
897
+ - pantograph/lib/pantograph/plugins/template/pantograph/Pluginfile.erb
898
+ - pantograph/lib/pantograph/plugins/template/spec/%plugin_name%_action_spec.rb.erb
899
+ - pantograph/lib/pantograph/plugins/template/spec/spec_helper.rb.erb
900
+ - pantograph/lib/pantograph/runner.rb
901
+ - pantograph/lib/pantograph/server/action_command.rb
902
+ - pantograph/lib/pantograph/server/action_command_return.rb
903
+ - pantograph/lib/pantograph/server/command_executor.rb
904
+ - pantograph/lib/pantograph/server/command_parser.rb
905
+ - pantograph/lib/pantograph/server/control_command.rb
906
+ - pantograph/lib/pantograph/server/json_return_value_processor.rb
907
+ - pantograph/lib/pantograph/server/socket_server.rb
908
+ - pantograph/lib/pantograph/server/socket_server_action_command_executor.rb
909
+ - pantograph/lib/pantograph/setup/setup.rb
910
+ - pantograph/lib/pantograph/setup/setup_android.rb
911
+ - pantograph/lib/pantograph/setup/setup_ios.rb
912
+ - pantograph/lib/pantograph/shells.rb
913
+ - pantograph/lib/pantograph/supported_platforms.rb
914
+ - pantograph/lib/pantograph/tools.rb
915
+ - pantograph/lib/pantograph/version.rb
916
+ - pantograph_core/README.md
917
+ - pantograph_core/lib/assets/XMLTemplate.xml.erb
918
+ - pantograph_core/lib/pantograph_core.rb
919
+ - pantograph_core/lib/pantograph_core/analytics/action_completion_context.rb
920
+ - pantograph_core/lib/pantograph_core/analytics/action_launch_context.rb
921
+ - pantograph_core/lib/pantograph_core/analytics/analytics_event_builder.rb
922
+ - pantograph_core/lib/pantograph_core/analytics/analytics_ingester_client.rb
923
+ - pantograph_core/lib/pantograph_core/analytics/analytics_session.rb
924
+ - pantograph_core/lib/pantograph_core/cert_checker.rb
925
+ - pantograph_core/lib/pantograph_core/command_executor.rb
926
+ - pantograph_core/lib/pantograph_core/configuration/commander_generator.rb
927
+ - pantograph_core/lib/pantograph_core/configuration/config_item.rb
928
+ - pantograph_core/lib/pantograph_core/configuration/configuration.rb
929
+ - pantograph_core/lib/pantograph_core/configuration/configuration_file.rb
930
+ - pantograph_core/lib/pantograph_core/core_ext/shellwords.rb
931
+ - pantograph_core/lib/pantograph_core/core_ext/string.rb
932
+ - pantograph_core/lib/pantograph_core/env.rb
933
+ - pantograph_core/lib/pantograph_core/feature/feature.rb
934
+ - pantograph_core/lib/pantograph_core/features.rb
935
+ - pantograph_core/lib/pantograph_core/globals.rb
936
+ - pantograph_core/lib/pantograph_core/helper.rb
937
+ - pantograph_core/lib/pantograph_core/keychain_importer.rb
938
+ - pantograph_core/lib/pantograph_core/languages.rb
939
+ - pantograph_core/lib/pantograph_core/module.rb
940
+ - pantograph_core/lib/pantograph_core/pantograph_folder.rb
941
+ - pantograph_core/lib/pantograph_core/pantograph_pty.rb
942
+ - pantograph_core/lib/pantograph_core/pkg_file_analyser.rb
943
+ - pantograph_core/lib/pantograph_core/print_table.rb
944
+ - pantograph_core/lib/pantograph_core/string_filters.rb
945
+ - pantograph_core/lib/pantograph_core/swag.rb
946
+ - pantograph_core/lib/pantograph_core/tag_version.rb
947
+ - pantograph_core/lib/pantograph_core/test_parser.rb
948
+ - pantograph_core/lib/pantograph_core/ui/disable_colors.rb
949
+ - pantograph_core/lib/pantograph_core/ui/errors.rb
950
+ - pantograph_core/lib/pantograph_core/ui/errors/pantograph_common_error.rb
951
+ - pantograph_core/lib/pantograph_core/ui/errors/pantograph_crash.rb
952
+ - pantograph_core/lib/pantograph_core/ui/errors/pantograph_error.rb
953
+ - pantograph_core/lib/pantograph_core/ui/errors/pantograph_exception.rb
954
+ - pantograph_core/lib/pantograph_core/ui/errors/pantograph_shell_error.rb
955
+ - pantograph_core/lib/pantograph_core/ui/github_issue_inspector_reporter.rb
956
+ - pantograph_core/lib/pantograph_core/ui/implementations/shell.rb
957
+ - pantograph_core/lib/pantograph_core/ui/interface.rb
958
+ - pantograph_core/lib/pantograph_core/ui/pantograph_runner.rb
959
+ - pantograph_core/lib/pantograph_core/ui/ui.rb
960
+ - pantograph_core/lib/pantograph_core/update_checker/changelog.rb
961
+ - pantograph_core/lib/pantograph_core/update_checker/update_checker.rb
962
+ homepage: https://pantograph.tools
963
+ licenses:
964
+ - MIT
965
+ metadata:
966
+ docs_url: https://docs.pantograph.tools
967
+ post_install_message:
968
+ rdoc_options: []
969
+ require_paths:
970
+ - pantograph_core/lib
971
+ - pantograph/lib
972
+ required_ruby_version: !ruby/object:Gem::Requirement
973
+ requirements:
974
+ - - ">="
975
+ - !ruby/object:Gem::Version
976
+ version: 2.0.0
977
+ required_rubygems_version: !ruby/object:Gem::Requirement
978
+ requirements:
979
+ - - ">="
980
+ - !ruby/object:Gem::Version
981
+ version: '0'
982
+ requirements: []
983
+ rubygems_version: 3.0.6
984
+ signing_key:
985
+ specification_version: 4
986
+ summary: The easiest way to automate your apps
987
+ test_files: []