gooddata-edge 0.6.27.edge

Sign up to get free protection for your applications and to get access to all the features.
Files changed (364) hide show
  1. checksums.yaml +7 -0
  2. data/.document +5 -0
  3. data/.gitignore +36 -0
  4. data/.rspec +3 -0
  5. data/.rubocop.yml +89 -0
  6. data/.yardopts +22 -0
  7. data/CHANGELOG.md +196 -0
  8. data/CLI.md +439 -0
  9. data/DEPENDENCIES.md +817 -0
  10. data/Gemfile +4 -0
  11. data/Guardfile +5 -0
  12. data/LICENSE +22 -0
  13. data/LICENSE.rb +5 -0
  14. data/README.md +75 -0
  15. data/Rakefile +179 -0
  16. data/TODO.md +32 -0
  17. data/authors.sh +4 -0
  18. data/bin/gooddata +7 -0
  19. data/dependency_decisions.yml +104 -0
  20. data/gooddata +9 -0
  21. data/gooddata.gemspec +63 -0
  22. data/lib/gooddata.rb +31 -0
  23. data/lib/gooddata/app/app.rb +16 -0
  24. data/lib/gooddata/bricks/base_downloader.rb +86 -0
  25. data/lib/gooddata/bricks/brick.rb +38 -0
  26. data/lib/gooddata/bricks/bricks.rb +15 -0
  27. data/lib/gooddata/bricks/middleware/aws_middleware.rb +29 -0
  28. data/lib/gooddata/bricks/middleware/base_middleware.rb +56 -0
  29. data/lib/gooddata/bricks/middleware/bench_middleware.rb +24 -0
  30. data/lib/gooddata/bricks/middleware/bulk_salesforce_middleware.rb +37 -0
  31. data/lib/gooddata/bricks/middleware/decode_params_middleware.rb +20 -0
  32. data/lib/gooddata/bricks/middleware/fs_download_middleware.rb +48 -0
  33. data/lib/gooddata/bricks/middleware/fs_upload_middleware.rb +36 -0
  34. data/lib/gooddata/bricks/middleware/gooddata_middleware.rb +39 -0
  35. data/lib/gooddata/bricks/middleware/logger_middleware.rb +29 -0
  36. data/lib/gooddata/bricks/middleware/middleware.rb +12 -0
  37. data/lib/gooddata/bricks/middleware/restforce_middleware.rb +61 -0
  38. data/lib/gooddata/bricks/middleware/stdout_middleware.rb +23 -0
  39. data/lib/gooddata/bricks/middleware/twitter_middleware.rb +29 -0
  40. data/lib/gooddata/bricks/middleware/undot_params_middleware.rb +37 -0
  41. data/lib/gooddata/bricks/pipeline.rb +32 -0
  42. data/lib/gooddata/bricks/utils.rb +18 -0
  43. data/lib/gooddata/cli/cli.rb +27 -0
  44. data/lib/gooddata/cli/commands/auth_cmd.rb +29 -0
  45. data/lib/gooddata/cli/commands/domain_cmd.rb +28 -0
  46. data/lib/gooddata/cli/commands/project_cmd.rb +45 -0
  47. data/lib/gooddata/cli/hooks.rb +57 -0
  48. data/lib/gooddata/cli/shared.rb +61 -0
  49. data/lib/gooddata/cli/terminal.rb +20 -0
  50. data/lib/gooddata/client.rb +67 -0
  51. data/lib/gooddata/commands/api.rb +64 -0
  52. data/lib/gooddata/commands/auth.rb +107 -0
  53. data/lib/gooddata/commands/base.rb +12 -0
  54. data/lib/gooddata/commands/commands.rb +12 -0
  55. data/lib/gooddata/commands/datasets.rb +148 -0
  56. data/lib/gooddata/commands/datawarehouse.rb +20 -0
  57. data/lib/gooddata/commands/domain.rb +40 -0
  58. data/lib/gooddata/commands/process.rb +67 -0
  59. data/lib/gooddata/commands/project.rb +175 -0
  60. data/lib/gooddata/commands/projects.rb +20 -0
  61. data/lib/gooddata/commands/role.rb +36 -0
  62. data/lib/gooddata/commands/runners.rb +47 -0
  63. data/lib/gooddata/commands/scaffold.rb +69 -0
  64. data/lib/gooddata/commands/user.rb +39 -0
  65. data/lib/gooddata/connection.rb +127 -0
  66. data/lib/gooddata/core/core.rb +12 -0
  67. data/lib/gooddata/core/logging.rb +105 -0
  68. data/lib/gooddata/core/nil_logger.rb +23 -0
  69. data/lib/gooddata/core/project.rb +74 -0
  70. data/lib/gooddata/core/rest.rb +149 -0
  71. data/lib/gooddata/core/user.rb +20 -0
  72. data/lib/gooddata/data/data.rb +12 -0
  73. data/lib/gooddata/data/guesser.rb +122 -0
  74. data/lib/gooddata/exceptions/attr_element_not_found.rb +16 -0
  75. data/lib/gooddata/exceptions/command_failed.rb +11 -0
  76. data/lib/gooddata/exceptions/exceptions.rb +12 -0
  77. data/lib/gooddata/exceptions/execution_limit_exceeded.rb +13 -0
  78. data/lib/gooddata/exceptions/filter_maqlization.rb +16 -0
  79. data/lib/gooddata/exceptions/malformed_user.rb +15 -0
  80. data/lib/gooddata/exceptions/no_project_error.rb +15 -0
  81. data/lib/gooddata/exceptions/object_migration.rb +32 -0
  82. data/lib/gooddata/exceptions/project_not_found.rb +13 -0
  83. data/lib/gooddata/exceptions/segment_not_empty.rb +18 -0
  84. data/lib/gooddata/exceptions/uncomputable_report.rb +13 -0
  85. data/lib/gooddata/exceptions/user_in_different_domain.rb +15 -0
  86. data/lib/gooddata/exceptions/validation_error.rb +16 -0
  87. data/lib/gooddata/extensions/big_decimal.rb +17 -0
  88. data/lib/gooddata/extensions/enumerable.rb +39 -0
  89. data/lib/gooddata/extensions/extensions.rb +10 -0
  90. data/lib/gooddata/extensions/false.rb +15 -0
  91. data/lib/gooddata/extensions/hash.rb +38 -0
  92. data/lib/gooddata/extensions/nil.rb +15 -0
  93. data/lib/gooddata/extensions/numeric.rb +15 -0
  94. data/lib/gooddata/extensions/object.rb +27 -0
  95. data/lib/gooddata/extensions/symbol.rb +15 -0
  96. data/lib/gooddata/extensions/true.rb +15 -0
  97. data/lib/gooddata/extract.rb +21 -0
  98. data/lib/gooddata/goodzilla/goodzilla.rb +159 -0
  99. data/lib/gooddata/helpers/auth_helpers.rb +75 -0
  100. data/lib/gooddata/helpers/csv_helper.rb +61 -0
  101. data/lib/gooddata/helpers/data_helper.rb +116 -0
  102. data/lib/gooddata/helpers/global_helpers.rb +331 -0
  103. data/lib/gooddata/helpers/global_helpers_params.rb +172 -0
  104. data/lib/gooddata/helpers/helpers.rb +10 -0
  105. data/lib/gooddata/mixins/author.rb +26 -0
  106. data/lib/gooddata/mixins/content_getter.rb +15 -0
  107. data/lib/gooddata/mixins/content_property_reader.rb +17 -0
  108. data/lib/gooddata/mixins/content_property_writer.rb +17 -0
  109. data/lib/gooddata/mixins/contributor.rb +20 -0
  110. data/lib/gooddata/mixins/data_getter.rb +15 -0
  111. data/lib/gooddata/mixins/data_property_reader.rb +19 -0
  112. data/lib/gooddata/mixins/data_property_writer.rb +19 -0
  113. data/lib/gooddata/mixins/inspector.rb +53 -0
  114. data/lib/gooddata/mixins/is_attribute.rb +17 -0
  115. data/lib/gooddata/mixins/is_dimension.rb +17 -0
  116. data/lib/gooddata/mixins/is_fact.rb +17 -0
  117. data/lib/gooddata/mixins/is_label.rb +19 -0
  118. data/lib/gooddata/mixins/links.rb +15 -0
  119. data/lib/gooddata/mixins/md_finders.rb +77 -0
  120. data/lib/gooddata/mixins/md_grantees.rb +42 -0
  121. data/lib/gooddata/mixins/md_id_to_uri.rb +34 -0
  122. data/lib/gooddata/mixins/md_json.rb +15 -0
  123. data/lib/gooddata/mixins/md_lock.rb +87 -0
  124. data/lib/gooddata/mixins/md_object_id.rb +15 -0
  125. data/lib/gooddata/mixins/md_object_indexer.rb +64 -0
  126. data/lib/gooddata/mixins/md_object_query.rb +128 -0
  127. data/lib/gooddata/mixins/md_relations.rb +43 -0
  128. data/lib/gooddata/mixins/meta_getter.rb +17 -0
  129. data/lib/gooddata/mixins/meta_property_reader.rb +19 -0
  130. data/lib/gooddata/mixins/meta_property_writer.rb +19 -0
  131. data/lib/gooddata/mixins/mixins.rb +19 -0
  132. data/lib/gooddata/mixins/not_attribute.rb +17 -0
  133. data/lib/gooddata/mixins/not_exportable.rb +15 -0
  134. data/lib/gooddata/mixins/not_fact.rb +17 -0
  135. data/lib/gooddata/mixins/not_group.rb +17 -0
  136. data/lib/gooddata/mixins/not_label.rb +19 -0
  137. data/lib/gooddata/mixins/not_metric.rb +19 -0
  138. data/lib/gooddata/mixins/obj_id.rb +15 -0
  139. data/lib/gooddata/mixins/rest_getters.rb +17 -0
  140. data/lib/gooddata/mixins/rest_resource.rb +47 -0
  141. data/lib/gooddata/mixins/root_key_getter.rb +15 -0
  142. data/lib/gooddata/mixins/root_key_setter.rb +15 -0
  143. data/lib/gooddata/mixins/timestamps.rb +19 -0
  144. data/lib/gooddata/mixins/to_json.rb +11 -0
  145. data/lib/gooddata/mixins/uri_getter.rb +9 -0
  146. data/lib/gooddata/models/blueprint/anchor_field.rb +64 -0
  147. data/lib/gooddata/models/blueprint/attribute_field.rb +29 -0
  148. data/lib/gooddata/models/blueprint/blueprint.rb +11 -0
  149. data/lib/gooddata/models/blueprint/blueprint_field.rb +70 -0
  150. data/lib/gooddata/models/blueprint/dashboard_builder.rb +30 -0
  151. data/lib/gooddata/models/blueprint/dataset_blueprint.rb +449 -0
  152. data/lib/gooddata/models/blueprint/date_dimension.rb +14 -0
  153. data/lib/gooddata/models/blueprint/fact_field.rb +20 -0
  154. data/lib/gooddata/models/blueprint/label_field.rb +43 -0
  155. data/lib/gooddata/models/blueprint/project_blueprint.rb +746 -0
  156. data/lib/gooddata/models/blueprint/project_builder.rb +83 -0
  157. data/lib/gooddata/models/blueprint/reference_field.rb +43 -0
  158. data/lib/gooddata/models/blueprint/schema_blueprint.rb +160 -0
  159. data/lib/gooddata/models/blueprint/schema_builder.rb +89 -0
  160. data/lib/gooddata/models/blueprint/to_manifest.rb +181 -0
  161. data/lib/gooddata/models/blueprint/to_wire.rb +154 -0
  162. data/lib/gooddata/models/client.rb +182 -0
  163. data/lib/gooddata/models/client_synchronization_result.rb +31 -0
  164. data/lib/gooddata/models/client_synchronization_result_details.rb +41 -0
  165. data/lib/gooddata/models/datawarehouse.rb +92 -0
  166. data/lib/gooddata/models/domain.rb +479 -0
  167. data/lib/gooddata/models/execution.rb +115 -0
  168. data/lib/gooddata/models/execution_detail.rb +81 -0
  169. data/lib/gooddata/models/from_wire.rb +160 -0
  170. data/lib/gooddata/models/invitation.rb +75 -0
  171. data/lib/gooddata/models/links.rb +50 -0
  172. data/lib/gooddata/models/membership.rb +441 -0
  173. data/lib/gooddata/models/metadata.rb +272 -0
  174. data/lib/gooddata/models/metadata/attribute.rb +134 -0
  175. data/lib/gooddata/models/metadata/dashboard.rb +108 -0
  176. data/lib/gooddata/models/metadata/dashboard/dashboard_item.rb +76 -0
  177. data/lib/gooddata/models/metadata/dashboard/filter_apply_item.rb +37 -0
  178. data/lib/gooddata/models/metadata/dashboard/filter_item.rb +64 -0
  179. data/lib/gooddata/models/metadata/dashboard/geo_chart_item.rb +56 -0
  180. data/lib/gooddata/models/metadata/dashboard/headline_item.rb +56 -0
  181. data/lib/gooddata/models/metadata/dashboard/iframe_item.rb +46 -0
  182. data/lib/gooddata/models/metadata/dashboard/report_item.rb +92 -0
  183. data/lib/gooddata/models/metadata/dashboard/text_item.rb +55 -0
  184. data/lib/gooddata/models/metadata/dashboard_tab.rb +141 -0
  185. data/lib/gooddata/models/metadata/dataset.rb +64 -0
  186. data/lib/gooddata/models/metadata/dimension.rb +54 -0
  187. data/lib/gooddata/models/metadata/fact.rb +44 -0
  188. data/lib/gooddata/models/metadata/label.rb +128 -0
  189. data/lib/gooddata/models/metadata/metadata.rb +12 -0
  190. data/lib/gooddata/models/metadata/metric.rb +198 -0
  191. data/lib/gooddata/models/metadata/report.rb +247 -0
  192. data/lib/gooddata/models/metadata/report_definition.rb +264 -0
  193. data/lib/gooddata/models/metadata/scheduled_mail.rb +274 -0
  194. data/lib/gooddata/models/metadata/scheduled_mail/dashboard_attachment.rb +62 -0
  195. data/lib/gooddata/models/metadata/scheduled_mail/report_attachment.rb +64 -0
  196. data/lib/gooddata/models/metadata/variable.rb +91 -0
  197. data/lib/gooddata/models/model.rb +282 -0
  198. data/lib/gooddata/models/models.rb +12 -0
  199. data/lib/gooddata/models/module_constants.rb +31 -0
  200. data/lib/gooddata/models/process.rb +316 -0
  201. data/lib/gooddata/models/profile.rb +426 -0
  202. data/lib/gooddata/models/project.rb +1514 -0
  203. data/lib/gooddata/models/project_creator.rb +126 -0
  204. data/lib/gooddata/models/project_metadata.rb +67 -0
  205. data/lib/gooddata/models/project_role.rb +79 -0
  206. data/lib/gooddata/models/report_data_result.rb +266 -0
  207. data/lib/gooddata/models/schedule.rb +518 -0
  208. data/lib/gooddata/models/segment.rb +201 -0
  209. data/lib/gooddata/models/tab_builder.rb +27 -0
  210. data/lib/gooddata/models/user_filters/mandatory_user_filter.rb +76 -0
  211. data/lib/gooddata/models/user_filters/user_filter.rb +100 -0
  212. data/lib/gooddata/models/user_filters/user_filter_builder.rb +512 -0
  213. data/lib/gooddata/models/user_filters/user_filters.rb +13 -0
  214. data/lib/gooddata/models/user_filters/variable_user_filter.rb +31 -0
  215. data/lib/gooddata/models/user_group.rb +241 -0
  216. data/lib/gooddata/rest/README.md +37 -0
  217. data/lib/gooddata/rest/client.rb +389 -0
  218. data/lib/gooddata/rest/connection.rb +765 -0
  219. data/lib/gooddata/rest/object.rb +69 -0
  220. data/lib/gooddata/rest/object_factory.rb +76 -0
  221. data/lib/gooddata/rest/resource.rb +27 -0
  222. data/lib/gooddata/rest/rest.rb +24 -0
  223. data/lib/gooddata/version.rb +23 -0
  224. data/lib/templates/bricks/brick.rb.erb +7 -0
  225. data/lib/templates/bricks/main.rb.erb +5 -0
  226. data/lib/templates/project/Goodfile.erb +4 -0
  227. data/lib/templates/project/data/commits.csv +4 -0
  228. data/lib/templates/project/data/devs.csv +4 -0
  229. data/lib/templates/project/data/repos.csv +3 -0
  230. data/lib/templates/project/model/model.rb.erb +20 -0
  231. data/spec/bricks/bricks_spec.rb +112 -0
  232. data/spec/bricks/default-config.json +8 -0
  233. data/spec/data/.gooddata +4 -0
  234. data/spec/data/blueprints/additional_dataset_module.json +32 -0
  235. data/spec/data/blueprints/big_blueprint_not_pruned.json +2079 -0
  236. data/spec/data/blueprints/invalid_blueprint.json +103 -0
  237. data/spec/data/blueprints/m_n_model.json +104 -0
  238. data/spec/data/blueprints/model_module.json +25 -0
  239. data/spec/data/blueprints/test_blueprint.json +38 -0
  240. data/spec/data/blueprints/test_project_model_spec.json +106 -0
  241. data/spec/data/cc/data/source/commits.csv +4 -0
  242. data/spec/data/cc/data/source/devs.csv +4 -0
  243. data/spec/data/cc/data/source/repos.csv +3 -0
  244. data/spec/data/cc/devel.prm +0 -0
  245. data/spec/data/cc/graph/graph.grf +11 -0
  246. data/spec/data/cc/workspace.prm +19 -0
  247. data/spec/data/column_based_permissions.csv +7 -0
  248. data/spec/data/column_based_permissions2.csv +6 -0
  249. data/spec/data/gd_gse_data_blueprint.json +1371 -0
  250. data/spec/data/gd_gse_data_manifest.json +1424 -0
  251. data/spec/data/gd_gse_data_model.json +1772 -0
  252. data/spec/data/gooddata_version_process/gooddata_version.rb +9 -0
  253. data/spec/data/gooddata_version_process/gooddata_version.zip +0 -0
  254. data/spec/data/hello_world_process/hello_world.rb +9 -0
  255. data/spec/data/hello_world_process/hello_world.zip +0 -0
  256. data/spec/data/line_based_permissions.csv +3 -0
  257. data/spec/data/manifests/test_blueprint.json +32 -0
  258. data/spec/data/manifests/test_project.json +107 -0
  259. data/spec/data/reports/left_attr_report.json +108 -0
  260. data/spec/data/reports/metric_only_one_line.json +83 -0
  261. data/spec/data/reports/report_1.json +197 -0
  262. data/spec/data/reports/top_attr_report.json +108 -0
  263. data/spec/data/ruby_params_process/ruby_params.rb +9 -0
  264. data/spec/data/ruby_process/deep_files/deep_stuff.txt +1 -0
  265. data/spec/data/ruby_process/process.rb +8 -0
  266. data/spec/data/ruby_process/stuff.txt +1 -0
  267. data/spec/data/superfluous_titles_view.json +81 -0
  268. data/spec/data/test-ci-data.csv +2 -0
  269. data/spec/data/users.csv +12 -0
  270. data/spec/data/wire_models/model_view.json +1775 -0
  271. data/spec/data/wire_models/nu_model.json +3046 -0
  272. data/spec/data/wire_models/test_blueprint.json +63 -0
  273. data/spec/data/wire_test_project.json +150 -0
  274. data/spec/environment/default.rb +41 -0
  275. data/spec/environment/develop.rb +31 -0
  276. data/spec/environment/environment.rb +18 -0
  277. data/spec/environment/hotfix.rb +21 -0
  278. data/spec/environment/production.rb +35 -0
  279. data/spec/environment/release.rb +21 -0
  280. data/spec/environment/staging.rb +30 -0
  281. data/spec/environment/staging_3.rb +36 -0
  282. data/spec/helpers/blueprint_helper.rb +26 -0
  283. data/spec/helpers/cli_helper.rb +36 -0
  284. data/spec/helpers/connection_helper.rb +41 -0
  285. data/spec/helpers/crypto_helper.rb +17 -0
  286. data/spec/helpers/csv_helper.rb +18 -0
  287. data/spec/helpers/process_helper.rb +33 -0
  288. data/spec/helpers/project_helper.rb +59 -0
  289. data/spec/helpers/schedule_helper.rb +31 -0
  290. data/spec/helpers/spec_helper.rb +15 -0
  291. data/spec/integration/blueprint_updates_spec.rb +101 -0
  292. data/spec/integration/blueprint_with_grain_spec.rb +72 -0
  293. data/spec/integration/clients_spec.rb +134 -0
  294. data/spec/integration/command_datawarehouse_spec.rb +39 -0
  295. data/spec/integration/command_projects_spec.rb +32 -0
  296. data/spec/integration/create_from_template_spec.rb +22 -0
  297. data/spec/integration/create_project_spec.rb +24 -0
  298. data/spec/integration/date_dim_switch_spec.rb +142 -0
  299. data/spec/integration/deprecated_load_spec.rb +58 -0
  300. data/spec/integration/full_process_schedule_spec.rb +298 -0
  301. data/spec/integration/full_project_spec.rb +569 -0
  302. data/spec/integration/over_to_user_filters_spec.rb +94 -0
  303. data/spec/integration/partial_md_export_import_spec.rb +42 -0
  304. data/spec/integration/project_spec.rb +264 -0
  305. data/spec/integration/rest_spec.rb +213 -0
  306. data/spec/integration/schedule_spec.rb +626 -0
  307. data/spec/integration/segments_spec.rb +141 -0
  308. data/spec/integration/user_filters_spec.rb +290 -0
  309. data/spec/integration/user_group_spec.rb +127 -0
  310. data/spec/integration/variables_spec.rb +188 -0
  311. data/spec/logging_in_logging_out_spec.rb +93 -0
  312. data/spec/spec_helper.rb +95 -0
  313. data/spec/unit/bricks/bricks_spec.rb +35 -0
  314. data/spec/unit/bricks/middleware/aws_middelware_spec.rb +51 -0
  315. data/spec/unit/bricks/middleware/bench_middleware_spec.rb +15 -0
  316. data/spec/unit/bricks/middleware/bulk_salesforce_middleware_spec.rb +15 -0
  317. data/spec/unit/bricks/middleware/gooddata_middleware_spec.rb +15 -0
  318. data/spec/unit/bricks/middleware/logger_middleware_spec.rb +15 -0
  319. data/spec/unit/bricks/middleware/restforce_middleware_spec.rb +15 -0
  320. data/spec/unit/bricks/middleware/stdout_middleware_spec.rb +15 -0
  321. data/spec/unit/bricks/middleware/twitter_middleware_spec.rb +15 -0
  322. data/spec/unit/cli/cli_spec.rb +17 -0
  323. data/spec/unit/cli/commands/cmd_auth_spec.rb +17 -0
  324. data/spec/unit/commands/command_projects_spec.rb +22 -0
  325. data/spec/unit/core/connection_spec.rb +57 -0
  326. data/spec/unit/core/logging_spec.rb +133 -0
  327. data/spec/unit/core/nil_logger_spec.rb +13 -0
  328. data/spec/unit/core/project_spec.rb +54 -0
  329. data/spec/unit/extensions/hash_spec.rb +23 -0
  330. data/spec/unit/godzilla/goodzilla_spec.rb +78 -0
  331. data/spec/unit/helpers/csv_helper_spec.rb +22 -0
  332. data/spec/unit/helpers/data_helper_spec.rb +61 -0
  333. data/spec/unit/helpers/global_helpers_spec.rb +111 -0
  334. data/spec/unit/helpers_spec.rb +86 -0
  335. data/spec/unit/models/blueprint/attributes_spec.rb +29 -0
  336. data/spec/unit/models/blueprint/dataset_spec.rb +121 -0
  337. data/spec/unit/models/blueprint/labels_spec.rb +44 -0
  338. data/spec/unit/models/blueprint/project_blueprint_spec.rb +648 -0
  339. data/spec/unit/models/blueprint/reference_spec.rb +29 -0
  340. data/spec/unit/models/blueprint/schema_builder_spec.rb +38 -0
  341. data/spec/unit/models/blueprint/to_wire_spec.rb +174 -0
  342. data/spec/unit/models/domain_spec.rb +144 -0
  343. data/spec/unit/models/execution_spec.rb +108 -0
  344. data/spec/unit/models/from_wire_spec.rb +296 -0
  345. data/spec/unit/models/invitation_spec.rb +17 -0
  346. data/spec/unit/models/membership_spec.rb +132 -0
  347. data/spec/unit/models/metadata_spec.rb +104 -0
  348. data/spec/unit/models/metric_spec.rb +117 -0
  349. data/spec/unit/models/model_spec.rb +82 -0
  350. data/spec/unit/models/params_spec.rb +118 -0
  351. data/spec/unit/models/profile_spec.rb +215 -0
  352. data/spec/unit/models/project_creator_spec.rb +127 -0
  353. data/spec/unit/models/project_role_spec.rb +94 -0
  354. data/spec/unit/models/project_spec.rb +162 -0
  355. data/spec/unit/models/report_result_data_spec.rb +199 -0
  356. data/spec/unit/models/schedule_spec.rb +418 -0
  357. data/spec/unit/models/to_manifest_spec.rb +63 -0
  358. data/spec/unit/models/unit_project_spec.rb +125 -0
  359. data/spec/unit/models/user_filters_spec.rb +95 -0
  360. data/spec/unit/models/variable_spec.rb +265 -0
  361. data/spec/unit/rest/polling_spec.rb +89 -0
  362. data/spec/unit/rest/resource_spec.rb +10 -0
  363. data/yard-server.sh +3 -0
  364. metadata +1125 -0
@@ -0,0 +1,817 @@
1
+ # gooddata-ruby
2
+
3
+ As of February 22, 2016 1:54pm. 83 total
4
+
5
+ ## Summary
6
+ * 62 MIT
7
+ * 6 Apache 2.0
8
+ * 4 ruby
9
+ * 3 unknown
10
+ * 3 BSD
11
+ * 1 2-clause BSDL
12
+ * 1 GPL-2.0, LGPL-2.1, MPL-1.1, New BSD, Simplified BSD
13
+ * 1 GNU GPL v2, MIT, Perl Artistic v2
14
+ * 1 Artistic 2.0, GPL-2, MIT
15
+ * 1 Simplified BSD
16
+
17
+
18
+
19
+ ## Items
20
+
21
+
22
+ <a name="ZenTest"></a>
23
+ ### <a href="https://github.com/seattlerb/zentest">ZenTest</a> v4.11.0 (development)
24
+ #### ZenTest provides 4 different tools: zentest, unit_diff, autotest, and multiruby
25
+
26
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
27
+
28
+ ZenTest provides 4 different tools: zentest, unit_diff, autotest, and
29
+ multiruby.
30
+
31
+ zentest scans your target and unit-test code and writes your missing
32
+ code based on simple naming rules, enabling XP at a much quicker pace.
33
+ zentest only works with Ruby and Minitest or Test::Unit. There is
34
+ enough evidence to show that this is still proving useful to users, so
35
+ it stays.
36
+
37
+ unit_diff is a command-line filter to diff expected results from
38
+ actual results and allow you to quickly see exactly what is wrong.
39
+ Do note that minitest 2.2+ provides an enhanced assert_equal obviating
40
+ the need for unit_diff
41
+
42
+ autotest is a continous testing facility meant to be used during
43
+ development. As soon as you save a file, autotest will run the
44
+ corresponding dependent tests.
45
+
46
+ multiruby runs anything you want on multiple versions of ruby. Great
47
+ for compatibility checking! Use multiruby_setup to manage your
48
+ installed versions.
49
+
50
+ <a name="addressable"></a>
51
+ ### <a href="https://github.com/sporkmonger/addressable">addressable</a> v2.3.8
52
+ #### URI Implementation
53
+
54
+ <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
55
+
56
+ Addressable is a replacement for the URI implementation that is part of
57
+ Ruby's standard library. It more closely conforms to the relevant RFCs and
58
+ adds support for IRIs and URI templates.
59
+
60
+
61
+ <a name="ast"></a>
62
+ ### <a href="https://whitequark.github.io/ast/">ast</a> v2.1.0
63
+ #### A library for working with Abstract Syntax Trees.
64
+
65
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
66
+
67
+ A library for working with Abstract Syntax Trees.
68
+
69
+ <a name="astrolabe"></a>
70
+ ### <a href="https://github.com/yujinakayama/astrolabe">astrolabe</a> v1.3.1
71
+ #### An object-oriented AST extension for Parser
72
+
73
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
74
+
75
+ An object-oriented AST extension for Parser
76
+
77
+ <a name="aws-sdk"></a>
78
+ ### <a href="http://aws.amazon.com/sdkforruby">aws-sdk</a> v1.66.0
79
+ #### AWS SDK for Ruby V1
80
+
81
+ <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
82
+
83
+ Version 1 of the AWS SDK for Ruby. Available as both `aws-sdk` and `aws-sdk-v1`.
84
+ Use `aws-sdk-v1` if you want to load v1 and v2 of the Ruby SDK in the same
85
+ application.
86
+
87
+ <a name="aws-sdk-v1"></a>
88
+ ### <a href="http://aws.amazon.com/sdkforruby">aws-sdk-v1</a> v1.66.0
89
+ #### AWS SDK for Ruby V1
90
+
91
+ <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
92
+
93
+ Version 1 of the AWS SDK for Ruby. Available as both `aws-sdk` and `aws-sdk-v1`.
94
+ Use `aws-sdk-v1` if you want to load v1 and v2 of the Ruby SDK in the same
95
+ application.
96
+
97
+ <a name="bundler"></a>
98
+ ### bundler v1.11.2 (development)
99
+ ####
100
+
101
+ unknown manually approved
102
+
103
+ >
104
+
105
+ ><cite> 2016-02-22</cite>
106
+
107
+
108
+
109
+ <a name="coderay"></a>
110
+ ### <a href="http://coderay.rubychan.de">coderay</a> v1.1.0
111
+ #### Fast syntax highlighting for selected languages.
112
+
113
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
114
+
115
+ Fast and easy syntax highlighting for selected languages, written in Ruby. Comes with RedCloth integration and LOC counter.
116
+
117
+ <a name="colored"></a>
118
+ ### <a href="http://github.com/defunkt/colored">colored</a> v1.2
119
+ #### Add some color to your life.
120
+
121
+ unknown manually approved
122
+
123
+ >
124
+
125
+ ><cite> 2016-02-22</cite>
126
+
127
+ >> puts "this is red".red
128
+
129
+ >> puts "this is red with a blue background (read: ugly)".red_on_blue
130
+
131
+ >> puts "this is red with an underline".red.underline
132
+
133
+ >> puts "this is really bold and really blue".bold.blue
134
+
135
+ >> logger.debug "hey this is broken!".red_on_yellow # in rails
136
+
137
+ >> puts Color.red "This is red" # but this part is mostly untested
138
+
139
+
140
+ <a name="crack"></a>
141
+ ### <a href="http://github.com/jnunemaker/crack">crack</a> v0.4.3
142
+ #### Really simple JSON and XML parsing, ripped from Merb and Rails.
143
+
144
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
145
+
146
+ Really simple JSON and XML parsing, ripped from Merb and Rails.
147
+
148
+ <a name="debase"></a>
149
+ ### <a href="https://github.com/denofevil/debase">debase</a> v0.2.1 (development)
150
+ #### debase is a fast implementation of the standard Ruby debugger debug.rb for Ruby 2.0
151
+
152
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
153
+
154
+ debase is a fast implementation of the standard Ruby debugger debug.rb for Ruby 2.0.
155
+ It is implemented by utilizing a new Ruby TracePoint class. The core component
156
+ provides support that front-ends can build on. It provides breakpoint
157
+ handling, bindings for stack frames among other things.
158
+
159
+
160
+ <a name="debase-ruby_core_source"></a>
161
+ ### <a href="http://github.com/os97673/debase-ruby_core_source">debase-ruby_core_source</a> v0.8.1
162
+ #### Provide Ruby core source files
163
+
164
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
165
+
166
+ Provide Ruby core source files for C extensions that need them.
167
+
168
+ <a name="diff-lcs"></a>
169
+ ### <a href="http://diff-lcs.rubyforge.org/">diff-lcs</a> v1.2.5
170
+ #### Diff::LCS computes the difference between two Enumerable sequences using the McIlroy-Hunt longest common subsequence (LCS) algorithm
171
+
172
+ <a href="http://opensource.org/licenses/mit-license">MIT</a>, Perl Artistic v2, GNU GPL v2 whitelisted
173
+
174
+ Diff::LCS computes the difference between two Enumerable sequences using the
175
+ McIlroy-Hunt longest common subsequence (LCS) algorithm. It includes utilities
176
+ to create a simple HTML diff output format and a standard diff-like tool.
177
+
178
+ This is release 1.2.4, fixing a bug introduced after diff-lcs 1.1.3 that did
179
+ not properly prune common sequences at the beginning of a comparison set.
180
+ Thanks to Paul Kunysch for fixing this issue.
181
+
182
+ Coincident with the release of diff-lcs 1.2.3, we reported an issue with
183
+ Rubinius in 1.9 mode
184
+ ({rubinius/rubinius#2268}[https://github.com/rubinius/rubinius/issues/2268]).
185
+ We are happy to report that this issue has been resolved.
186
+
187
+ <a name="docile"></a>
188
+ ### <a href="https://ms-ati.github.io/docile/">docile</a> v1.1.5
189
+ #### Docile keeps your Ruby DSLs tame and well-behaved
190
+
191
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
192
+
193
+ Docile turns any Ruby object into a DSL. Especially useful with the Builder pattern.
194
+
195
+ <a name="domain_name"></a>
196
+ ### <a href="https://github.com/knu/ruby-domain_name">domain_name</a> v0.5.25
197
+ #### Domain Name manipulation library for Ruby
198
+
199
+ <a href="http://opensource.org/licenses/bsd-license">Simplified BSD</a>, <a href="http://opensource.org/licenses/BSD-3-Clause">New BSD</a>, MPL-1.1, GPL-2.0, LGPL-2.1 manually approved
200
+
201
+ >
202
+
203
+ ><cite> 2016-02-22</cite>
204
+
205
+ This is a Domain Name manipulation library for Ruby.
206
+
207
+ It can also be used for cookie domain validation based on the Public
208
+ Suffix List.
209
+
210
+
211
+ <a name="erubis"></a>
212
+ ### <a href="http://www.kuwata-lab.com/erubis/">erubis</a> v2.7.0
213
+ #### a fast and extensible eRuby implementation which supports multi-language
214
+
215
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
216
+
217
+ Erubis is an implementation of eRuby and has the following features:
218
+
219
+ * Very fast, almost three times faster than ERB and about 10% faster than eruby.
220
+ * Multi-language support (Ruby/PHP/C/Java/Scheme/Perl/Javascript)
221
+ * Auto escaping support
222
+ * Auto trimming spaces around '<% %>'
223
+ * Embedded pattern changeable (default '<% %>')
224
+ * Enable to handle Processing Instructions (PI) as embedded pattern (ex. '<?rb ... ?>')
225
+ * Context object available and easy to combine eRuby template with YAML datafile
226
+ * Print statement available
227
+ * Easy to extend and customize in subclass
228
+ * Ruby on Rails support
229
+
230
+
231
+ <a name="faraday"></a>
232
+ ### <a href="https://github.com/lostisland/faraday">faraday</a> v0.9.2
233
+ #### HTTP/REST API client library.
234
+
235
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
236
+
237
+
238
+
239
+ <a name="faraday_middleware"></a>
240
+ ### <a href="https://github.com/lostisland/faraday_middleware">faraday_middleware</a> v0.10.0
241
+ #### Various middleware for Faraday
242
+
243
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
244
+
245
+ Various middleware for Faraday
246
+
247
+ <a name="ffi"></a>
248
+ ### <a href="http://wiki.github.com/ffi/ffi">ffi</a> v1.9.10
249
+ #### Ruby FFI
250
+
251
+ <a href="http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29">BSD</a> whitelisted
252
+
253
+ Ruby FFI library
254
+
255
+ <a name="formatador"></a>
256
+ ### <a href="http://github.com/geemus/formatador">formatador</a> v0.2.5
257
+ #### Ruby STDOUT text formatting
258
+
259
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
260
+
261
+ STDOUT text formatting
262
+
263
+ <a name="gli"></a>
264
+ ### <a href="http://davetron5000.github.com/gli">gli</a> v2.13.4
265
+ #### Build command-suite CLI apps that are awesome.
266
+
267
+ <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
268
+
269
+ Build command-suite CLI apps that are awesome. Bootstrap your app, add commands, options and documentation while maintaining a well-tested idiomatic command-line app
270
+
271
+ <a name="gooddata"></a>
272
+ ### <a href="http://github.com/gooddata/gooddata-ruby">gooddata</a> v0.6.24 (default)
273
+ #### A convenient Ruby wrapper around the GoodData RESTful API
274
+
275
+ <a href="http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29">BSD</a> whitelisted
276
+
277
+ Use the GoodData::Client class to integrate GoodData into your own application or use the CLI to work with GoodData directly from the command line.
278
+
279
+ <a name="guard"></a>
280
+ ### <a href="http://guardgem.org">guard</a> v2.13.0 (development)
281
+ #### Guard keeps an eye on your file modifications
282
+
283
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
284
+
285
+ Guard is a command line tool to easily handle events on file system modifications.
286
+
287
+ <a name="guard-compat"></a>
288
+ ### guard-compat v1.2.1
289
+ #### Tools for developing Guard compatible plugins
290
+
291
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
292
+
293
+ Helps creating valid Guard plugins and testing them
294
+
295
+ <a name="guard-rspec"></a>
296
+ ### <a href="https://rubygems.org/gems/guard-rspec">guard-rspec</a> v4.6.4 (development)
297
+ #### Guard gem for RSpec
298
+
299
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
300
+
301
+ Guard::RSpec automatically run your specs (much like autotest).
302
+
303
+ <a name="hashdiff"></a>
304
+ ### <a href="https://github.com/liufengyun/hashdiff">hashdiff</a> v0.2.3
305
+ #### HashDiff is a diff lib to compute the smallest difference between two hashes.
306
+
307
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
308
+
309
+ HashDiff is a diff lib to compute the smallest difference between two hashes.
310
+
311
+ <a name="hashie"></a>
312
+ ### <a href="https://github.com/intridea/hashie">hashie</a> v3.4.3
313
+ #### Your friendly neighborhood hash library.
314
+
315
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
316
+
317
+ Hashie is a collection of classes and mixins that make hashes more powerful.
318
+
319
+ <a name="highline"></a>
320
+ ### <a href="https://github.com/JEG2/highline">highline</a> v1.7.8
321
+ #### HighLine is a high-level command-line IO library.
322
+
323
+ <a href="http://www.ruby-lang.org/en/LICENSE.txt">ruby</a> whitelisted
324
+
325
+ A high-level IO library that provides validation, type conversion, and more for
326
+ command-line interfaces. HighLine also includes a complete menu system that can
327
+ crank out anything from simple list selection to complete shells with just
328
+ minutes of work.
329
+
330
+
331
+ <a name="http-cookie"></a>
332
+ ### <a href="https://github.com/sparklemotion/http-cookie">http-cookie</a> v1.0.2
333
+ #### A Ruby library to handle HTTP Cookies based on RFC 6265
334
+
335
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
336
+
337
+ HTTP::Cookie is a Ruby library to handle HTTP Cookies based on RFC 6265. It has with security, standards compliance and compatibility in mind, to behave just the same as today's major web browsers. It has builtin support for the legacy cookies.txt and the latest cookies.sqlite formats of Mozilla Firefox, and its modular API makes it easy to add support for a new backend store.
338
+
339
+ <a name="httparty"></a>
340
+ ### <a href="http://jnunemaker.github.com/httparty">httparty</a> v0.13.7
341
+ #### Makes http fun! Also, makes consuming restful web services dead easy.
342
+
343
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
344
+
345
+ Makes http fun! Also, makes consuming restful web services dead easy.
346
+
347
+ <a name="json"></a>
348
+ ### <a href="http://flori.github.com/json">json</a> v1.8.3
349
+ #### JSON Implementation for Ruby
350
+
351
+ <a href="http://www.ruby-lang.org/en/LICENSE.txt">ruby</a> whitelisted
352
+
353
+ This is a JSON implementation as a Ruby extension in C.
354
+
355
+ <a name="json_pure"></a>
356
+ ### <a href="http://flori.github.com/json">json_pure</a> v1.8.3
357
+ #### JSON Implementation for Ruby
358
+
359
+ <a href="http://www.ruby-lang.org/en/LICENSE.txt">ruby</a> whitelisted
360
+
361
+ This is a JSON implementation in pure Ruby.
362
+
363
+ <a name="license_finder"></a>
364
+ ### <a href="https://github.com/pivotal/LicenseFinder">license_finder</a> v2.0.4 (development)
365
+ #### Audit the OSS licenses of your application's dependencies.
366
+
367
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
368
+
369
+ LicenseFinder works with your package managers to find
370
+ dependencies, detect the licenses of the packages in them, compare
371
+ those licenses against a user-defined whitelist, and give you an
372
+ actionable exception report.
373
+
374
+
375
+ <a name="listen"></a>
376
+ ### <a href="https://github.com/guard/listen">listen</a> v3.0.5
377
+ #### Listen to file modifications
378
+
379
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
380
+
381
+ The Listen gem listens to file modifications and notifies you about the changes. Works everywhere!
382
+
383
+ <a name="lumberjack"></a>
384
+ ### <a href="http://github.com/bdurand/lumberjack">lumberjack</a> v1.0.9
385
+ #### A simple, powerful, and very fast logging utility that can be a drop in replacement for Logger or ActiveSupport::BufferedLogger.
386
+
387
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
388
+
389
+ A simple, powerful, and very fast logging utility that can be a drop in replacement for Logger or ActiveSupport::BufferedLogger. Provides support for automatically rolling log files even with multiple processes writing the same log file.
390
+
391
+ <a name="method_source"></a>
392
+ ### <a href="http://banisterfiend.wordpress.com">method_source</a> v0.8.2
393
+ #### retrieve the sourcecode for a method
394
+
395
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
396
+
397
+ retrieve the sourcecode for a method
398
+
399
+ <a name="mime-types"></a>
400
+ ### <a href="https://github.com/mime-types/ruby-mime-types/">mime-types</a> v2.99
401
+ #### The mime-types library provides a library and registry for information about MIME content type definitions
402
+
403
+ <a href="http://opensource.org/licenses/mit-license">MIT</a>, Artistic 2.0, GPL-2 whitelisted
404
+
405
+ The mime-types library provides a library and registry for information about
406
+ MIME content type definitions. It can be used to determine defined filename
407
+ extensions for MIME types, or to use filename extensions to look up the likely
408
+ MIME type definitions.
409
+
410
+ This is release 2.99, the deprecation version of mime-types 2.x, where
411
+ deprecation warnings are noisy and data that has been deprecated is now no
412
+ longer available. The data is both dropped from the data files and is stubbed
413
+ out as empty or +nil+ values as appropriate.
414
+
415
+ mime-types-2.6 was the last version of mime-types 2.x with newly available
416
+ features, and mime-types 2.99 will only receive quarterly updates to the IANA
417
+ registered MIME media types plus any security updates that may be required.
418
+
419
+ If the loss of the deprecated data matters, be sure to set your dependency
420
+ appropriately:
421
+
422
+ gem 'mime-types', '~> 2.6, < 2.99'
423
+
424
+ <a name="mini_portile2"></a>
425
+ ### <a href="http://github.com/flavorjones/mini_portile">mini_portile2</a> v2.0.0
426
+ #### Simplistic port-like solution for developers
427
+
428
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
429
+
430
+ Simplistic port-like solution for developers. It provides a standard and simplified way to compile against dependency libraries without messing up your system.
431
+
432
+ <a name="multi_json"></a>
433
+ ### <a href="http://github.com/intridea/multi_json">multi_json</a> v1.11.2
434
+ #### A common interface to multiple JSON libraries.
435
+
436
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
437
+
438
+ A common interface to multiple JSON libraries, including Oj, Yajl, the JSON gem (with C-extensions), the pure-Ruby JSON gem, NSJSONSerialization, gson.rb, JrJackson, and OkJson.
439
+
440
+ <a name="multi_xml"></a>
441
+ ### <a href="https://github.com/sferik/multi_xml">multi_xml</a> v0.5.5
442
+ #### A generic swappable back-end for XML parsing
443
+
444
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
445
+
446
+ Provides swappable XML backends utilizing LibXML, Nokogiri, Ox, or REXML.
447
+
448
+ <a name="multipart-post"></a>
449
+ ### <a href="https://github.com/nicksieger/multipart-post">multipart-post</a> v2.0.0
450
+ #### A multipart form post accessory for Net::HTTP.
451
+
452
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
453
+
454
+ Use with Net::HTTP to do multipart form posts. IO values that have #content_type, #original_filename, and #local_path will be posted as a binary file.
455
+
456
+ <a name="nenv"></a>
457
+ ### <a href="https://github.com/e2/nenv">nenv</a> v0.2.0
458
+ #### Convenience wrapper for Ruby's ENV
459
+
460
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
461
+
462
+ Using ENV is like using raw SQL statements in your code. We all know how that ends...
463
+
464
+ <a name="netrc"></a>
465
+ ### <a href="https://github.com/geemus/netrc">netrc</a> v0.11.0
466
+ #### Library to read and write netrc files.
467
+
468
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
469
+
470
+ This library can read and update netrc files, preserving formatting including comments and whitespace.
471
+
472
+ <a name="nokogiri"></a>
473
+ ### <a href="http://nokogiri.org">nokogiri</a> v1.6.7
474
+ #### Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser
475
+
476
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
477
+
478
+ Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser. Among
479
+ Nokogiri's many features is the ability to search documents via XPath
480
+ or CSS3 selectors.
481
+
482
+ XML is like violence - if it doesn’t solve your problems, you are not
483
+ using enough of it.
484
+
485
+ <a name="notiffany"></a>
486
+ ### <a href="https://github.com/guard/notiffany">notiffany</a> v0.0.8
487
+ #### Notifier library (extracted from Guard project)
488
+
489
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
490
+
491
+ Wrapper libray for most popular notification
492
+ libraries such as Growl, Libnotify, Notifu
493
+
494
+
495
+ <a name="parseconfig"></a>
496
+ ### <a href="http://github.com/datafolklabs/ruby-parseconfig/">parseconfig</a> v1.0.6
497
+ #### Config File Parser for Standard Unix/Linux Type Config Files
498
+
499
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
500
+
501
+ ParseConfig provides simple parsing of standard configuration files in the form of 'param = value'. It also supports nested [group] sections.
502
+
503
+ <a name="parser"></a>
504
+ ### <a href="https://github.com/whitequark/parser">parser</a> v2.2.3.0
505
+ #### A Ruby parser written in pure Ruby.
506
+
507
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
508
+
509
+ A Ruby parser written in pure Ruby.
510
+
511
+ <a name="pmap"></a>
512
+ ### <a href="https://github.com/bruceadams/pmap">pmap</a> v1.1.1
513
+ #### Add parallel methods into Enumerable: pmap and peach
514
+
515
+ <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
516
+
517
+ Add parallel methods into Enumerable: pmap and peach
518
+
519
+ <a name="powerpack"></a>
520
+ ### <a href="https://github.com/bbatsov/powerpack">powerpack</a> v0.1.1
521
+ #### A few useful extensions to core Ruby classes.
522
+
523
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
524
+
525
+ A few useful extensions to core Ruby classes.
526
+
527
+ <a name="pry"></a>
528
+ ### <a href="http://pryrepl.org">pry</a> v0.10.3
529
+ #### An IRB alternative and runtime developer console
530
+
531
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
532
+
533
+ An IRB alternative and runtime developer console
534
+
535
+ <a name="rainbow"></a>
536
+ ### <a href="https://github.com/sickill/rainbow">rainbow</a> v2.0.0
537
+ #### Colorize printed text on ANSI terminals
538
+
539
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
540
+
541
+ Colorize printed text on ANSI terminals
542
+
543
+ <a name="rake"></a>
544
+ ### rake v10.4.2 (development)
545
+ #### This rake is bundled with Ruby
546
+
547
+ unknown manually approved
548
+
549
+ >
550
+
551
+ ><cite> 2016-02-22</cite>
552
+
553
+
554
+
555
+ <a name="rake-notes"></a>
556
+ ### <a href="https://github.com/fgrehm/rake-notes">rake-notes</a> v0.2.0 (development)
557
+ #### rake notes task for non-Rails' projects
558
+
559
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
560
+
561
+ rake notes task for non-Rails' projects
562
+
563
+ <a name="rb-fsevent"></a>
564
+ ### <a href="http://rubygems.org/gems/rb-fsevent">rb-fsevent</a> v0.9.6
565
+ #### Very simple & usable FSEvents API
566
+
567
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
568
+
569
+ FSEvents API with Signals catching (without RubyCocoa)
570
+
571
+ <a name="rb-inotify"></a>
572
+ ### <a href="http://github.com/nex3/rb-inotify">rb-inotify</a> v0.9.5
573
+ #### A Ruby wrapper for Linux's inotify, using FFI
574
+
575
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
576
+
577
+ A Ruby wrapper for Linux's inotify, using FFI
578
+
579
+ <a name="redcarpet"></a>
580
+ ### <a href="http://github.com/vmg/redcarpet">redcarpet</a> v3.3.3 (development)
581
+ #### Markdown that smells nice
582
+
583
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
584
+
585
+ A fast, safe and extensible Markdown to (X)HTML parser
586
+
587
+ <a name="rest-client"></a>
588
+ ### <a href="https://github.com/rest-client/rest-client">rest-client</a> v1.8.0
589
+ #### Simple HTTP and REST client for Ruby, inspired by microframework syntax for specifying actions.
590
+
591
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
592
+
593
+ A simple HTTP and REST client for Ruby, inspired by the Sinatra microframework style of specifying actions: get, put, post, delete.
594
+
595
+ <a name="restforce"></a>
596
+ ### <a href="https://github.com/ejholmes/restforce">restforce</a> v2.1.2
597
+ #### A lightweight ruby client for the Salesforce REST API.
598
+
599
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
600
+
601
+ A lightweight ruby client for the Salesforce REST API.
602
+
603
+ <a name="rspec"></a>
604
+ ### <a href="http://github.com/rspec">rspec</a> v3.4.0 (development)
605
+ #### rspec-3.4.0
606
+
607
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
608
+
609
+ BDD for Ruby
610
+
611
+ <a name="rspec-core"></a>
612
+ ### <a href="http://github.com/rspec/rspec-core">rspec-core</a> v3.4.1
613
+ #### rspec-core-3.4.1
614
+
615
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
616
+
617
+ BDD for Ruby. RSpec runner and example groups.
618
+
619
+ <a name="rspec-expectations"></a>
620
+ ### <a href="http://github.com/rspec/rspec-expectations">rspec-expectations</a> v3.4.0
621
+ #### rspec-expectations-3.4.0
622
+
623
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
624
+
625
+ rspec-expectations provides a simple, readable API to express expected outcomes of a code example.
626
+
627
+ <a name="rspec-mocks"></a>
628
+ ### <a href="http://github.com/rspec/rspec-mocks">rspec-mocks</a> v3.4.0
629
+ #### rspec-mocks-3.4.0
630
+
631
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
632
+
633
+ RSpec's 'test double' framework, with support for stubbing and mocking
634
+
635
+ <a name="rspec-support"></a>
636
+ ### <a href="https://github.com/rspec/rspec-support">rspec-support</a> v3.4.1
637
+ #### rspec-support-3.4.1
638
+
639
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
640
+
641
+ Support utilities for RSpec gems
642
+
643
+ <a name="rubocop"></a>
644
+ ### <a href="http://github.com/bbatsov/rubocop">rubocop</a> v0.35.1 (development)
645
+ #### Automatic Ruby code style checking tool.
646
+
647
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
648
+
649
+ Automatic Ruby code style checking tool.
650
+ Aims to enforce the community-driven Ruby Style Guide.
651
+
652
+
653
+ <a name="ruby-debug-ide"></a>
654
+ ### <a href="https://github.com/ruby-debug/ruby-debug-ide">ruby-debug-ide</a> v0.6.0 (development)
655
+ #### IDE interface for ruby-debug.
656
+
657
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
658
+
659
+ An interface which glues ruby-debug to IDEs like Eclipse (RDT), NetBeans and RubyMine.
660
+
661
+
662
+ <a name="ruby-progressbar"></a>
663
+ ### <a href="https://github.com/jfelchner/ruby-progressbar">ruby-progressbar</a> v1.7.5
664
+ #### Ruby/ProgressBar is a flexible text progress bar library for Ruby.
665
+
666
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
667
+
668
+ Ruby/ProgressBar is an extremely flexible text progress bar library for Ruby.
669
+ The output can be customized with a flexible formatting system including:
670
+ percentage, bars of various formats, elapsed time and estimated time remaining.
671
+
672
+
673
+ <a name="rubyzip"></a>
674
+ ### <a href="http://github.com/rubyzip/rubyzip">rubyzip</a> v1.1.7
675
+ #### rubyzip is a ruby module for reading and writing zip files
676
+
677
+ <a href="http://opensource.org/licenses/bsd-license">Simplified BSD</a> whitelisted
678
+
679
+
680
+
681
+ <a name="safe_yaml"></a>
682
+ ### <a href="https://github.com/dtao/safe_yaml">safe_yaml</a> v1.0.4
683
+ #### SameYAML provides an alternative implementation of YAML.load suitable for accepting user input in Ruby applications.
684
+
685
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
686
+
687
+ Parse YAML safely
688
+
689
+ <a name="salesforce_bulk_query"></a>
690
+ ### <a href="https://github.com/cvengros/salesforce_bulk_query">salesforce_bulk_query</a> v0.2.0
691
+ #### Downloading data from Salesforce Bulk API made easy and scalable.
692
+
693
+ <a href="http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29">BSD</a> whitelisted
694
+
695
+ A library for downloading data from Salesforce Bulk API. We only focus on querying, other operations of the API aren't supported. Designed to handle a lot of data.
696
+
697
+ <a name="shellany"></a>
698
+ ### shellany v0.0.1
699
+ #### Simple, somewhat portable command capturing
700
+
701
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
702
+
703
+ MRI+JRuby compatible command output capturing
704
+
705
+ <a name="simplecov"></a>
706
+ ### <a href="http://github.com/colszowka/simplecov">simplecov</a> v0.11.1 (development)
707
+ #### Code coverage for Ruby 1.9+ with a powerful configuration library and automatic merging of coverage across test suites
708
+
709
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
710
+
711
+ Code coverage for Ruby 1.9+ with a powerful configuration library and automatic merging of coverage across test suites
712
+
713
+ <a name="simplecov-html"></a>
714
+ ### <a href="https://github.com/colszowka/simplecov-html">simplecov-html</a> v0.10.0
715
+ #### Default HTML formatter for SimpleCov code coverage tool for ruby 1.9+
716
+
717
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
718
+
719
+ Default HTML formatter for SimpleCov code coverage tool for ruby 1.9+
720
+
721
+ <a name="slop"></a>
722
+ ### <a href="http://github.com/leejarvis/slop">slop</a> v3.6.0
723
+ #### Simple Lightweight Option Parsing
724
+
725
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
726
+
727
+ A simple DSL for gathering options and parsing the command line
728
+
729
+ <a name="terminal-table"></a>
730
+ ### <a href="https://github.com/tj/terminal-table">terminal-table</a> v1.5.2
731
+ #### Simple, feature rich ascii table generation library
732
+
733
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
734
+
735
+
736
+
737
+ <a name="thor"></a>
738
+ ### <a href="http://whatisthor.com/">thor</a> v0.19.1
739
+ #### Thor is a toolkit for building powerful command-line interfaces.
740
+
741
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
742
+
743
+ Thor is a toolkit for building powerful command-line interfaces.
744
+
745
+ <a name="thread_safe"></a>
746
+ ### <a href="https://github.com/ruby-concurrency/thread_safe">thread_safe</a> v0.3.5
747
+ #### A collection of data structures and utilities to make thread-safe programming in Ruby easier
748
+
749
+ <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
750
+
751
+ Thread-safe collections and utilities for Ruby
752
+
753
+ <a name="tins"></a>
754
+ ### <a href="https://github.com/flori/tins">tins</a> v1.6.0
755
+ #### Useful stuff.
756
+
757
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
758
+
759
+ All the stuff that isn't good/big enough for a real library.
760
+
761
+ <a name="unf"></a>
762
+ ### <a href="https://github.com/knu/ruby-unf">unf</a> v0.1.4
763
+ #### A wrapper library to bring Unicode Normalization Form support to Ruby/JRuby
764
+
765
+ 2-clause BSDL manually approved
766
+
767
+ >
768
+
769
+ ><cite> 2016-02-22</cite>
770
+
771
+ This is a wrapper library to bring Unicode Normalization Form support
772
+ to Ruby/JRuby.
773
+
774
+
775
+ <a name="unf_ext"></a>
776
+ ### <a href="https://github.com/knu/ruby-unf_ext">unf_ext</a> v0.0.7.1
777
+ #### Unicode Normalization Form support library for CRuby
778
+
779
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
780
+
781
+ Unicode Normalization Form support library for CRuby
782
+
783
+ <a name="webmock"></a>
784
+ ### <a href="http://github.com/bblimke/webmock">webmock</a> v1.22.3 (development)
785
+ #### Library for stubbing HTTP requests in Ruby.
786
+
787
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
788
+
789
+ WebMock allows stubbing HTTP requests and setting expectations on HTTP requests.
790
+
791
+ <a name="xml-simple"></a>
792
+ ### <a href="https://github.com/maik/xml-simple">xml-simple</a> v1.1.5
793
+ #### A simple API for XML processing.
794
+
795
+ <a href="http://www.ruby-lang.org/en/LICENSE.txt">ruby</a> whitelisted
796
+
797
+
798
+
799
+ <a name="yard"></a>
800
+ ### <a href="http://yardoc.org">yard</a> v0.8.7.6 (development)
801
+ #### Documentation tool for consistent and usable documentation in Ruby.
802
+
803
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
804
+
805
+ YARD is a documentation generation tool for the Ruby programming language.
806
+ It enables the user to generate consistent, usable documentation that can be
807
+ exported to a number of formats very easily, and also supports extending for
808
+ custom Ruby constructs such as custom class level definitions.
809
+
810
+
811
+ <a name="yard-rspec"></a>
812
+ ### <a href="http://yardoc.org">yard-rspec</a> v0.1 (development)
813
+ #### YARD plugin to list RSpec specifications inside documentation
814
+
815
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
816
+
817
+