jets-fs 1.6.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (379) hide show
  1. checksums.yaml +7 -0
  2. data/.circleci/bin/commit_docs.sh +26 -0
  3. data/.circleci/config.yml +126 -0
  4. data/.codebuild/README.md +68 -0
  5. data/.codebuild/bin/jets +3 -0
  6. data/.codebuild/buildspec-base.yml +14 -0
  7. data/.codebuild/integration.sh +72 -0
  8. data/.codebuild/jets.postman_collection.json +323 -0
  9. data/.codebuild/scripts/install-docker.sh +12 -0
  10. data/.codebuild/scripts/install-dynamodb-local.sh +22 -0
  11. data/.codebuild/scripts/install-java.sh +22 -0
  12. data/.codebuild/scripts/install-node.sh +4 -0
  13. data/.github/ISSUE_TEMPLATE.md +7 -0
  14. data/.github/ISSUE_TEMPLATE/bug_report.md +73 -0
  15. data/.github/ISSUE_TEMPLATE/documentation.md +27 -0
  16. data/.github/ISSUE_TEMPLATE/feature_request.md +64 -0
  17. data/.github/ISSUE_TEMPLATE/question.md +16 -0
  18. data/.github/PULL_REQUEST_TEMPLATE.md +42 -0
  19. data/.gitignore +24 -0
  20. data/.gitmodules +6 -0
  21. data/.python-version +1 -0
  22. data/.rspec +4 -0
  23. data/.ruby-version +1 -0
  24. data/CHANGELOG.md +533 -0
  25. data/Dockerfile +16 -0
  26. data/Dockerfile.base +53 -0
  27. data/Gemfile +14 -0
  28. data/Gemfile.lock +190 -0
  29. data/Guardfile +22 -0
  30. data/LICENSE.txt +22 -0
  31. data/Procfile +2 -0
  32. data/README.md +203 -0
  33. data/Rakefile +21 -0
  34. data/backers.md +16 -0
  35. data/bin/release +9 -0
  36. data/buildspec.yml +18 -0
  37. data/exe/jets +14 -0
  38. data/jets.gemspec +61 -0
  39. data/lib/jets.rb +71 -0
  40. data/lib/jets/application.rb +308 -0
  41. data/lib/jets/aws_info.rb +111 -0
  42. data/lib/jets/aws_services.rb +60 -0
  43. data/lib/jets/aws_services/stack_status.rb +59 -0
  44. data/lib/jets/booter.rb +130 -0
  45. data/lib/jets/builders.rb +16 -0
  46. data/lib/jets/builders/code_builder.rb +379 -0
  47. data/lib/jets/builders/code_size.rb +57 -0
  48. data/lib/jets/builders/gem_replacer.rb +76 -0
  49. data/lib/jets/builders/handler_generator.rb +172 -0
  50. data/lib/jets/builders/lambda_layer.rb +69 -0
  51. data/lib/jets/builders/md5.rb +60 -0
  52. data/lib/jets/builders/md5_zip.rb +61 -0
  53. data/lib/jets/builders/purger.rb +35 -0
  54. data/lib/jets/builders/rack_packager.rb +51 -0
  55. data/lib/jets/builders/rackup_wrappers/rackup +19 -0
  56. data/lib/jets/builders/rackup_wrappers/rackup.rb +7 -0
  57. data/lib/jets/builders/reconfigure_rails.rb +114 -0
  58. data/lib/jets/builders/reconfigure_rails/config/initializers/jets.rb +16 -0
  59. data/lib/jets/builders/ruby_packager.rb +207 -0
  60. data/lib/jets/builders/shim_vars.rb +5 -0
  61. data/lib/jets/builders/shim_vars/app.rb +78 -0
  62. data/lib/jets/builders/shim_vars/base.rb +25 -0
  63. data/lib/jets/builders/shim_vars/shared.rb +37 -0
  64. data/lib/jets/builders/templates/handler.rb +12 -0
  65. data/lib/jets/builders/tidy.rb +107 -0
  66. data/lib/jets/builders/util.rb +31 -0
  67. data/lib/jets/camelizer.rb +67 -0
  68. data/lib/jets/cfn.rb +6 -0
  69. data/lib/jets/cfn/builders.rb +20 -0
  70. data/lib/jets/cfn/builders/api_deployment_builder.rb +58 -0
  71. data/lib/jets/cfn/builders/api_gateway_builder.rb +80 -0
  72. data/lib/jets/cfn/builders/base_child_builder.rb +82 -0
  73. data/lib/jets/cfn/builders/controller_builder.rb +42 -0
  74. data/lib/jets/cfn/builders/function_builder.rb +14 -0
  75. data/lib/jets/cfn/builders/interface.rb +127 -0
  76. data/lib/jets/cfn/builders/job_builder.rb +14 -0
  77. data/lib/jets/cfn/builders/parent_builder.rb +93 -0
  78. data/lib/jets/cfn/builders/rule_builder.rb +24 -0
  79. data/lib/jets/cfn/builders/shared_builder.rb +14 -0
  80. data/lib/jets/cfn/ship.rb +189 -0
  81. data/lib/jets/cfn/status.rb +212 -0
  82. data/lib/jets/cfn/upload.rb +139 -0
  83. data/lib/jets/cli.rb +189 -0
  84. data/lib/jets/commands.rb +27 -0
  85. data/lib/jets/commands/base.rb +164 -0
  86. data/lib/jets/commands/build.rb +217 -0
  87. data/lib/jets/commands/call.rb +174 -0
  88. data/lib/jets/commands/call/anonymous_guesser.rb +96 -0
  89. data/lib/jets/commands/call/autoload_guesser.rb +112 -0
  90. data/lib/jets/commands/call/base_guesser.rb +33 -0
  91. data/lib/jets/commands/call/guesser.rb +48 -0
  92. data/lib/jets/commands/clean.rb +23 -0
  93. data/lib/jets/commands/clean/base.rb +24 -0
  94. data/lib/jets/commands/clean/build.rb +13 -0
  95. data/lib/jets/commands/clean/log.rb +107 -0
  96. data/lib/jets/commands/console.rb +13 -0
  97. data/lib/jets/commands/db.rb +15 -0
  98. data/lib/jets/commands/db/environment-task.rake +3 -0
  99. data/lib/jets/commands/db/tasks.rb +44 -0
  100. data/lib/jets/commands/dbconsole.rb +131 -0
  101. data/lib/jets/commands/delete.rb +143 -0
  102. data/lib/jets/commands/deploy.rb +131 -0
  103. data/lib/jets/commands/dynamodb.rb +22 -0
  104. data/lib/jets/commands/dynamodb/migrate.rb +9 -0
  105. data/lib/jets/commands/dynamodb/migrator.rb +36 -0
  106. data/lib/jets/commands/gems.rb +21 -0
  107. data/lib/jets/commands/help.rb +9 -0
  108. data/lib/jets/commands/help/build.md +6 -0
  109. data/lib/jets/commands/help/call.md +61 -0
  110. data/lib/jets/commands/help/clean/build.md +5 -0
  111. data/lib/jets/commands/help/clean/log.md +5 -0
  112. data/lib/jets/commands/help/console.md +18 -0
  113. data/lib/jets/commands/help/db/generate.md +8 -0
  114. data/lib/jets/commands/help/dbconsole.md +9 -0
  115. data/lib/jets/commands/help/delete.md +22 -0
  116. data/lib/jets/commands/help/deploy.md +32 -0
  117. data/lib/jets/commands/help/dynamodb/generate.md +52 -0
  118. data/lib/jets/commands/help/dynamodb/migrate.md +4 -0
  119. data/lib/jets/commands/help/gems/check.md +8 -0
  120. data/lib/jets/commands/help/generate.md +22 -0
  121. data/lib/jets/commands/help/import/rack.md +13 -0
  122. data/lib/jets/commands/help/import/rails.md +11 -0
  123. data/lib/jets/commands/help/new.md +42 -0
  124. data/lib/jets/commands/help/routes.md +16 -0
  125. data/lib/jets/commands/help/runner.md +17 -0
  126. data/lib/jets/commands/help/server.md +15 -0
  127. data/lib/jets/commands/help/status.md +14 -0
  128. data/lib/jets/commands/help/upgrade.md +5 -0
  129. data/lib/jets/commands/help/url.md +6 -0
  130. data/lib/jets/commands/import.rb +18 -0
  131. data/lib/jets/commands/import/base.rb +49 -0
  132. data/lib/jets/commands/import/cheatsheet.rb +35 -0
  133. data/lib/jets/commands/import/rack.rb +16 -0
  134. data/lib/jets/commands/import/rail.rb +74 -0
  135. data/lib/jets/commands/import/sequence.rb +90 -0
  136. data/lib/jets/commands/import/templates/config/database.yml +26 -0
  137. data/lib/jets/commands/import/templates/submodules-cheatsheet.md +89 -0
  138. data/lib/jets/commands/main.rb +152 -0
  139. data/lib/jets/commands/markdown.rb +8 -0
  140. data/lib/jets/commands/markdown/creator.rb +58 -0
  141. data/lib/jets/commands/markdown/index.rb +27 -0
  142. data/lib/jets/commands/markdown/page.rb +125 -0
  143. data/lib/jets/commands/markdown/shell.rb +11 -0
  144. data/lib/jets/commands/new.rb +157 -0
  145. data/lib/jets/commands/rake_command.rb +61 -0
  146. data/lib/jets/commands/rake_tasks.rb +45 -0
  147. data/lib/jets/commands/runner.rb +18 -0
  148. data/lib/jets/commands/sequence.rb +99 -0
  149. data/lib/jets/commands/stack_info.rb +30 -0
  150. data/lib/jets/commands/templates/skeleton/.gitignore +12 -0
  151. data/lib/jets/commands/templates/skeleton/.jetskeep +1 -0
  152. data/lib/jets/commands/templates/skeleton/.rspec +3 -0
  153. data/lib/jets/commands/templates/skeleton/Gemfile.tt +35 -0
  154. data/lib/jets/commands/templates/skeleton/Procfile +7 -0
  155. data/lib/jets/commands/templates/skeleton/README.md +11 -0
  156. data/lib/jets/commands/templates/skeleton/Rakefile +2 -0
  157. data/lib/jets/commands/templates/skeleton/app/controllers/application_controller.rb +2 -0
  158. data/lib/jets/commands/templates/skeleton/app/helpers/application_helper.rb +2 -0
  159. data/lib/jets/commands/templates/skeleton/app/jobs/application_job.rb +4 -0
  160. data/lib/jets/commands/templates/skeleton/app/models/application_item.rb +2 -0
  161. data/lib/jets/commands/templates/skeleton/app/models/application_record.rb +3 -0
  162. data/lib/jets/commands/templates/skeleton/app/views/layouts/application.html.erb.tt +25 -0
  163. data/lib/jets/commands/templates/skeleton/config.ru +5 -0
  164. data/lib/jets/commands/templates/skeleton/config/application.rb.tt +66 -0
  165. data/lib/jets/commands/templates/skeleton/config/database.yml.tt +26 -0
  166. data/lib/jets/commands/templates/skeleton/config/dynamodb.yml +22 -0
  167. data/lib/jets/commands/templates/skeleton/config/environments/development.rb +4 -0
  168. data/lib/jets/commands/templates/skeleton/config/environments/production.rb +4 -0
  169. data/lib/jets/commands/templates/skeleton/config/routes.rb +9 -0
  170. data/lib/jets/commands/templates/skeleton/db/.gitkeep +0 -0
  171. data/lib/jets/commands/templates/skeleton/public/404.html +67 -0
  172. data/lib/jets/commands/templates/skeleton/public/422.html +67 -0
  173. data/lib/jets/commands/templates/skeleton/public/500.html +66 -0
  174. data/lib/jets/commands/templates/skeleton/public/favicon.ico +0 -0
  175. data/lib/jets/commands/templates/skeleton/public/index.html.tt +91 -0
  176. data/lib/jets/commands/templates/skeleton/spec/controllers/posts_controller_spec.rb +15 -0
  177. data/lib/jets/commands/templates/skeleton/spec/fixtures/payloads/posts-index.json +51 -0
  178. data/lib/jets/commands/templates/skeleton/spec/fixtures/payloads/posts-show.json +53 -0
  179. data/lib/jets/commands/templates/skeleton/spec/spec_helper.rb.tt +30 -0
  180. data/lib/jets/commands/templates/webpacker/app/javascript/packs/application.js.tt +14 -0
  181. data/lib/jets/commands/templates/webpacker/app/javascript/packs/theme.scss.tt +24 -0
  182. data/lib/jets/commands/templates/webpacker/app/javascript/src/jets/crud.js +87 -0
  183. data/lib/jets/commands/upgrade.rb +146 -0
  184. data/lib/jets/commands/upgrade/templates/bin/webpack +19 -0
  185. data/lib/jets/commands/upgrade/templates/bin/webpack-dev-server +19 -0
  186. data/lib/jets/commands/url.rb +68 -0
  187. data/lib/jets/commands/webpacker_template.rb +18 -0
  188. data/lib/jets/controller.rb +16 -0
  189. data/lib/jets/controller/base.rb +103 -0
  190. data/lib/jets/controller/callbacks.rb +62 -0
  191. data/lib/jets/controller/cookies.rb +40 -0
  192. data/lib/jets/controller/cookies/jar.rb +269 -0
  193. data/lib/jets/controller/layout.rb +17 -0
  194. data/lib/jets/controller/middleware.rb +5 -0
  195. data/lib/jets/controller/middleware/cors.rb +60 -0
  196. data/lib/jets/controller/middleware/local.rb +119 -0
  197. data/lib/jets/controller/middleware/local/api_gateway.rb +93 -0
  198. data/lib/jets/controller/middleware/local/mimic_aws_call.rb +38 -0
  199. data/lib/jets/controller/middleware/local/route_matcher.rb +97 -0
  200. data/lib/jets/controller/middleware/main.rb +46 -0
  201. data/lib/jets/controller/middleware/webpacker_setup.rb +6 -0
  202. data/lib/jets/controller/params.rb +87 -0
  203. data/lib/jets/controller/rack.rb +5 -0
  204. data/lib/jets/controller/rack/adapter.rb +63 -0
  205. data/lib/jets/controller/rack/env.rb +105 -0
  206. data/lib/jets/controller/redirection.rb +55 -0
  207. data/lib/jets/controller/rendering.rb +84 -0
  208. data/lib/jets/controller/rendering/rack_renderer.rb +238 -0
  209. data/lib/jets/controller/request.rb +29 -0
  210. data/lib/jets/controller/response.rb +61 -0
  211. data/lib/jets/core.rb +211 -0
  212. data/lib/jets/core_ext/kernel.rb +56 -0
  213. data/lib/jets/db.rb +15 -0
  214. data/lib/jets/dotenv.rb +39 -0
  215. data/lib/jets/erb.rb +51 -0
  216. data/lib/jets/generator.rb +41 -0
  217. data/lib/jets/generator/templates/erb/controller/view.html.erb +2 -0
  218. data/lib/jets/generator/templates/erb/scaffold/_form.html.erb +39 -0
  219. data/lib/jets/generator/templates/erb/scaffold/edit.html.erb +6 -0
  220. data/lib/jets/generator/templates/erb/scaffold/index.html.erb +29 -0
  221. data/lib/jets/generator/templates/erb/scaffold/new.html.erb +5 -0
  222. data/lib/jets/generator/templates/erb/scaffold/show.html.erb +9 -0
  223. data/lib/jets/generator/templates/rails/assets/javascript.js +2 -0
  224. data/lib/jets/generator/templates/rails/assets/stylesheet.css +4 -0
  225. data/lib/jets/generator/templates/rails/controller/controller.rb +13 -0
  226. data/lib/jets/generator/templates/rails/helper/helper.rb +4 -0
  227. data/lib/jets/generator/templates/rails/scaffold/scaffold.css +80 -0
  228. data/lib/jets/generator/templates/rails/scaffold_controller/api_controller.rb +62 -0
  229. data/lib/jets/generator/templates/rails/scaffold_controller/controller.rb +79 -0
  230. data/lib/jets/inflections.rb +32 -0
  231. data/lib/jets/internal/app/controllers/jets/public_controller.rb +31 -0
  232. data/lib/jets/internal/app/controllers/jets/rack_controller.rb +25 -0
  233. data/lib/jets/internal/app/functions/jets/base_path.rb +153 -0
  234. data/lib/jets/internal/app/jobs/jets/preheat_job.rb +62 -0
  235. data/lib/jets/io.rb +14 -0
  236. data/lib/jets/job.rb +4 -0
  237. data/lib/jets/job/base.rb +29 -0
  238. data/lib/jets/job/dsl.rb +108 -0
  239. data/lib/jets/klass.rb +109 -0
  240. data/lib/jets/lambda.rb +18 -0
  241. data/lib/jets/lambda/dsl.rb +384 -0
  242. data/lib/jets/lambda/function.rb +29 -0
  243. data/lib/jets/lambda/function_constructor.rb +55 -0
  244. data/lib/jets/lambda/functions.rb +34 -0
  245. data/lib/jets/lambda/task.rb +111 -0
  246. data/lib/jets/logger.rb +24 -0
  247. data/lib/jets/mega.rb +7 -0
  248. data/lib/jets/mega/hash_converter.rb +25 -0
  249. data/lib/jets/mega/request.rb +140 -0
  250. data/lib/jets/mega/request/source.rb +21 -0
  251. data/lib/jets/middleware.rb +38 -0
  252. data/lib/jets/middleware/configurator.rb +84 -0
  253. data/lib/jets/middleware/default_stack.rb +49 -0
  254. data/lib/jets/middleware/layer.rb +34 -0
  255. data/lib/jets/middleware/stack.rb +77 -0
  256. data/lib/jets/naming.rb +49 -0
  257. data/lib/jets/overrides/lambda.rb +1 -0
  258. data/lib/jets/overrides/lambda/marshaller.rb +31 -0
  259. data/lib/jets/overrides/rails.rb +4 -0
  260. data/lib/jets/overrides/rails/asset_tag_helper.rb +114 -0
  261. data/lib/jets/overrides/rails/common_methods.rb +20 -0
  262. data/lib/jets/overrides/rails/rendering_helper.rb +26 -0
  263. data/lib/jets/overrides/rails/url_helper.rb +25 -0
  264. data/lib/jets/poly_fun.rb +82 -0
  265. data/lib/jets/poly_fun/base_executor.rb +125 -0
  266. data/lib/jets/poly_fun/lambda_executor.rb +16 -0
  267. data/lib/jets/poly_fun/node_error.rb +8 -0
  268. data/lib/jets/poly_fun/node_executor.rb +54 -0
  269. data/lib/jets/poly_fun/python_error.rb +8 -0
  270. data/lib/jets/poly_fun/python_executor.rb +23 -0
  271. data/lib/jets/preheat.rb +117 -0
  272. data/lib/jets/processors.rb +4 -0
  273. data/lib/jets/processors/deducer.rb +65 -0
  274. data/lib/jets/processors/main_processor.rb +59 -0
  275. data/lib/jets/rack_server.rb +80 -0
  276. data/lib/jets/rdoc.rb +30 -0
  277. data/lib/jets/resource.rb +74 -0
  278. data/lib/jets/resource/api_gateway.rb +9 -0
  279. data/lib/jets/resource/api_gateway/base_path.rb +5 -0
  280. data/lib/jets/resource/api_gateway/base_path/function.rb +42 -0
  281. data/lib/jets/resource/api_gateway/base_path/mapping.rb +44 -0
  282. data/lib/jets/resource/api_gateway/base_path/role.rb +76 -0
  283. data/lib/jets/resource/api_gateway/cors.rb +61 -0
  284. data/lib/jets/resource/api_gateway/deployment.rb +78 -0
  285. data/lib/jets/resource/api_gateway/domain_name.rb +59 -0
  286. data/lib/jets/resource/api_gateway/method.rb +98 -0
  287. data/lib/jets/resource/api_gateway/resource.rb +78 -0
  288. data/lib/jets/resource/api_gateway/rest_api.rb +60 -0
  289. data/lib/jets/resource/api_gateway/rest_api/change_detection.rb +42 -0
  290. data/lib/jets/resource/api_gateway/rest_api/logical_id.rb +63 -0
  291. data/lib/jets/resource/api_gateway/rest_api/routes.rb +11 -0
  292. data/lib/jets/resource/api_gateway/rest_api/routes/change.rb +12 -0
  293. data/lib/jets/resource/api_gateway/rest_api/routes/change/base.rb +130 -0
  294. data/lib/jets/resource/api_gateway/rest_api/routes/change/to.rb +29 -0
  295. data/lib/jets/resource/api_gateway/rest_api/routes/change/variable.rb +39 -0
  296. data/lib/jets/resource/api_gateway/rest_api/routes/collision.rb +123 -0
  297. data/lib/jets/resource/api_gateway/rest_api/routes/collision/variable_exception.rb +7 -0
  298. data/lib/jets/resource/associated.rb +26 -0
  299. data/lib/jets/resource/base.rb +28 -0
  300. data/lib/jets/resource/child_stack.rb +7 -0
  301. data/lib/jets/resource/child_stack/api_deployment.rb +56 -0
  302. data/lib/jets/resource/child_stack/api_gateway.rb +29 -0
  303. data/lib/jets/resource/child_stack/app_class.rb +112 -0
  304. data/lib/jets/resource/child_stack/base.rb +24 -0
  305. data/lib/jets/resource/child_stack/shared.rb +90 -0
  306. data/lib/jets/resource/config.rb +4 -0
  307. data/lib/jets/resource/config/config_rule.rb +74 -0
  308. data/lib/jets/resource/config/managed_rule.rb +15 -0
  309. data/lib/jets/resource/events.rb +3 -0
  310. data/lib/jets/resource/events/rule.rb +31 -0
  311. data/lib/jets/resource/iam.rb +8 -0
  312. data/lib/jets/resource/iam/application_role.rb +27 -0
  313. data/lib/jets/resource/iam/base_role_definition.rb +47 -0
  314. data/lib/jets/resource/iam/class_role.rb +74 -0
  315. data/lib/jets/resource/iam/function_role.rb +54 -0
  316. data/lib/jets/resource/iam/managed_policy.rb +22 -0
  317. data/lib/jets/resource/iam/policy_document.rb +41 -0
  318. data/lib/jets/resource/lambda.rb +5 -0
  319. data/lib/jets/resource/lambda/function.rb +216 -0
  320. data/lib/jets/resource/lambda/function/environment.rb +61 -0
  321. data/lib/jets/resource/lambda/gem_layer.rb +17 -0
  322. data/lib/jets/resource/lambda/layer_version.rb +44 -0
  323. data/lib/jets/resource/permission.rb +45 -0
  324. data/lib/jets/resource/replacer.rb +77 -0
  325. data/lib/jets/resource/route53.rb +3 -0
  326. data/lib/jets/resource/route53/record_set.rb +70 -0
  327. data/lib/jets/resource/s3.rb +17 -0
  328. data/lib/jets/resource/sns.rb +3 -0
  329. data/lib/jets/resource/sqs.rb +3 -0
  330. data/lib/jets/resource/standardizer.rb +42 -0
  331. data/lib/jets/route.rb +166 -0
  332. data/lib/jets/router.rb +175 -0
  333. data/lib/jets/router/scope.rb +30 -0
  334. data/lib/jets/rule.rb +4 -0
  335. data/lib/jets/rule/base.rb +19 -0
  336. data/lib/jets/rule/dsl.rb +110 -0
  337. data/lib/jets/spec_helpers.rb +52 -0
  338. data/lib/jets/spec_helpers/params.rb +10 -0
  339. data/lib/jets/spec_helpers/request.rb +98 -0
  340. data/lib/jets/spec_helpers/response.rb +5 -0
  341. data/lib/jets/stack.rb +103 -0
  342. data/lib/jets/stack/builder.rb +38 -0
  343. data/lib/jets/stack/definition.rb +50 -0
  344. data/lib/jets/stack/function.rb +60 -0
  345. data/lib/jets/stack/main.rb +5 -0
  346. data/lib/jets/stack/main/dsl.rb +33 -0
  347. data/lib/jets/stack/main/extensions/base.rb +45 -0
  348. data/lib/jets/stack/main/extensions/cloudwatch.rb +19 -0
  349. data/lib/jets/stack/main/extensions/lambda.rb +71 -0
  350. data/lib/jets/stack/main/extensions/sns.rb +12 -0
  351. data/lib/jets/stack/main/extensions/sqs.rb +36 -0
  352. data/lib/jets/stack/output.rb +38 -0
  353. data/lib/jets/stack/output/dsl.rb +19 -0
  354. data/lib/jets/stack/output/lookup.rb +36 -0
  355. data/lib/jets/stack/parameter.rb +38 -0
  356. data/lib/jets/stack/parameter/dsl.rb +42 -0
  357. data/lib/jets/stack/resource.rb +32 -0
  358. data/lib/jets/stack/resource/dsl.rb +19 -0
  359. data/lib/jets/tmp_loader.rb +52 -0
  360. data/lib/jets/turbine.rb +30 -0
  361. data/lib/jets/turbo.rb +47 -0
  362. data/lib/jets/turbo/database_yaml.rb +41 -0
  363. data/lib/jets/turbo/project/.gitignore +12 -0
  364. data/lib/jets/turbo/project/.jetskeep +1 -0
  365. data/lib/jets/turbo/project/Gemfile +16 -0
  366. data/lib/jets/turbo/project/Rakefile +2 -0
  367. data/lib/jets/turbo/project/app/controllers/application_controller.rb +2 -0
  368. data/lib/jets/turbo/project/app/helpers/application_helper.rb +2 -0
  369. data/lib/jets/turbo/project/app/jobs/application_job.rb +4 -0
  370. data/lib/jets/turbo/project/config.ru +5 -0
  371. data/lib/jets/turbo/project/config/application.rb +4 -0
  372. data/lib/jets/turbo/project/config/routes.rb +4 -0
  373. data/lib/jets/turbo/rail.rb +113 -0
  374. data/lib/jets/turbo/templates/config/database.yml +26 -0
  375. data/lib/jets/util.rb +38 -0
  376. data/lib/jets/version.rb +3 -0
  377. data/readme/prerelease.md +6 -0
  378. data/readme/testing.md +60 -0
  379. metadata +859 -0
@@ -0,0 +1,26 @@
1
+ default: &default
2
+ adapter: <%= @adapter %>
3
+ encoding: utf8
4
+ pool: <%%= ENV["DB_POOL"] || 5 %>
5
+ database: <%%= ENV['DB_NAME'] || '<%= @database_development %>' %>
6
+ <% if @adapter == 'postgresql' -%>
7
+ username: <%%= ENV['DB_USER'] || ENV['USER'] %>
8
+ <% else -%>
9
+ username: <%%= ENV['DB_USER'] || 'root' %>
10
+ <% end -%>
11
+ password: <%%= ENV['DB_PASS'] %>
12
+ host: <%%= ENV["DB_HOST"] %>
13
+ url: <%%= ENV['DATABASE_URL'] %> # takes higher precedence than other settings
14
+
15
+ development:
16
+ <<: *default
17
+ database: <%%= ENV['DB_NAME'] || '<%= @database_development %>' %>
18
+
19
+ test:
20
+ <<: *default
21
+ database: <%= @database_test %>
22
+
23
+ production:
24
+ <<: *default
25
+ database: <%= @database_production %>
26
+ url: <%%= ENV['DATABASE_URL'] %>
@@ -0,0 +1,89 @@
1
+ # Git Submodule Cheatsheet
2
+
3
+ Git submodules take a little bit of getting used to. This is a cheatsheet for Git Submodules to help learn how to use them. This file was generated as part of the `jets <%= @import_command %>` command.
4
+
5
+ ## Cheatsheet Summary
6
+
7
+ The important submodule commands are:
8
+
9
+ ### On fresh clone project
10
+
11
+ git clone <%= @jets_project_repo_url %>
12
+ git submodule init # required on a fresh clone, or update won't do anything
13
+ git submodule update # syncs submodule rack folder with what parent project has as commits
14
+
15
+ ### Updating
16
+
17
+ After doing a git pull on the Jets main project, you might notice changes to the submodule rack folder, you can update the rack folder with:
18
+
19
+ git submodule update # syncs submodule rack folder with what parent project has as commits
20
+
21
+ ## More Details
22
+
23
+ The rest of the guide will explain in a little more detail submodules.
24
+
25
+ ## What are Git Submodules?
26
+
27
+ Git submodules are a way to have a subfolder in your project be managed as a separate git repo. The submodule folder is its own separate git repo and has its own history. The parent git project references a commit from the submodule project to sync up the subfolder accordingly. Using submodules allows you to include a rack subfolder project into your Jets project code base and managed the rack project as a separate git repo.
28
+
29
+ By using the `--submodule` option when you run the `jets import` command, Jets imports the rack project to the rack folder as a submodule. This allows you to keep development of the rack project independent from the development of the Jets project. This is a useful setup if you are testing [Jets Mega Mode](http://rubyonjets.com/docs/megamode/) for more extended periods of time.
30
+
31
+ We'll show you how to managed and sync the `rack` submodule folder with the parent Jets project folder.
32
+
33
+ ### rack submodule
34
+
35
+ A rack folder was added to your Jets project as a git submodule. Essentially this command was run.
36
+
37
+ git submodule add --force <%= @rack_repo_url %> rack
38
+
39
+ The rack submodule folder gets immediately synced as a part of that `git submodule add` command. This has already happened as part of the `jets <%= @import_command %>, we're just explaining the underlying command in case you're interested.
40
+
41
+ ### Fresh Clone
42
+
43
+ **IMPORTANT**: On a fresh clone of your project, submodule folders do not automatically update and appear "empty". This can be confusing for people who don't use submodules often. So here are the commands to update and sync the submodule folder:
44
+
45
+ git clone <%= @jets_project_repo_url %>
46
+ git submodule init # important to run init or next update will do nothing
47
+ git submodule update # after this the rack folder will no longer be empty
48
+ # and will have code from <%= @rack_repo_url %>
49
+
50
+ ### Remove submodule
51
+
52
+ If you ever decide to remove the submodule from your project, here are the commands.
53
+
54
+ git submodule deinit rack
55
+ git rm rack
56
+ # then add and commit your changes
57
+
58
+ ## Updating Projects
59
+
60
+ The typical workflow is to go into the rack folder and run `git pull` to update the submodule folder to the latest changes. Then you cd back up to the main Jets project folder and run `git add`. This updates the project submodule commit reference, which then allows others to pull down the changes and resync the submodules to the same commit. We'll go through some examples to help explain:
61
+
62
+ ### Updating rack folder submodule
63
+
64
+ Here's an example where we will update the rack submodule folder to the latest `master` branch. Remember the master branch refers to the `rack` submodule folder of the <%= @rack_repo_url %> in this case.
65
+
66
+ cd my-jets-project # root of the Jets project
67
+ cd rack # in the submodule now, which contains a different repo history
68
+ git checkout master # on a fresh clone, the submodule folder will point to a specific git sha instead of a branch
69
+ git pull # get latest changes in master
70
+ cd .. # back to parent Jets project
71
+ git status # notice, it'll say: modified: rack (new commits)
72
+ git add rack # updates the main projects' reference to the submodule git commit
73
+ git commit -m "update rack submodule"
74
+ git push # send your changes to everyone else
75
+
76
+ Eventually, later another developer will pull down your changes on the Jets project and notice that the submodules have been updated. When he runs a `git pull` and then does a `git status` he'll notice this:
77
+
78
+ $ git pull # another developer pulled down the changes
79
+ $ git st # notice the changes
80
+ modified: rack (new commits)
81
+ $ git diff # another way a summary of the changes in the rack project
82
+ Submodule rack 6b0fb3a..4f6ea3f (rewind):
83
+ < test commit in rack submodule project
84
+
85
+ This is when the developer will need to resync the rack submodule folder. He does it with this:
86
+
87
+ git submodule update # updates the rack folder to the commit that the parent is referencing
88
+
89
+ That's it!
@@ -0,0 +1,152 @@
1
+ require "thor"
2
+
3
+ module Jets::Commands
4
+ class Main < Base
5
+
6
+ class_option :noop, type: :boolean
7
+
8
+ desc "build", "Builds and packages project for AWS Lambda"
9
+ long_desc Help.text(:build)
10
+ option :templates, type: :boolean, default: false, desc: "Only build the CloudFormation templates. Skip code building"
11
+ def build
12
+ Build.new(options).run
13
+ end
14
+
15
+ desc "deploy [environment]", "Builds and deploys project to AWS Lambda"
16
+ long_desc Help.text(:deploy)
17
+ # Note the environment is here to trick the Thor parser to allowing an
18
+ # environment parameter. It is not actually set here. It is set earlier
19
+ # in cli.rb: set_jets_env_from_cli_arg!
20
+ def deploy(environment=nil)
21
+ Deploy.new(options).run
22
+ end
23
+
24
+ desc "delete", "Delete the Jets project and all its resources"
25
+ long_desc Help.text(:delete)
26
+ option :sure, type: :boolean, desc: "Skip are you sure prompt."
27
+ option :wait, type: :boolean, default: true, desc: "Wait for stack deletion to complete."
28
+ # Note the environment is here to trick the Thor parser to allowing an
29
+ # environment parameter. It is not actually set here. It is set earlier
30
+ # in cli.rb: set_jets_env_from_cli_arg!
31
+ def delete(environment=nil)
32
+ Delete.new(options).run
33
+ end
34
+
35
+ desc "server", "Runs a local server that mimics API Gateway for development"
36
+ long_desc Help.text(:server)
37
+ option :port, default: "8888", desc: "use PORT"
38
+ option :host, default: "127.0.0.1", desc: "listen on HOST"
39
+ option :reload, type: :boolean, default: true, desc: "Enables hot-reloading for development"
40
+ def server
41
+ # shell out to shotgun for automatic reloading
42
+ o = options
43
+ server_command = o[:reload] ? "shotgun" : "rackup"
44
+ command = "bundle exec #{server_command} --port #{o[:port]} --host #{o[:host]}"
45
+ puts "=> #{command}".color(:green)
46
+ puts Jets::Booter.message
47
+ Jets::Booter.check_config_ru!
48
+ Jets::RackServer.start(options) unless ENV['JETS_RACK'] == '0' # rack server runs in background by default
49
+ system(command)
50
+ end
51
+
52
+ desc "routes", "Print out your application routes"
53
+ long_desc Help.text(:routes)
54
+ def routes
55
+ puts Jets::Router.routes_help
56
+ end
57
+
58
+ desc "console", "REPL console with Jets environment loaded"
59
+ long_desc Help.text(:console)
60
+ def console
61
+ Console.run
62
+ end
63
+
64
+ desc "runner", "Run Ruby code in the context of Jets app non-interactively"
65
+ long_desc Help.text(:runner)
66
+ def runner(code)
67
+ Runner.run(code)
68
+ end
69
+
70
+ desc "dbconsole", "Starts DB REPL console"
71
+ long_desc Help.text(:dbconsole)
72
+ def dbconsole
73
+ Dbconsole.start(*args)
74
+ end
75
+
76
+ # Command is called 'call' because invoke is a Thor keyword.
77
+ desc "call [function] [event]", "Call a lambda function on AWS or locally"
78
+ long_desc Help.text(:call)
79
+ option :invocation_type, default: "RequestResponse", desc: "RequestResponse, Event, or DryRun"
80
+ option :log_type, default: "Tail", desc: "Works if invocation_type set to RequestResponse"
81
+ option :qualifier, desc: "Lambda function version or alias name"
82
+ option :show_log, type: :boolean, desc: "Shows last 4KB of log in the x-amz-log-result header"
83
+ option :lambda_proxy, type: :boolean, default: true, desc: "Enables automatic Lambda proxy transformation of the event payload"
84
+ option :guess, type: :boolean, default: true, desc: "Enables guess mode. Uses inference to allows use of all dashes to specify functions. Smart mode verifies that the function exists in the code base."
85
+ option :local, type: :boolean, desc: "Enables local mode. Instead of invoke the AWS Lambda function, the method gets called locally with current app code. With local mode guess mode is always used."
86
+ def call(function_name, payload='')
87
+ # Printing to stdout can mangle up the response when piping
88
+ # the value to jq. For example:
89
+ #
90
+ # `jets call --local .. | jq`
91
+ #
92
+ # By redirecting stderr we can use jq safely.
93
+ #
94
+ $stdout.sync = true
95
+ $stderr.sync = true
96
+ $stdout = $stderr # jets call operation
97
+ Call.new(function_name, payload, options).run
98
+ end
99
+
100
+ desc "generate [type] [args]", "Generates things like scaffolds"
101
+ long_desc Help.text(:generate)
102
+ def generate(generator, *args)
103
+ Jets::Generator.invoke(generator, *args)
104
+ end
105
+
106
+ desc "status", "Shows the current status of the Jets app"
107
+ long_desc Help.text(:status)
108
+ def status
109
+ Jets::Cfn::Status.new(options).run
110
+ end
111
+
112
+ desc "url", "App url if routes are defined"
113
+ long_desc Help.text(:url)
114
+ def url
115
+ Jets::Commands::Url.new(options).display
116
+ end
117
+
118
+ desc "secret", "Generates secret"
119
+ long_desc Help.text(:secret)
120
+ def secret
121
+ puts SecureRandom.hex(64)
122
+ end
123
+
124
+ desc "middleware", "Prints list of middleware"
125
+ long_desc Help.text(:middleware)
126
+ def middleware
127
+ stack = Jets.application.middlewares
128
+ stack.middlewares.each do |middleware|
129
+ puts "use #{middleware.name}"
130
+ end
131
+ puts "run #{Jets.application.endpoint}"
132
+ end
133
+
134
+ desc "upgrade", "Upgrade Jets"
135
+ long_desc Help.text(:upgrade)
136
+ def upgrade
137
+ Jets::Commands::Upgrade.new(options).run
138
+ end
139
+
140
+ desc "version", "Prints Jets version"
141
+ long_desc Help.text(:version)
142
+ def version
143
+ puts Jets.version
144
+ end
145
+
146
+ long_desc Help.text(:new)
147
+ Jets::Commands::New.cli_options.each do |args|
148
+ option(*args)
149
+ end
150
+ register(Jets::Commands::New, "new", "new", "Creates a starter skeleton jets project")
151
+ end
152
+ end
@@ -0,0 +1,8 @@
1
+ module Jets::Commands
2
+ module Markdown
3
+ autoload :Creator, 'jets/commands/markdown/creator'
4
+ autoload :Index, 'jets/commands/markdown/index'
5
+ autoload :Page, 'jets/commands/markdown/page'
6
+ autoload :Shell, 'jets/commands/markdown/shell'
7
+ end
8
+ end
@@ -0,0 +1,58 @@
1
+ module Jets::Commands::Markdown
2
+ class Creator
3
+ cattr_accessor :mute
4
+
5
+ def self.create_all
6
+ clean
7
+ new.create_all
8
+ end
9
+
10
+ def self.clean
11
+ FileUtils.rm_rf("docs/_reference")
12
+ FileUtils.rm_f("docs/reference.md")
13
+ end
14
+
15
+ def cli_classes
16
+ Jets::Commands::Base.namespaced_commands.map do |full_command|
17
+ # IE of full_command: dynamodb:generate
18
+ Jets::CLI.new([full_command]).lookup(full_command)
19
+ end.uniq
20
+ end
21
+
22
+ def create_all
23
+ create_index
24
+
25
+ cli_classes.each do |cli_class|
26
+ # cli_class examples:
27
+ # Jets::Commands::Main
28
+ # Jets::Commands::Db
29
+ # Jets::Commands::Dynamodb::Migrate
30
+ cli_class.commands.each do |command|
31
+ command_name = command.first
32
+
33
+ page = Page.new(cli_class: cli_class, command_name: command_name)
34
+ create_page(page)
35
+ end
36
+ end
37
+ end
38
+
39
+ def create_page(page)
40
+ puts "Creating page: #{page.path}..."
41
+ FileUtils.mkdir_p(File.dirname(page.path))
42
+ IO.write(page.path, page.doc)
43
+ end
44
+
45
+ def create_index
46
+ create_include_reference
47
+ page = Index.new
48
+ FileUtils.mkdir_p(File.dirname(page.path))
49
+ puts "Creating index: #{page.path}"
50
+ IO.write(page.path, page.doc)
51
+ end
52
+
53
+ def create_include_reference
54
+ path = "docs/_includes/reference.md"
55
+ IO.write(path, "Generic tool description. Please edit #{path} with a description.") unless File.exist?(path)
56
+ end
57
+ end
58
+ end
@@ -0,0 +1,27 @@
1
+ module Jets::Commands::Markdown
2
+ class Index
3
+ def path
4
+ "docs/reference.md"
5
+ end
6
+
7
+ def command_list
8
+ commands = Jets::Commands::Base.namespaced_commands.sort.reject {|c| c.include?('help') }
9
+ commands.map do |full_command|
10
+ # Example: [jets deploy]({% link _reference/jets-deploy.md %})
11
+ link = full_command.gsub(':','-')
12
+ "* [jets #{full_command}]({% link _reference/jets-#{link}.md %})"
13
+ end.join("\n")
14
+ end
15
+
16
+ def doc
17
+ <<-EOL
18
+ ---
19
+ title: CLI Reference
20
+ ---
21
+ {% include reference.md %}
22
+
23
+ #{command_list}
24
+ EOL
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,125 @@
1
+ module Jets::Commands::Markdown
2
+ class Page
3
+ attr_reader :cli_name
4
+ def initialize(cli_class:, command_name:)
5
+ @cli_class = cli_class # IE: Jets::Commands::Main
6
+ @command_name = command_name # IE: generate
7
+
8
+ @cli_name = "jets"
9
+ @command = @cli_class.commands[@command_name]
10
+ end
11
+
12
+ def usage
13
+ banner = @cli_class.send(:banner, @command) # banner is protected method
14
+ invoking_command = File.basename($0) # could be rspec, etc
15
+ banner.sub(invoking_command, cli_name)
16
+ end
17
+
18
+ def full_command
19
+ [namespace, @command_name].compact.join(':')
20
+ end
21
+
22
+ def namespace
23
+ ns = @cli_class.to_s.sub('Jets::Commands::','').underscore.gsub('/','-')
24
+ ns == 'main' ? nil : ns
25
+ end
26
+
27
+ def description
28
+ @command.description
29
+ end
30
+
31
+ def options
32
+ shell = Shell.new
33
+ @cli_class.send(:class_options_help, shell, nil => @command.options.values)
34
+ text = shell.stdout.string
35
+ return "" if text.empty? # there are no options
36
+
37
+ lines = text.split("\n")[1..-1] # remove first line wihth "Options: "
38
+ lines.map! do |line|
39
+ # remove 2 leading spaces
40
+ line.sub(/^ /, '')
41
+ end
42
+ lines.join("\n")
43
+ end
44
+
45
+ # Use command's long description as main description
46
+ def long_description
47
+ text = @command.long_description
48
+ return "" if text.nil? # empty description
49
+
50
+ lines = text.split("\n")
51
+ lines.map do |line|
52
+ # In the CLI help, we use 2 spaces to designate commands
53
+ # In Markdown we need 4 spaces.
54
+ line.sub(/^ \b/, ' ')
55
+ end.join("\n")
56
+ end
57
+
58
+ def path
59
+ full_name = [cli_name, namespace, @command_name].compact.join('-')
60
+ "docs/_reference/#{full_name}.md"
61
+ end
62
+
63
+ def doc
64
+ <<-EOL
65
+ #{front_matter}
66
+ #{usage_markdown}
67
+ #{long_desc_markdown}
68
+ #{options_markdown}
69
+ EOL
70
+ end
71
+
72
+ def front_matter
73
+ command = [cli_name, full_command].compact.join(' ')
74
+ <<-EOL
75
+ ---
76
+ title: #{command}
77
+ reference: true
78
+ ---
79
+ EOL
80
+ end
81
+
82
+ def usage_markdown
83
+ <<-EOL
84
+ ## Usage
85
+
86
+ #{usage}
87
+ EOL
88
+ end
89
+
90
+ def desc_markdown
91
+ <<-EOL
92
+ ## Description
93
+
94
+ #{description}
95
+ EOL
96
+ end
97
+
98
+ # If the Thor long_description is empty then use the description.
99
+ def long_desc_markdown
100
+ return desc_markdown if long_description.empty?
101
+
102
+ <<-EOL
103
+ ## Description
104
+
105
+ #{description}.
106
+
107
+ #{long_description}
108
+ EOL
109
+ end
110
+
111
+ # handles blank options
112
+ def options_markdown
113
+ return '' if options.empty?
114
+
115
+ <<-EOL
116
+ ## Options
117
+
118
+ ```
119
+ #{options}
120
+ ```
121
+ EOL
122
+ end
123
+
124
+ end
125
+ end