gooddata 0.6.20 → 0.6.22

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -1,4 +1,8 @@
1
- # encoding: utf-8
1
+ # encoding: UTF-8
2
+ #
3
+ # Copyright (c) 2010-2015 GoodData Corporation. All rights reserved.
4
+ # This source code is licensed under the BSD-style license found in the
5
+ # LICENSE file in the root directory of this source tree.
2
6
 
3
7
  require_relative 'object'
4
8
 
@@ -1,4 +1,8 @@
1
- # encoding: utf-8
1
+ # encoding: UTF-8
2
+ #
3
+ # Copyright (c) 2010-2015 GoodData Corporation. All rights reserved.
4
+ # This source code is licensed under the BSD-style license found in the
5
+ # LICENSE file in the root directory of this source tree.
2
6
 
3
7
  require_relative 'object'
4
8
 
@@ -1,4 +1,8 @@
1
1
  # encoding: UTF-8
2
+ #
3
+ # Copyright (c) 2010-2015 GoodData Corporation. All rights reserved.
4
+ # This source code is licensed under the BSD-style license found in the
5
+ # LICENSE file in the root directory of this source tree.
2
6
 
3
7
  require 'pathname'
4
8
 
@@ -1,8 +1,12 @@
1
1
  # encoding: UTF-8
2
+ #
3
+ # Copyright (c) 2010-2015 GoodData Corporation. All rights reserved.
4
+ # This source code is licensed under the BSD-style license found in the
5
+ # LICENSE file in the root directory of this source tree.
2
6
 
3
7
  # GoodData Module
4
8
  module GoodData
5
- VERSION = '0.6.20'
9
+ VERSION = '0.6.22'
6
10
 
7
11
  class << self
8
12
  # Version
@@ -1,4 +1,8 @@
1
1
  # encoding: UTF-8
2
+ #
3
+ # Copyright (c) 2010-2015 GoodData Corporation. All rights reserved.
4
+ # This source code is licensed under the BSD-style license found in the
5
+ # LICENSE file in the root directory of this source tree.
2
6
 
3
7
  require 'gooddata/bricks/brick'
4
8
  require 'gooddata/bricks/bricks'
@@ -16,7 +16,7 @@
16
16
  {
17
17
  "type": "label",
18
18
  "id" : "some_label_id",
19
- "column_name": "dev_id",
19
+ "column_name": "repo_id",
20
20
  "reference": "attr.repos.repo_id",
21
21
  "title": "Repository Id"
22
22
  },
@@ -29,7 +29,7 @@
29
29
  "type": "label",
30
30
  "id" : "some_attr_label_id",
31
31
  "reference": "some_attr_id",
32
- "column_name": "email",
32
+ "column_name": "repo_name",
33
33
  "gd_data_type": "VARCHAR(128)",
34
34
  "title": "Repository Name"
35
35
  }
@@ -1,3 +1,9 @@
1
+ # encoding: UTF-8
2
+ #
3
+ # Copyright (c) 2010-2015 GoodData Corporation. All rights reserved.
4
+ # This source code is licensed under the BSD-style license found in the
5
+ # LICENSE file in the root directory of this source tree.
6
+
1
7
  require 'gooddata'
2
8
 
3
9
  puts "GoodData::VERSION - #{GoodData::VERSION}"
@@ -1,3 +1,9 @@
1
+ # encoding: UTF-8
2
+ #
3
+ # Copyright (c) 2010-2015 GoodData Corporation. All rights reserved.
4
+ # This source code is licensed under the BSD-style license found in the
5
+ # LICENSE file in the root directory of this source tree.
6
+
1
7
  puts 'HELLO WORLD'
2
8
  require 'pp'
3
9
  pp $SCRIPT_PARAMS
@@ -8,7 +8,7 @@
8
8
  "some_label_id"
9
9
  ],
10
10
  "mode": "FULL",
11
- "columnName": "dev_id"
11
+ "columnName": "repo_id"
12
12
  },
13
13
  {
14
14
  "referenceKey": 1,
@@ -16,11 +16,11 @@
16
16
  "some_attr_label_id"
17
17
  ],
18
18
  "mode": "FULL",
19
- "columnName": "email"
19
+ "columnName": "repo_name"
20
20
  }
21
21
  ],
22
22
  "dataSet": "dataset.repos",
23
- "file": "data.csv",
23
+ "file": "dataset_repos.csv",
24
24
  "csvParams": {
25
25
  "quoteChar": "\"",
26
26
  "escapeChar": "\"",
@@ -47,7 +47,7 @@
47
47
  }
48
48
  ],
49
49
  "dataSet": "dataset.devs",
50
- "file": "data.csv",
50
+ "file": "dataset_devs.csv",
51
51
  "csvParams": {
52
52
  "quoteChar": "\"",
53
53
  "escapeChar": "\"",
@@ -95,7 +95,7 @@
95
95
  }
96
96
  ],
97
97
  "dataSet": "dataset.commits",
98
- "file": "data.csv",
98
+ "file": "dataset_commits.csv",
99
99
  "csvParams": {
100
100
  "quoteChar": "\"",
101
101
  "escapeChar": "\"",
@@ -0,0 +1,108 @@
1
+ {
2
+ "xtab_data": {
3
+ "columns": {
4
+ "tree": {
5
+ "index": {
6
+ },
7
+ "first": 0,
8
+ "last": 0,
9
+ "children": [
10
+ {
11
+ "index": {
12
+ },
13
+ "first": 0,
14
+ "last": 0,
15
+ "type": "empty",
16
+ "id": "0",
17
+ "children": [
18
+
19
+ ]
20
+ }
21
+ ],
22
+ "type": "root",
23
+ "id": null
24
+ },
25
+ "lookups": [
26
+ {
27
+ "0": "Values"
28
+ }
29
+ ]
30
+ },
31
+ "data": [
32
+
33
+ ],
34
+ "overall_size": {
35
+ "columns": 1,
36
+ "rows": "3"
37
+ },
38
+ "rows": {
39
+ "tree": {
40
+ "index": {
41
+ "6": [
42
+ 0
43
+ ],
44
+ "4": [
45
+ 1
46
+ ],
47
+ "2": [
48
+ 2
49
+ ]
50
+ },
51
+ "first": 0,
52
+ "last": 2,
53
+ "children": [
54
+ {
55
+ "index": {
56
+ },
57
+ "first": 0,
58
+ "last": 0,
59
+ "children": [
60
+
61
+ ],
62
+ "type": "normal",
63
+ "id": "6"
64
+ },
65
+ {
66
+ "index": {
67
+ },
68
+ "first": 1,
69
+ "last": 1,
70
+ "children": [
71
+
72
+ ],
73
+ "type": "normal",
74
+ "id": "4"
75
+ },
76
+ {
77
+ "index": {
78
+ },
79
+ "first": 2,
80
+ "last": 2,
81
+ "children": [
82
+
83
+ ],
84
+ "type": "normal",
85
+ "id": "2"
86
+ }
87
+ ],
88
+ "type": "root",
89
+ "id": null
90
+ },
91
+ "lookups": [
92
+ {
93
+ "6": "jirka",
94
+ "4": "petr",
95
+ "2": "tomas"
96
+ }
97
+ ]
98
+ },
99
+ "offset": {
100
+ "columns": 0,
101
+ "rows": 0
102
+ },
103
+ "size": {
104
+ "columns": "0",
105
+ "rows": 3
106
+ }
107
+ }
108
+ }
@@ -0,0 +1,83 @@
1
+ {
2
+ "xtab_data": {
3
+ "columns": {
4
+ "tree": {
5
+ "index": {
6
+ "0": [
7
+ 0
8
+ ]
9
+ },
10
+ "first": 0,
11
+ "last": 0,
12
+ "children": [
13
+ {
14
+ "index": {
15
+ },
16
+ "first": 0,
17
+ "last": 0,
18
+ "children": [
19
+
20
+ ],
21
+ "type": "metric",
22
+ "id": "0"
23
+ }
24
+ ],
25
+ "type": "root",
26
+ "id": null
27
+ },
28
+ "lookups": [
29
+ {
30
+ "0": "sum of Age"
31
+ }
32
+ ]
33
+ },
34
+ "data": [
35
+ [
36
+ "65"
37
+ ]
38
+ ],
39
+ "overall_size": {
40
+ "columns": "1",
41
+ "rows": "1"
42
+ },
43
+ "rows": {
44
+ "tree": {
45
+ "index": {
46
+ "0": [
47
+ 0
48
+ ]
49
+ },
50
+ "first": 0,
51
+ "last": 0,
52
+ "children": [
53
+ {
54
+ "index": {
55
+ },
56
+ "first": 0,
57
+ "last": 0,
58
+ "children": [
59
+
60
+ ],
61
+ "type": "metric",
62
+ "id": "0"
63
+ }
64
+ ],
65
+ "type": "root",
66
+ "id": null
67
+ },
68
+ "lookups": [
69
+ {
70
+ "0": "sum of Age"
71
+ }
72
+ ]
73
+ },
74
+ "offset": {
75
+ "columns": 0,
76
+ "rows": 0
77
+ },
78
+ "size": {
79
+ "columns": 1,
80
+ "rows": 1
81
+ }
82
+ }
83
+ }
@@ -0,0 +1,197 @@
1
+ {
2
+ "xtab_data": {
3
+ "columns": {
4
+ "tree": {
5
+ "index": {
6
+ "3": [
7
+ 1
8
+ ],
9
+ "7": [
10
+ 0
11
+ ],
12
+ "5": [
13
+ 2
14
+ ]
15
+ },
16
+ "first": 0,
17
+ "last": 2,
18
+ "children": [
19
+ {
20
+ "index": {
21
+ "0": [
22
+ 0
23
+ ]
24
+ },
25
+ "first": 0,
26
+ "last": 0,
27
+ "children": [
28
+ {
29
+ "index": {
30
+ },
31
+ "first": 0,
32
+ "last": 0,
33
+ "children": [
34
+
35
+ ],
36
+ "type": "metric",
37
+ "id": "0"
38
+ }
39
+ ],
40
+ "type": "normal",
41
+ "id": "7"
42
+ },
43
+ {
44
+ "index": {
45
+ "0": [
46
+ 0
47
+ ]
48
+ },
49
+ "first": 1,
50
+ "last": 1,
51
+ "children": [
52
+ {
53
+ "index": {
54
+ },
55
+ "first": 1,
56
+ "last": 1,
57
+ "children": [
58
+
59
+ ],
60
+ "type": "metric",
61
+ "id": "0"
62
+ }
63
+ ],
64
+ "type": "normal",
65
+ "id": "3"
66
+ },
67
+ {
68
+ "index": {
69
+ "0": [
70
+ 0
71
+ ]
72
+ },
73
+ "first": 2,
74
+ "last": 2,
75
+ "children": [
76
+ {
77
+ "index": {
78
+ },
79
+ "first": 2,
80
+ "last": 2,
81
+ "children": [
82
+
83
+ ],
84
+ "type": "metric",
85
+ "id": "0"
86
+ }
87
+ ],
88
+ "type": "normal",
89
+ "id": "5"
90
+ }
91
+ ],
92
+ "type": "root",
93
+ "id": null
94
+ },
95
+ "lookups": [
96
+ {
97
+ "3": "praha",
98
+ "7": "kolin",
99
+ "5": "varsava"
100
+ },
101
+ {
102
+ "0": "sum of Age"
103
+ }
104
+ ]
105
+ },
106
+ "data": [
107
+ [
108
+ "25",
109
+ null,
110
+ null
111
+ ],
112
+ [
113
+ null,
114
+ null,
115
+ "15"
116
+ ],
117
+ [
118
+ null,
119
+ "25",
120
+ null
121
+ ]
122
+ ],
123
+ "overall_size": {
124
+ "columns": "3",
125
+ "rows": "3"
126
+ },
127
+ "rows": {
128
+ "tree": {
129
+ "index": {
130
+ "6": [
131
+ 0
132
+ ],
133
+ "4": [
134
+ 1
135
+ ],
136
+ "2": [
137
+ 2
138
+ ]
139
+ },
140
+ "first": 0,
141
+ "last": 2,
142
+ "children": [
143
+ {
144
+ "index": {
145
+ },
146
+ "first": 0,
147
+ "last": 0,
148
+ "children": [
149
+
150
+ ],
151
+ "type": "normal",
152
+ "id": "6"
153
+ },
154
+ {
155
+ "index": {
156
+ },
157
+ "first": 1,
158
+ "last": 1,
159
+ "children": [
160
+
161
+ ],
162
+ "type": "normal",
163
+ "id": "4"
164
+ },
165
+ {
166
+ "index": {
167
+ },
168
+ "first": 2,
169
+ "last": 2,
170
+ "children": [
171
+
172
+ ],
173
+ "type": "normal",
174
+ "id": "2"
175
+ }
176
+ ],
177
+ "type": "root",
178
+ "id": null
179
+ },
180
+ "lookups": [
181
+ {
182
+ "6": "jirka",
183
+ "4": "petr",
184
+ "2": "tomas"
185
+ }
186
+ ]
187
+ },
188
+ "offset": {
189
+ "columns": 0,
190
+ "rows": 0
191
+ },
192
+ "size": {
193
+ "columns": 3,
194
+ "rows": 3
195
+ }
196
+ }
197
+ }