gooddata 0.6.20 → 0.6.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (316) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +29 -1
  3. data/DEPENDENCIES.md +816 -0
  4. data/LICENSE +1 -1
  5. data/LICENSE.rb +5 -0
  6. data/Rakefile +74 -22
  7. data/dependency_decisions.yml +102 -0
  8. data/gooddata.gemspec +39 -38
  9. data/lib/gooddata.rb +4 -0
  10. data/lib/gooddata/app/app.rb +4 -0
  11. data/lib/gooddata/bricks/base_downloader.rb +5 -1
  12. data/lib/gooddata/bricks/brick.rb +4 -0
  13. data/lib/gooddata/bricks/bricks.rb +5 -0
  14. data/lib/gooddata/bricks/middleware/aws_middleware.rb +5 -0
  15. data/lib/gooddata/bricks/middleware/base_middleware.rb +5 -0
  16. data/lib/gooddata/bricks/middleware/bench_middleware.rb +5 -0
  17. data/lib/gooddata/bricks/middleware/bulk_salesforce_middleware.rb +5 -0
  18. data/lib/gooddata/bricks/middleware/decode_params_middleware.rb +6 -0
  19. data/lib/gooddata/bricks/middleware/fs_download_middleware.rb +6 -0
  20. data/lib/gooddata/bricks/middleware/fs_upload_middleware.rb +6 -0
  21. data/lib/gooddata/bricks/middleware/gooddata_middleware.rb +6 -0
  22. data/lib/gooddata/bricks/middleware/logger_middleware.rb +5 -0
  23. data/lib/gooddata/bricks/middleware/middleware.rb +5 -0
  24. data/lib/gooddata/bricks/middleware/restforce_middleware.rb +4 -0
  25. data/lib/gooddata/bricks/middleware/stdout_middleware.rb +5 -0
  26. data/lib/gooddata/bricks/middleware/twitter_middleware.rb +5 -0
  27. data/lib/gooddata/bricks/middleware/undot_params_middleware.rb +4 -0
  28. data/lib/gooddata/bricks/pipeline.rb +4 -0
  29. data/lib/gooddata/bricks/utils.rb +4 -0
  30. data/lib/gooddata/cli/cli.rb +4 -0
  31. data/lib/gooddata/cli/commands/api_cmd.rb +4 -0
  32. data/lib/gooddata/cli/commands/auth_cmd.rb +4 -0
  33. data/lib/gooddata/cli/commands/console_cmd.rb +4 -0
  34. data/lib/gooddata/cli/commands/domain_cmd.rb +4 -0
  35. data/lib/gooddata/cli/commands/process_cmd.rb +4 -0
  36. data/lib/gooddata/cli/commands/project_cmd.rb +4 -0
  37. data/lib/gooddata/cli/commands/projects_cmd.rb +4 -0
  38. data/lib/gooddata/cli/commands/run_ruby_cmd.rb +4 -0
  39. data/lib/gooddata/cli/commands/scaffold_cmd.rb +4 -0
  40. data/lib/gooddata/cli/commands/user_cmd.rb +4 -0
  41. data/lib/gooddata/cli/hooks.rb +4 -0
  42. data/lib/gooddata/cli/shared.rb +4 -0
  43. data/lib/gooddata/cli/terminal.rb +4 -0
  44. data/lib/gooddata/client.rb +4 -0
  45. data/lib/gooddata/commands/api.rb +4 -0
  46. data/lib/gooddata/commands/auth.rb +4 -0
  47. data/lib/gooddata/commands/base.rb +4 -0
  48. data/lib/gooddata/commands/commands.rb +5 -0
  49. data/lib/gooddata/commands/datasets.rb +5 -1
  50. data/lib/gooddata/commands/datawarehouse.rb +4 -0
  51. data/lib/gooddata/commands/domain.rb +4 -0
  52. data/lib/gooddata/commands/process.rb +4 -0
  53. data/lib/gooddata/commands/project.rb +7 -9
  54. data/lib/gooddata/commands/projects.rb +4 -0
  55. data/lib/gooddata/commands/role.rb +4 -0
  56. data/lib/gooddata/commands/runners.rb +4 -0
  57. data/lib/gooddata/commands/scaffold.rb +4 -0
  58. data/lib/gooddata/commands/user.rb +4 -0
  59. data/lib/gooddata/connection.rb +83 -0
  60. data/lib/gooddata/core/core.rb +4 -0
  61. data/lib/gooddata/core/logging.rb +4 -0
  62. data/lib/gooddata/core/nil_logger.rb +4 -0
  63. data/lib/gooddata/core/project.rb +4 -0
  64. data/lib/gooddata/core/rest.rb +14 -16
  65. data/lib/gooddata/core/user.rb +4 -0
  66. data/lib/gooddata/data/data.rb +4 -0
  67. data/lib/gooddata/data/guesser.rb +4 -0
  68. data/lib/gooddata/exceptions/attr_element_not_found.rb +4 -0
  69. data/lib/gooddata/exceptions/command_failed.rb +4 -0
  70. data/lib/gooddata/exceptions/exceptions.rb +4 -0
  71. data/lib/gooddata/exceptions/execution_limit_exceeded.rb +4 -0
  72. data/lib/gooddata/exceptions/filter_maqlization.rb +16 -0
  73. data/lib/gooddata/exceptions/malformed_user.rb +15 -0
  74. data/lib/gooddata/exceptions/no_project_error.rb +4 -0
  75. data/lib/gooddata/exceptions/object_migration.rb +28 -0
  76. data/lib/gooddata/exceptions/project_not_found.rb +5 -0
  77. data/lib/gooddata/exceptions/uncomputable_report.rb +5 -0
  78. data/lib/gooddata/exceptions/user_in_different_domain.rb +4 -0
  79. data/lib/gooddata/exceptions/validation_error.rb +4 -0
  80. data/lib/gooddata/extensions/big_decimal.rb +4 -0
  81. data/lib/gooddata/extensions/enumerable.rb +4 -0
  82. data/lib/gooddata/extensions/extensions.rb +4 -0
  83. data/lib/gooddata/extensions/false.rb +4 -0
  84. data/lib/gooddata/extensions/hash.rb +4 -0
  85. data/lib/gooddata/extensions/nil.rb +4 -0
  86. data/lib/gooddata/extensions/numeric.rb +4 -0
  87. data/lib/gooddata/extensions/object.rb +4 -0
  88. data/lib/gooddata/extensions/symbol.rb +4 -0
  89. data/lib/gooddata/extensions/true.rb +4 -0
  90. data/lib/gooddata/extract.rb +4 -0
  91. data/lib/gooddata/goodzilla/goodzilla.rb +87 -77
  92. data/lib/gooddata/helpers/auth_helpers.rb +6 -2
  93. data/lib/gooddata/helpers/csv_helper.rb +4 -0
  94. data/lib/gooddata/helpers/data_helper.rb +4 -0
  95. data/lib/gooddata/helpers/global_helpers.rb +35 -6
  96. data/lib/gooddata/helpers/global_helpers_params.rb +34 -7
  97. data/lib/gooddata/helpers/helpers.rb +4 -0
  98. data/lib/gooddata/mixins/author.rb +4 -0
  99. data/lib/gooddata/mixins/content_getter.rb +4 -0
  100. data/lib/gooddata/mixins/content_property_reader.rb +4 -0
  101. data/lib/gooddata/mixins/content_property_writer.rb +4 -0
  102. data/lib/gooddata/mixins/contributor.rb +4 -0
  103. data/lib/gooddata/mixins/data_getter.rb +4 -0
  104. data/lib/gooddata/mixins/data_property_reader.rb +4 -0
  105. data/lib/gooddata/mixins/data_property_writer.rb +4 -0
  106. data/lib/gooddata/mixins/inspector.rb +4 -0
  107. data/lib/gooddata/mixins/is_attribute.rb +4 -0
  108. data/lib/gooddata/mixins/is_dimension.rb +4 -0
  109. data/lib/gooddata/mixins/is_fact.rb +4 -0
  110. data/lib/gooddata/mixins/is_label.rb +4 -0
  111. data/lib/gooddata/mixins/links.rb +4 -0
  112. data/lib/gooddata/mixins/md_finders.rb +4 -0
  113. data/lib/gooddata/mixins/md_id_to_uri.rb +4 -0
  114. data/lib/gooddata/mixins/md_json.rb +4 -0
  115. data/lib/gooddata/mixins/md_lock.rb +4 -0
  116. data/lib/gooddata/mixins/md_object_id.rb +5 -1
  117. data/lib/gooddata/mixins/md_object_indexer.rb +4 -0
  118. data/lib/gooddata/mixins/md_object_query.rb +4 -0
  119. data/lib/gooddata/mixins/md_relations.rb +4 -0
  120. data/lib/gooddata/mixins/meta_getter.rb +4 -0
  121. data/lib/gooddata/mixins/meta_property_reader.rb +4 -0
  122. data/lib/gooddata/mixins/meta_property_writer.rb +4 -0
  123. data/lib/gooddata/mixins/mixins.rb +4 -0
  124. data/lib/gooddata/mixins/not_attribute.rb +4 -0
  125. data/lib/gooddata/mixins/not_exportable.rb +4 -0
  126. data/lib/gooddata/mixins/not_fact.rb +4 -0
  127. data/lib/gooddata/mixins/not_label.rb +4 -0
  128. data/lib/gooddata/mixins/not_metric.rb +6 -0
  129. data/lib/gooddata/mixins/obj_id.rb +4 -0
  130. data/lib/gooddata/mixins/rest_getters.rb +4 -0
  131. data/lib/gooddata/mixins/rest_resource.rb +4 -0
  132. data/lib/gooddata/mixins/root_key_getter.rb +4 -0
  133. data/lib/gooddata/mixins/root_key_setter.rb +4 -0
  134. data/lib/gooddata/mixins/timestamps.rb +4 -0
  135. data/lib/gooddata/models/blueprint/anchor_field.rb +4 -0
  136. data/lib/gooddata/models/blueprint/attribute_field.rb +4 -0
  137. data/lib/gooddata/models/blueprint/blueprint.rb +4 -0
  138. data/lib/gooddata/models/blueprint/blueprint_field.rb +4 -0
  139. data/lib/gooddata/models/blueprint/dashboard_builder.rb +4 -0
  140. data/lib/gooddata/models/blueprint/dataset_blueprint.rb +6 -0
  141. data/lib/gooddata/models/blueprint/date_dimension.rb +4 -0
  142. data/lib/gooddata/models/blueprint/fact_field.rb +4 -0
  143. data/lib/gooddata/models/blueprint/label_field.rb +4 -0
  144. data/lib/gooddata/models/blueprint/project_blueprint.rb +6 -0
  145. data/lib/gooddata/models/blueprint/project_builder.rb +4 -0
  146. data/lib/gooddata/models/blueprint/reference_field.rb +4 -0
  147. data/lib/gooddata/models/blueprint/schema_blueprint.rb +4 -0
  148. data/lib/gooddata/models/blueprint/schema_builder.rb +4 -0
  149. data/lib/gooddata/models/blueprint/to_manifest.rb +17 -1
  150. data/lib/gooddata/models/blueprint/to_wire.rb +4 -0
  151. data/lib/gooddata/models/datawarehouse.rb +5 -0
  152. data/lib/gooddata/models/domain.rb +25 -7
  153. data/lib/gooddata/models/execution.rb +4 -0
  154. data/lib/gooddata/models/execution_detail.rb +4 -0
  155. data/lib/gooddata/models/from_wire.rb +4 -0
  156. data/lib/gooddata/models/invitation.rb +4 -0
  157. data/lib/gooddata/models/links.rb +4 -0
  158. data/lib/gooddata/models/membership.rb +4 -0
  159. data/lib/gooddata/models/metadata.rb +37 -10
  160. data/lib/gooddata/models/metadata/attribute.rb +6 -0
  161. data/lib/gooddata/models/metadata/dashboard.rb +54 -16
  162. data/lib/gooddata/models/metadata/dashboard/dashboard_item.rb +60 -0
  163. data/lib/gooddata/models/metadata/dashboard/filter_item.rb +15 -0
  164. data/lib/gooddata/models/metadata/dashboard/report_item.rb +51 -0
  165. data/lib/gooddata/models/metadata/dashboard_tab.rb +88 -0
  166. data/lib/gooddata/models/metadata/dataset.rb +4 -0
  167. data/lib/gooddata/models/metadata/dimension.rb +4 -0
  168. data/lib/gooddata/models/metadata/fact.rb +6 -0
  169. data/lib/gooddata/models/metadata/label.rb +15 -0
  170. data/lib/gooddata/models/metadata/metadata.rb +4 -0
  171. data/lib/gooddata/models/metadata/metric.rb +5 -4
  172. data/lib/gooddata/models/metadata/report.rb +62 -16
  173. data/lib/gooddata/models/metadata/report_definition.rb +44 -47
  174. data/lib/gooddata/models/metadata/variable.rb +4 -0
  175. data/lib/gooddata/models/model.rb +85 -36
  176. data/lib/gooddata/models/models.rb +4 -0
  177. data/lib/gooddata/models/module_constants.rb +4 -0
  178. data/lib/gooddata/models/process.rb +4 -0
  179. data/lib/gooddata/models/profile.rb +13 -0
  180. data/lib/gooddata/models/project.rb +173 -92
  181. data/lib/gooddata/models/project_creator.rb +18 -10
  182. data/lib/gooddata/models/project_metadata.rb +4 -0
  183. data/lib/gooddata/models/project_role.rb +4 -0
  184. data/lib/gooddata/models/report_data_result.rb +217 -125
  185. data/lib/gooddata/models/schedule.rb +140 -65
  186. data/lib/gooddata/models/tab_builder.rb +4 -0
  187. data/lib/gooddata/models/user_filters/mandatory_user_filter.rb +4 -0
  188. data/lib/gooddata/models/user_filters/user_filter.rb +4 -0
  189. data/lib/gooddata/models/user_filters/user_filter_builder.rb +98 -56
  190. data/lib/gooddata/models/user_filters/user_filters.rb +4 -0
  191. data/lib/gooddata/models/user_filters/variable_user_filter.rb +4 -0
  192. data/lib/gooddata/rest/client.rb +41 -38
  193. data/lib/gooddata/rest/connection.rb +91 -20
  194. data/lib/gooddata/rest/connections/rest_client_connection.rb +5 -1
  195. data/lib/gooddata/rest/object.rb +9 -1
  196. data/lib/gooddata/rest/object_factory.rb +5 -1
  197. data/lib/gooddata/rest/resource.rb +5 -1
  198. data/lib/gooddata/rest/rest.rb +4 -0
  199. data/lib/gooddata/version.rb +5 -1
  200. data/spec/bricks/bricks_spec.rb +4 -0
  201. data/spec/data/blueprints/test_project_model_spec.json +2 -2
  202. data/spec/data/gooddata_version_process/gooddata_version.rb +6 -0
  203. data/spec/data/hello_world_process/hello_world.rb +6 -0
  204. data/spec/data/manifests/test_project.json +5 -5
  205. data/spec/data/reports/left_attr_report.json +108 -0
  206. data/spec/data/reports/metric_only_one_line.json +83 -0
  207. data/spec/data/reports/report_1.json +197 -0
  208. data/spec/data/reports/top_attr_report.json +108 -0
  209. data/spec/data/ruby_params_process/ruby_params.rb +6 -0
  210. data/spec/data/ruby_process/process.rb +6 -0
  211. data/spec/environment/default.rb +5 -0
  212. data/spec/environment/develop.rb +10 -5
  213. data/spec/environment/environment.rb +4 -0
  214. data/spec/environment/hotfix.rb +5 -1
  215. data/spec/environment/production.rb +4 -0
  216. data/spec/environment/release.rb +4 -0
  217. data/spec/environment/staging.rb +30 -0
  218. data/spec/environment/staging_3.rb +37 -0
  219. data/spec/helpers/blueprint_helper.rb +4 -0
  220. data/spec/helpers/cli_helper.rb +4 -0
  221. data/spec/helpers/connection_helper.rb +24 -17
  222. data/spec/helpers/crypto_helper.rb +6 -0
  223. data/spec/helpers/csv_helper.rb +4 -0
  224. data/spec/helpers/process_helper.rb +5 -1
  225. data/spec/helpers/project_helper.rb +34 -29
  226. data/spec/helpers/schedule_helper.rb +4 -0
  227. data/spec/helpers/spec_helper.rb +4 -0
  228. data/spec/integration/blueprint_updates_spec.rb +28 -20
  229. data/spec/integration/command_datawarehouse_spec.rb +6 -0
  230. data/spec/integration/command_projects_spec.rb +6 -4
  231. data/spec/integration/create_from_template_spec.rb +6 -0
  232. data/spec/integration/create_project_spec.rb +6 -0
  233. data/spec/integration/deprecated_load_spec.rb +58 -0
  234. data/spec/integration/full_process_schedule_spec.rb +9 -0
  235. data/spec/integration/full_project_spec.rb +63 -9
  236. data/spec/integration/over_to_user_filters_spec.rb +7 -2
  237. data/spec/integration/partial_md_export_import_spec.rb +6 -0
  238. data/spec/integration/project_spec.rb +12 -6
  239. data/spec/integration/rest_spec.rb +6 -2
  240. data/spec/integration/schedule_spec.rb +627 -0
  241. data/spec/integration/user_filters_spec.rb +122 -21
  242. data/spec/integration/variables_spec.rb +8 -15
  243. data/spec/logging_in_logging_out_spec.rb +58 -0
  244. data/spec/spec_helper.rb +10 -5
  245. data/spec/unit/bricks/bricks_spec.rb +4 -0
  246. data/spec/unit/bricks/middleware/aws_middelware_spec.rb +4 -0
  247. data/spec/unit/bricks/middleware/bench_middleware_spec.rb +4 -0
  248. data/spec/unit/bricks/middleware/bulk_salesforce_middleware_spec.rb +4 -0
  249. data/spec/unit/bricks/middleware/gooddata_middleware_spec.rb +4 -0
  250. data/spec/unit/bricks/middleware/logger_middleware_spec.rb +4 -0
  251. data/spec/unit/bricks/middleware/restforce_middleware_spec.rb +4 -0
  252. data/spec/unit/bricks/middleware/stdout_middleware_spec.rb +4 -0
  253. data/spec/unit/bricks/middleware/twitter_middleware_spec.rb +4 -0
  254. data/spec/unit/cli/cli_spec.rb +4 -0
  255. data/spec/unit/cli/commands/cmd_api_spec.rb +4 -0
  256. data/spec/unit/cli/commands/cmd_auth_spec.rb +4 -0
  257. data/spec/unit/cli/commands/cmd_domain_spec.rb +4 -0
  258. data/spec/unit/cli/commands/cmd_process_spec.rb +4 -0
  259. data/spec/unit/cli/commands/cmd_project_spec.rb +4 -0
  260. data/spec/unit/cli/commands/cmd_role_spec.rb +4 -0
  261. data/spec/unit/cli/commands/cmd_run_ruby_spec.rb +4 -0
  262. data/spec/unit/cli/commands/cmd_scaffold_spec.rb +6 -0
  263. data/spec/unit/cli/commands/cmd_user_spec.rb +6 -0
  264. data/spec/unit/commands/command_api_spec.rb +6 -0
  265. data/spec/unit/commands/command_auth_spec.rb +6 -0
  266. data/spec/unit/commands/command_dataset_spec.rb +10 -4
  267. data/spec/unit/commands/command_process_spec.rb +6 -0
  268. data/spec/unit/commands/command_projects_spec.rb +6 -0
  269. data/spec/unit/commands/command_scaffold_spec.rb +6 -0
  270. data/spec/unit/commands/command_user_spec.rb +6 -0
  271. data/spec/unit/core/connection_spec.rb +6 -0
  272. data/spec/unit/core/logging_spec.rb +4 -0
  273. data/spec/unit/core/nil_logger_spec.rb +4 -0
  274. data/spec/unit/core/project_spec.rb +4 -0
  275. data/spec/unit/data/guesser_spec.rb +6 -2
  276. data/spec/unit/extensions/hash_spec.rb +4 -0
  277. data/spec/unit/godzilla/goodzilla_spec.rb +4 -0
  278. data/spec/unit/helpers/csv_helper_spec.rb +4 -0
  279. data/spec/unit/helpers/data_helper_spec.rb +4 -0
  280. data/spec/unit/helpers/global_helpers_spec.rb +54 -0
  281. data/spec/unit/helpers_spec.rb +6 -1
  282. data/spec/unit/models/blueprint/attributes_spec.rb +5 -0
  283. data/spec/unit/models/blueprint/dataset_spec.rb +5 -0
  284. data/spec/unit/models/blueprint/labels_spec.rb +5 -0
  285. data/spec/unit/models/blueprint/project_blueprint_spec.rb +5 -0
  286. data/spec/unit/models/blueprint/reference_spec.rb +5 -0
  287. data/spec/unit/models/blueprint/schema_builder_spec.rb +4 -0
  288. data/spec/unit/models/blueprint/to_wire_spec.rb +5 -0
  289. data/spec/unit/models/domain_spec.rb +9 -7
  290. data/spec/unit/models/execution_spec.rb +6 -0
  291. data/spec/unit/models/from_wire_spec.rb +4 -0
  292. data/spec/unit/models/invitation_spec.rb +4 -0
  293. data/spec/unit/models/membership_spec.rb +4 -0
  294. data/spec/unit/models/metadata_spec.rb +46 -0
  295. data/spec/unit/models/metric_spec.rb +4 -0
  296. data/spec/unit/models/model_spec.rb +4 -0
  297. data/spec/unit/models/params_spec.rb +4 -0
  298. data/spec/unit/models/profile_spec.rb +4 -0
  299. data/spec/unit/models/project_creator_spec.rb +127 -0
  300. data/spec/unit/models/project_role_spec.rb +4 -0
  301. data/spec/unit/models/project_spec.rb +4 -0
  302. data/spec/unit/models/report_result_data_spec.rb +193 -0
  303. data/spec/unit/models/schedule_spec.rb +241 -386
  304. data/spec/unit/models/to_manifest_spec.rb +21 -0
  305. data/spec/unit/models/{unit_project.rb → unit_project_spec.rb} +21 -18
  306. data/spec/unit/models/user_filters_spec.rb +7 -1
  307. data/spec/unit/models/variable_spec.rb +6 -0
  308. data/spec/unit/rest/polling_spec.rb +8 -5
  309. data/spec/unit/rest/resource_spec.rb +4 -0
  310. metadata +190 -129
  311. data/.autotest +0 -2
  312. data/.travis.yml +0 -22
  313. data/examples.rb +0 -69
  314. data/lib/gooddata/models/data_result.rb +0 -38
  315. data/lib/gooddata/models/empty_result.rb +0 -57
  316. data/spec/unit/models/project_creator.rb +0 -73
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 393f24d2ac4d07ad718cb07a45216d0bb9ba44d6
4
- data.tar.gz: b83bc75e78cbc105a30fc6108fc68c47fc23660b
3
+ metadata.gz: 3bf9d7f10ce9a4a44f4e79c752225e3f2ae2f0a8
4
+ data.tar.gz: 620c2b9a3fe3a2cde36566f8c34835cf829fe6ed
5
5
  SHA512:
6
- metadata.gz: a65998083c37fbeefd4c927917109cf203f251140569af75de4f575000aec8ce55f655128529e938fc44cdbfebfa043619ebca9d8552cd5410a5db597bc6258f
7
- data.tar.gz: 0b29904946563a35299590595d8d07e32703e40bef0c65703376df3916720756221748f8da83ad50296737b9a6cb551c127040ac3c7d21bfc7574cd94b5598d4
6
+ metadata.gz: 7347775e4cd4878a5b962108c325eaf2e74f1365f3de5fef006231071089810f414c0250f10fd9d1d25a4610cd8a35d1ad62b6eccd72c3da9691432e102477fb
7
+ data.tar.gz: ee138c02411c2b521e6b444f21b136d2aa4df41fd41f31d66c4c4078e97da5d0372452c675a9066182e00493fc2fa2c99c02a9201ee5cef9e97943e8a18c59a8
data/CHANGELOG.md CHANGED
@@ -1,10 +1,38 @@
1
1
  # GoodData Ruby SDK Changelog
2
2
 
3
+ ## 0.6.22
4
+ - Added rake task (license:add) for automatic license headers generating
5
+ - Handle situation when upload_status.json does not exist
6
+ - Connect using SSO - GoodData#connect_sso
7
+ - Added Measure semantics, alias methods metrics to measure (ie. interpolate_metric -> interpolate_measure)
8
+ - rake tasks license:check, license:report & license:info for automated license reporting added
9
+ - Fixed a typo in labels
10
+ - Executions are paging + are implemented as lazy enumerators
11
+ - Fixed after getter in schedule
12
+ - Blueprint works with deprecated labels
13
+ - Metadata object has new methods for working with unlisted attribute
14
+ - Metadata method deprecated= now accepts and return true/false
15
+ - Included date_facts in building a manifest
16
+ - Using API for user provisioning by login
17
+ - Multiple data sets upload Project#upload_multiple
18
+ - GoodData::MdObject.json is assignable now (using attr_accessor)
19
+ - Added method for updating report definition in easy way - GoodData::Report#update_definiton(opts, &block)
20
+ - Added more logging around connecting to server. Cleaning up staging information. Adding tests to make
21
+ - Middlewares are transforming params to Ruby hash (useful for executors when they pass Java Hash instance)
22
+ - Cleaning up way Data permissions work with errors so we can update Bricks
23
+ - Fixed Project#browser_url
24
+ - Increased max count of retries for 429 - Too Many Requests
25
+ - Fixed potentional crash of ReportDefinition#replace
26
+ - Updated dependencies (gems)
27
+
28
+ ## 0.6.21
29
+ - Consolidated error reporting for Domain#create_users & Project#import_users
30
+ - Removed superfluous error messages on 401
31
+ - Fixed bug with rich params when it could happen that hidden params got deleted on schedule save
3
32
 
4
33
  ## 0.6.20
5
34
  - added iterators for retrieval of project, domain, and group objects
6
35
  - use query resource inlining for retrieving user filters
7
- - added support of GoodData PGP SSO
8
36
  - fixed default parameters from ~/.gooddata file (auth token, server)
9
37
  - added project WebDav deprecation warning
10
38
  - removed dependency on Active Support gem
data/DEPENDENCIES.md ADDED
@@ -0,0 +1,816 @@
1
+ # gooddata-ruby
2
+
3
+ As of August 3, 2015 1:23pm. 85 total
4
+
5
+ ## Summary
6
+ * 67 MIT
7
+ * 7 Apache 2.0
8
+ * 6 ruby
9
+ * 3 BSD
10
+ * 1 GPL-2
11
+ * 1 unknown
12
+
13
+
14
+
15
+ ## Items
16
+
17
+
18
+ <a name="ZenTest"></a>
19
+ ### <a href="https://github.com/seattlerb/zentest">ZenTest</a> v4.11.0 (development)
20
+ #### ZenTest provides 4 different tools: zentest, unit_diff, autotest, and multiruby
21
+
22
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
23
+
24
+ ZenTest provides 4 different tools: zentest, unit_diff, autotest, and
25
+ multiruby.
26
+
27
+ zentest scans your target and unit-test code and writes your missing
28
+ code based on simple naming rules, enabling XP at a much quicker pace.
29
+ zentest only works with Ruby and Minitest or Test::Unit. There is
30
+ enough evidence to show that this is still proving useful to users, so
31
+ it stays.
32
+
33
+ unit_diff is a command-line filter to diff expected results from
34
+ actual results and allow you to quickly see exactly what is wrong.
35
+ Do note that minitest 2.2+ provides an enhanced assert_equal obviating
36
+ the need for unit_diff
37
+
38
+ autotest is a continous testing facility meant to be used during
39
+ development. As soon as you save a file, autotest will run the
40
+ corresponding dependent tests.
41
+
42
+ multiruby runs anything you want on multiple versions of ruby. Great
43
+ for compatibility checking! Use multiruby_setup to manage your
44
+ installed versions.
45
+
46
+ <a name="addressable"></a>
47
+ ### <a href="https://github.com/sporkmonger/addressable">addressable</a> v2.3.8
48
+ #### URI Implementation
49
+
50
+ <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
51
+
52
+ Addressable is a replacement for the URI implementation that is part of
53
+ Ruby's standard library. It more closely conforms to the relevant RFCs and
54
+ adds support for IRIs and URI templates.
55
+
56
+
57
+ <a name="ast"></a>
58
+ ### <a href="https://whitequark.github.io/ast/">ast</a> v2.0.0
59
+ #### A library for working with Abstract Syntax Trees.
60
+
61
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
62
+
63
+ A library for working with Abstract Syntax Trees.
64
+
65
+ <a name="astrolabe"></a>
66
+ ### <a href="https://github.com/yujinakayama/astrolabe">astrolabe</a> v1.3.0
67
+ #### An object-oriented AST extension for Parser
68
+
69
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
70
+
71
+ An object-oriented AST extension for Parser
72
+
73
+ <a name="aws-sdk"></a>
74
+ ### <a href="http://aws.amazon.com/sdkforruby">aws-sdk</a> v1.64.0
75
+ #### AWS SDK for Ruby V1
76
+
77
+ <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
78
+
79
+ Version 1 of the AWS SDK for Ruby. Available as both `aws-sdk` and `aws-sdk-v1`.
80
+ Use `aws-sdk-v1` if you want to load v1 and v2 of the Ruby SDK in the same
81
+ application.
82
+
83
+ <a name="aws-sdk-v1"></a>
84
+ ### <a href="http://aws.amazon.com/sdkforruby">aws-sdk-v1</a> v1.64.0
85
+ #### AWS SDK for Ruby V1
86
+
87
+ <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
88
+
89
+ Version 1 of the AWS SDK for Ruby. Available as both `aws-sdk` and `aws-sdk-v1`.
90
+ Use `aws-sdk-v1` if you want to load v1 and v2 of the Ruby SDK in the same
91
+ application.
92
+
93
+ <a name="bundler"></a>
94
+ ### bundler v1.10.6 (development)
95
+ ####
96
+
97
+ unknown manually approved
98
+
99
+ >
100
+
101
+ ><cite> 2015-08-03</cite>
102
+
103
+
104
+
105
+ <a name="coderay"></a>
106
+ ### <a href="http://coderay.rubychan.de">coderay</a> v1.1.0
107
+ #### Fast syntax highlighting for selected languages.
108
+
109
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
110
+
111
+ Fast and easy syntax highlighting for selected languages, written in Ruby. Comes with RedCloth integration and LOC counter.
112
+
113
+ <a name="colored"></a>
114
+ ### colored v
115
+ ####
116
+
117
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
118
+
119
+
120
+
121
+ <a name="colored"></a>
122
+ ### <a href="http://github.com/defunkt/colored">colored</a> v1.2
123
+ #### Add some color to your life.
124
+
125
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
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="coveralls"></a>
141
+ ### <a href="https://coveralls.io">coveralls</a> v0.8.2 (development)
142
+ #### A Ruby implementation of the Coveralls API.
143
+
144
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
145
+
146
+ A Ruby implementation of the Coveralls API.
147
+
148
+ <a name="crack"></a>
149
+ ### <a href="http://github.com/jnunemaker/crack">crack</a> v0.4.2
150
+ #### Really simple JSON and XML parsing, ripped from Merb and Rails.
151
+
152
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
153
+
154
+ Really simple JSON and XML parsing, ripped from Merb and Rails.
155
+
156
+ <a name="debase"></a>
157
+ ### <a href="https://github.com/denofevil/debase">debase</a> v0.1.7 (development)
158
+ #### debase is a fast implementation of the standard Ruby debugger debug.rb for Ruby 2.0
159
+
160
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
161
+
162
+ debase is a fast implementation of the standard Ruby debugger debug.rb for Ruby 2.0.
163
+ It is implemented by utilizing a new Ruby TracePoint class. The core component
164
+ provides support that front-ends can build on. It provides breakpoint
165
+ handling, bindings for stack frames among other things.
166
+
167
+
168
+ <a name="debase-ruby_core_source"></a>
169
+ ### <a href="http://github.com/os97673/debase-ruby_core_source">debase-ruby_core_source</a> v0.7.9
170
+ #### Provide Ruby core source files
171
+
172
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
173
+
174
+ Provide Ruby core source files for C extensions that need them.
175
+
176
+ <a name="diff-lcs"></a>
177
+ ### <a href="http://diff-lcs.rubyforge.org/">diff-lcs</a> v1.2.5
178
+ #### Diff::LCS computes the difference between two Enumerable sequences using the McIlroy-Hunt longest common subsequence (LCS) algorithm
179
+
180
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
181
+
182
+ Diff::LCS computes the difference between two Enumerable sequences using the
183
+ McIlroy-Hunt longest common subsequence (LCS) algorithm. It includes utilities
184
+ to create a simple HTML diff output format and a standard diff-like tool.
185
+
186
+ This is release 1.2.4, fixing a bug introduced after diff-lcs 1.1.3 that did
187
+ not properly prune common sequences at the beginning of a comparison set.
188
+ Thanks to Paul Kunysch for fixing this issue.
189
+
190
+ Coincident with the release of diff-lcs 1.2.3, we reported an issue with
191
+ Rubinius in 1.9 mode
192
+ ({rubinius/rubinius#2268}[https://github.com/rubinius/rubinius/issues/2268]).
193
+ We are happy to report that this issue has been resolved.
194
+
195
+ <a name="diff-lcs"></a>
196
+ ### diff-lcs v
197
+ ####
198
+
199
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
200
+
201
+
202
+
203
+ <a name="docile"></a>
204
+ ### <a href="https://ms-ati.github.io/docile/">docile</a> v1.1.5
205
+ #### Docile keeps your Ruby DSLs tame and well-behaved
206
+
207
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
208
+
209
+ Docile turns any Ruby object into a DSL. Especially useful with the Builder pattern.
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.1
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.1
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.21 (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.12.7 (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.0 (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="hashie"></a>
304
+ ### <a href="https://github.com/intridea/hashie">hashie</a> v3.4.2
305
+ #### Your friendly neighborhood hash library.
306
+
307
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
308
+
309
+ Hashie is a collection of classes and mixins that make hashes more powerful.
310
+
311
+ <a name="highline"></a>
312
+ ### <a href="https://github.com/JEG2/highline">highline</a> v1.7.2
313
+ #### HighLine is a high-level command-line IO library.
314
+
315
+ <a href="http://www.ruby-lang.org/en/LICENSE.txt">ruby</a> whitelisted
316
+
317
+ A high-level IO library that provides validation, type conversion, and more for
318
+ command-line interfaces. HighLine also includes a complete menu system that can
319
+ crank out anything from simple list selection to complete shells with just
320
+ minutes of work.
321
+
322
+
323
+ <a name="httparty"></a>
324
+ ### <a href="http://jnunemaker.github.com/httparty">httparty</a> v0.13.5
325
+ #### Makes http fun! Also, makes consuming restful web services dead easy.
326
+
327
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
328
+
329
+ Makes http fun! Also, makes consuming restful web services dead easy.
330
+
331
+ <a name="json"></a>
332
+ ### <a href="http://flori.github.com/json">json</a> v1.8.3
333
+ #### JSON Implementation for Ruby
334
+
335
+ <a href="http://www.ruby-lang.org/en/LICENSE.txt">ruby</a> whitelisted
336
+
337
+ This is a JSON implementation as a Ruby extension in C.
338
+
339
+ <a name="json_pure"></a>
340
+ ### <a href="http://flori.github.com/json">json_pure</a> v1.8.2
341
+ #### JSON Implementation for Ruby
342
+
343
+ <a href="http://www.ruby-lang.org/en/LICENSE.txt">ruby</a> whitelisted
344
+
345
+ This is a JSON implementation in pure Ruby.
346
+
347
+ <a name="license_finder"></a>
348
+ ### <a href="https://github.com/pivotal/LicenseFinder">license_finder</a> v2.0.4 (development)
349
+ #### Audit the OSS licenses of your application's dependencies.
350
+
351
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
352
+
353
+ LicenseFinder works with your package managers to find
354
+ dependencies, detect the licenses of the packages in them, compare
355
+ those licenses against a user-defined whitelist, and give you an
356
+ actionable exception report.
357
+
358
+
359
+ <a name="listen"></a>
360
+ ### <a href="https://github.com/guard/listen">listen</a> v3.0.1
361
+ #### Listen to file modifications
362
+
363
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
364
+
365
+ The Listen gem listens to file modifications and notifies you about the changes. Works everywhere!
366
+
367
+ <a name="lumberjack"></a>
368
+ ### <a href="http://github.com/bdurand/lumberjack">lumberjack</a> v1.0.9
369
+ #### A simple, powerful, and very fast logging utility that can be a drop in replacement for Logger or ActiveSupport::BufferedLogger.
370
+
371
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
372
+
373
+ 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.
374
+
375
+ <a name="method_source"></a>
376
+ ### <a href="http://banisterfiend.wordpress.com">method_source</a> v0.8.2
377
+ #### retrieve the sourcecode for a method
378
+
379
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
380
+
381
+ retrieve the sourcecode for a method
382
+
383
+ <a name="mime-types"></a>
384
+ ### mime-types v
385
+ ####
386
+
387
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
388
+
389
+
390
+
391
+ <a name="mime-types"></a>
392
+ ### <a href="https://github.com/mime-types/ruby-mime-types/">mime-types</a> v2.6.1
393
+ #### The mime-types library provides a library and registry for information about MIME content type definitions
394
+
395
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
396
+
397
+ The mime-types library provides a library and registry for information about
398
+ MIME content type definitions. It can be used to determine defined filename
399
+ extensions for MIME types, or to use filename extensions to look up the likely
400
+ MIME type definitions.
401
+
402
+ MIME content types are used in MIME-compliant communications, as in e-mail or
403
+ HTTP traffic, to indicate the type of content which is transmitted. The
404
+ mime-types library provides the ability for detailed information about MIME
405
+ entities (provided as an enumerable collection of MIME::Type objects) to be
406
+ determined and used. There are many types defined by RFCs and vendors, so the
407
+ list is long but by definition incomplete; don't hesitate to add additional
408
+ type definitions. MIME type definitions found in mime-types are from RFCs, W3C
409
+ recommendations, the {IANA Media Types
410
+ registry}[https://www.iana.org/assignments/media-types/media-types.xhtml], and
411
+ user contributions. It conforms to RFCs 2045 and 2231.
412
+
413
+ This is release 2.6 with two new experimental features. The first new feature
414
+ is a new default registry storage format that greatly reduces the initial
415
+ memory use of the mime-types library. This feature is enabled by requiring
416
+ +mime/types/columnar+ instead of +mime/types+ with a small performance cost and
417
+ no change in *total* memory use if certain methods are called (see {Columnar
418
+ Store}[#columnar-store] for more details). The second new feature is a logger
419
+ interface that conforms to the expectations of an ActiveSupport::Logger so that
420
+ warnings can be written to an application's log rather than the default
421
+ location for +warn+. This interface may be used for other logging purposes in
422
+ the future.
423
+
424
+ mime-types 2.6 is the last planned version of mime-types 2.x, so deprecation
425
+ warnings are no longer cached but provided every time the method is called.
426
+ mime-types 2.6 supports Ruby 1.9.2 or later.
427
+
428
+ <a name="mini_portile"></a>
429
+ ### <a href="http://github.com/flavorjones/mini_portile">mini_portile</a> v0.6.2
430
+ #### Simplistic port-like solution for developers
431
+
432
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
433
+
434
+ Simplistic port-like solution for developers. It provides a standard and simplified way to compile against dependency libraries without messing up your system.
435
+
436
+ <a name="multi_json"></a>
437
+ ### <a href="http://github.com/intridea/multi_json">multi_json</a> v1.11.2
438
+ #### A common interface to multiple JSON libraries.
439
+
440
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
441
+
442
+ 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.
443
+
444
+ <a name="multi_xml"></a>
445
+ ### <a href="https://github.com/sferik/multi_xml">multi_xml</a> v0.5.5
446
+ #### A generic swappable back-end for XML parsing
447
+
448
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
449
+
450
+ Provides swappable XML backends utilizing LibXML, Nokogiri, Ox, or REXML.
451
+
452
+ <a name="multipart-post"></a>
453
+ ### <a href="https://github.com/nicksieger/multipart-post">multipart-post</a> v2.0.0
454
+ #### A multipart form post accessory for Net::HTTP.
455
+
456
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
457
+
458
+ 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.
459
+
460
+ <a name="nenv"></a>
461
+ ### <a href="https://github.com/e2/nenv">nenv</a> v0.2.0
462
+ #### Convenience wrapper for Ruby's ENV
463
+
464
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
465
+
466
+ Using ENV is like using raw SQL statements in your code. We all know how that ends...
467
+
468
+ <a name="netrc"></a>
469
+ ### <a href="https://github.com/geemus/netrc">netrc</a> v0.10.3
470
+ #### Library to read and write netrc files.
471
+
472
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
473
+
474
+ This library can read and update netrc files, preserving formatting including comments and whitespace.
475
+
476
+ <a name="nokogiri"></a>
477
+ ### <a href="http://nokogiri.org">nokogiri</a> v1.6.6.2
478
+ #### Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser
479
+
480
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
481
+
482
+ Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser. Among Nokogiri's
483
+ many features is the ability to search documents via XPath or CSS3 selectors.
484
+
485
+ XML is like violence - if it doesn’t solve your problems, you are not using
486
+ enough of it.
487
+
488
+ <a name="notiffany"></a>
489
+ ### notiffany v0.0.6
490
+ #### Notifier library (extracted from Guard project)
491
+
492
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
493
+
494
+ Single wrapper for most popular notification libraries
495
+
496
+ <a name="parseconfig"></a>
497
+ ### <a href="http://github.com/datafolklabs/ruby-parseconfig/">parseconfig</a> v1.0.6
498
+ #### Config File Parser for Standard Unix/Linux Type Config Files
499
+
500
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
501
+
502
+ ParseConfig provides simple parsing of standard configuration files in the form of 'param = value'. It also supports nested [group] sections.
503
+
504
+ <a name="parser"></a>
505
+ ### <a href="https://github.com/whitequark/parser">parser</a> v2.3.0.pre.2
506
+ #### A Ruby parser written in pure Ruby.
507
+
508
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
509
+
510
+ A Ruby parser written in pure Ruby.
511
+
512
+ <a name="pmap"></a>
513
+ ### pmap v
514
+ ####
515
+
516
+ <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
517
+
518
+
519
+
520
+ <a name="pmap"></a>
521
+ ### <a href="https://github.com/bruceadams/pmap">pmap</a> v1.0.2
522
+ #### Add parallel methods into Enumerable: pmap and peach
523
+
524
+ <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
525
+
526
+ Add parallel methods into Enumerable: pmap and peach
527
+
528
+ <a name="powerpack"></a>
529
+ ### <a href="https://github.com/bbatsov/powerpack">powerpack</a> v0.1.1
530
+ #### A few useful extensions to core Ruby classes.
531
+
532
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
533
+
534
+ A few useful extensions to core Ruby classes.
535
+
536
+ <a name="pry"></a>
537
+ ### <a href="http://pry.github.com">pry</a> v0.9.12.6
538
+ #### An IRB alternative and runtime developer console
539
+
540
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
541
+
542
+ An IRB alternative and runtime developer console
543
+
544
+ <a name="rainbow"></a>
545
+ ### <a href="https://github.com/sickill/rainbow">rainbow</a> v2.0.0
546
+ #### Colorize printed text on ANSI terminals
547
+
548
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
549
+
550
+ Colorize printed text on ANSI terminals
551
+
552
+ <a name="rake"></a>
553
+ ### rake v
554
+ ####
555
+
556
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
557
+
558
+
559
+
560
+ <a name="rake"></a>
561
+ ### rake v10.4.2 (development)
562
+ #### This rake is bundled with Ruby
563
+
564
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
565
+
566
+
567
+
568
+ <a name="rake-notes"></a>
569
+ ### <a href="https://github.com/fgrehm/rake-notes">rake-notes</a> v0.2.0 (development)
570
+ #### rake notes task for non-Rails' projects
571
+
572
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
573
+
574
+ rake notes task for non-Rails' projects
575
+
576
+ <a name="rb-fsevent"></a>
577
+ ### <a href="http://rubygems.org/gems/rb-fsevent">rb-fsevent</a> v0.9.5
578
+ #### Very simple & usable FSEvents API
579
+
580
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
581
+
582
+ FSEvents API with Signals catching (without RubyCocoa)
583
+
584
+ <a name="rb-inotify"></a>
585
+ ### <a href="http://github.com/nex3/rb-inotify">rb-inotify</a> v0.9.5
586
+ #### A Ruby wrapper for Linux's inotify, using FFI
587
+
588
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
589
+
590
+ A Ruby wrapper for Linux's inotify, using FFI
591
+
592
+ <a name="redcarpet"></a>
593
+ ### <a href="http://github.com/vmg/redcarpet">redcarpet</a> v3.3.2 (development)
594
+ #### Markdown that smells nice
595
+
596
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
597
+
598
+ A fast, safe and extensible Markdown to (X)HTML parser
599
+
600
+ <a name="rest-client"></a>
601
+ ### <a href="https://github.com/rest-client/rest-client">rest-client</a> v1.7.3
602
+ #### Simple HTTP and REST client for Ruby, inspired by microframework syntax for specifying actions.
603
+
604
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
605
+
606
+ A simple HTTP and REST client for Ruby, inspired by the Sinatra microframework style of specifying actions: get, put, post, delete.
607
+
608
+ <a name="restforce"></a>
609
+ ### <a href="https://github.com/ejholmes/restforce">restforce</a> v1.5.3
610
+ #### A lightweight ruby client for the Salesforce REST api.
611
+
612
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
613
+
614
+ A lightweight ruby client for the Salesforce REST api.
615
+
616
+ <a name="rspec"></a>
617
+ ### <a href="http://github.com/rspec">rspec</a> v2.99.0 (development)
618
+ #### rspec-2.99.0
619
+
620
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
621
+
622
+ BDD for Ruby
623
+
624
+ <a name="rspec-core"></a>
625
+ ### <a href="http://github.com/rspec/rspec-core">rspec-core</a> v2.99.2
626
+ #### rspec-core-2.99.2
627
+
628
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
629
+
630
+ BDD for Ruby. RSpec runner and example groups.
631
+
632
+ <a name="rspec-expectations"></a>
633
+ ### <a href="http://github.com/rspec/rspec-expectations">rspec-expectations</a> v2.99.2
634
+ #### rspec-expectations-2.99.2
635
+
636
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
637
+
638
+ rspec expectations (should[_not] and matchers)
639
+
640
+ <a name="rspec-mocks"></a>
641
+ ### <a href="http://github.com/rspec/rspec-mocks">rspec-mocks</a> v2.99.4
642
+ #### rspec-mocks-2.99.4
643
+
644
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
645
+
646
+ RSpec's 'test double' framework, with support for stubbing and mocking
647
+
648
+ <a name="rubocop"></a>
649
+ ### <a href="http://github.com/bbatsov/rubocop">rubocop</a> v0.32.1 (development)
650
+ #### Automatic Ruby code style checking tool.
651
+
652
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
653
+
654
+ Automatic Ruby code style checking tool.
655
+ Aims to enforce the community-driven Ruby Style Guide.
656
+
657
+
658
+ <a name="ruby-debug-ide"></a>
659
+ ### <a href="https://github.com/ruby-debug/ruby-debug-ide">ruby-debug-ide</a> v0.4.32 (development)
660
+ #### IDE interface for ruby-debug.
661
+
662
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
663
+
664
+ An interface which glues ruby-debug to IDEs like Eclipse (RDT), NetBeans and RubyMine.
665
+
666
+
667
+ <a name="ruby-progressbar"></a>
668
+ ### <a href="https://github.com/jfelchner/ruby-progressbar">ruby-progressbar</a> v1.7.5
669
+ #### Ruby/ProgressBar is a flexible text progress bar library for Ruby.
670
+
671
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
672
+
673
+ Ruby/ProgressBar is an extremely flexible text progress bar library for Ruby.
674
+ The output can be customized with a flexible formatting system including:
675
+ percentage, bars of various formats, elapsed time and estimated time remaining.
676
+
677
+
678
+ <a name="rubyzip"></a>
679
+ ### rubyzip v
680
+ ####
681
+
682
+ <a href="http://www.ruby-lang.org/en/LICENSE.txt">ruby</a> whitelisted
683
+
684
+
685
+
686
+ <a name="rubyzip"></a>
687
+ ### <a href="http://github.com/rubyzip/rubyzip">rubyzip</a> v1.1.7
688
+ #### rubyzip is a ruby module for reading and writing zip files
689
+
690
+ <a href="http://www.ruby-lang.org/en/LICENSE.txt">ruby</a> whitelisted
691
+
692
+
693
+
694
+ <a name="safe_yaml"></a>
695
+ ### <a href="https://github.com/dtao/safe_yaml">safe_yaml</a> v1.0.4
696
+ #### SameYAML provides an alternative implementation of YAML.load suitable for accepting user input in Ruby applications.
697
+
698
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
699
+
700
+ Parse YAML safely
701
+
702
+ <a name="salesforce_bulk_query"></a>
703
+ ### <a href="https://github.com/cvengros/salesforce_bulk_query">salesforce_bulk_query</a> v0.2.0
704
+ #### Downloading data from Salesforce Bulk API made easy and scalable.
705
+
706
+ <a href="http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29">BSD</a> whitelisted
707
+
708
+ 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.
709
+
710
+ <a name="shellany"></a>
711
+ ### shellany v0.0.1
712
+ #### Simple, somewhat portable command capturing
713
+
714
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
715
+
716
+ MRI+JRuby compatible command output capturing
717
+
718
+ <a name="simplecov"></a>
719
+ ### <a href="http://github.com/colszowka/simplecov">simplecov</a> v0.10.0 (development)
720
+ #### Code coverage for Ruby 1.9+ with a powerful configuration library and automatic merging of coverage across test suites
721
+
722
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
723
+
724
+ Code coverage for Ruby 1.9+ with a powerful configuration library and automatic merging of coverage across test suites
725
+
726
+ <a name="simplecov-html"></a>
727
+ ### <a href="https://github.com/colszowka/simplecov-html">simplecov-html</a> v0.10.0
728
+ #### Default HTML formatter for SimpleCov code coverage tool for ruby 1.9+
729
+
730
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
731
+
732
+ Default HTML formatter for SimpleCov code coverage tool for ruby 1.9+
733
+
734
+ <a name="slop"></a>
735
+ ### <a href="http://github.com/leejarvis/slop">slop</a> v3.6.0
736
+ #### Simple Lightweight Option Parsing
737
+
738
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
739
+
740
+ A simple DSL for gathering options and parsing the command line
741
+
742
+ <a name="term-ansicolor"></a>
743
+ ### <a href="http://flori.github.com/term-ansicolor">term-ansicolor</a> v1.3.2
744
+ #### Ruby library that colors strings using ANSI escape sequences
745
+
746
+ GPL-2 whitelisted
747
+
748
+ This library uses ANSI escape sequences to control the attributes of terminal output
749
+
750
+ <a name="terminal-table"></a>
751
+ ### <a href="https://github.com/tj/terminal-table">terminal-table</a> v1.5.2
752
+ #### Simple, feature rich ascii table generation library
753
+
754
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
755
+
756
+
757
+
758
+ <a name="thor"></a>
759
+ ### <a href="http://whatisthor.com/">thor</a> v0.19.1
760
+ #### Thor is a toolkit for building powerful command-line interfaces.
761
+
762
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
763
+
764
+ Thor is a toolkit for building powerful command-line interfaces.
765
+
766
+ <a name="thread_safe"></a>
767
+ ### <a href="https://github.com/ruby-concurrency/thread_safe">thread_safe</a> v0.3.5
768
+ #### A collection of data structures and utilities to make thread-safe programming in Ruby easier
769
+
770
+ <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
771
+
772
+ Thread-safe collections and utilities for Ruby
773
+
774
+ <a name="tins"></a>
775
+ ### <a href="https://github.com/flori/tins">tins</a> v1.5.4
776
+ #### Useful stuff.
777
+
778
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
779
+
780
+ All the stuff that isn't good/big enough for a real library.
781
+
782
+ <a name="webmock"></a>
783
+ ### <a href="http://github.com/bblimke/webmock">webmock</a> v1.21.0 (development)
784
+ #### Library for stubbing HTTP requests in Ruby.
785
+
786
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
787
+
788
+ WebMock allows stubbing HTTP requests and setting expectations on HTTP requests.
789
+
790
+ <a name="xml-simple"></a>
791
+ ### <a href="https://github.com/maik/xml-simple">xml-simple</a> v1.1.5
792
+ #### A simple API for XML processing.
793
+
794
+ <a href="http://www.ruby-lang.org/en/LICENSE.txt">ruby</a> whitelisted
795
+
796
+
797
+
798
+ <a name="yard"></a>
799
+ ### <a href="http://yardoc.org">yard</a> v0.8.7.6 (development)
800
+ #### Documentation tool for consistent and usable documentation in Ruby.
801
+
802
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
803
+
804
+ YARD is a documentation generation tool for the Ruby programming language.
805
+ It enables the user to generate consistent, usable documentation that can be
806
+ exported to a number of formats very easily, and also supports extending for
807
+ custom Ruby constructs such as custom class level definitions.
808
+
809
+
810
+ <a name="yard-rspec"></a>
811
+ ### <a href="http://yardoc.org">yard-rspec</a> v0.1 (development)
812
+ #### YARD plugin to list RSpec specifications inside documentation
813
+
814
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
815
+
816
+