elasticsearch-api 6.8.3 → 7.0.0.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (334) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +17 -1
  3. data/LICENSE.txt +199 -10
  4. data/README.md +3 -3
  5. data/Rakefile +23 -6
  6. data/elasticsearch-api.gemspec +77 -43
  7. data/lib/elasticsearch-api.rb +16 -3
  8. data/lib/elasticsearch/api.rb +18 -5
  9. data/lib/elasticsearch/api/actions/abort_benchmark.rb +17 -4
  10. data/lib/elasticsearch/api/actions/benchmark.rb +18 -5
  11. data/lib/elasticsearch/api/actions/bulk.rb +18 -7
  12. data/lib/elasticsearch/api/actions/cat/aliases.rb +25 -11
  13. data/lib/elasticsearch/api/actions/cat/allocation.rb +26 -12
  14. data/lib/elasticsearch/api/actions/cat/count.rb +25 -11
  15. data/lib/elasticsearch/api/actions/cat/fielddata.rb +23 -11
  16. data/lib/elasticsearch/api/actions/cat/health.rb +26 -12
  17. data/lib/elasticsearch/api/actions/cat/help.rb +18 -6
  18. data/lib/elasticsearch/api/actions/cat/indices.rb +28 -13
  19. data/lib/elasticsearch/api/actions/cat/master.rb +25 -11
  20. data/lib/elasticsearch/api/actions/cat/nodeattrs.rb +19 -7
  21. data/lib/elasticsearch/api/actions/cat/nodes.rb +25 -11
  22. data/lib/elasticsearch/api/actions/cat/params_registry.rb +19 -6
  23. data/lib/elasticsearch/api/actions/cat/pending_tasks.rb +25 -11
  24. data/lib/elasticsearch/api/actions/cat/plugins.rb +21 -8
  25. data/lib/elasticsearch/api/actions/cat/recovery.rb +26 -11
  26. data/lib/elasticsearch/api/actions/cat/repositories.rb +18 -7
  27. data/lib/elasticsearch/api/actions/cat/segments.rb +22 -10
  28. data/lib/elasticsearch/api/actions/cat/shards.rb +26 -12
  29. data/lib/elasticsearch/api/actions/cat/snapshots.rb +19 -9
  30. data/lib/elasticsearch/api/actions/cat/tasks.rb +20 -6
  31. data/lib/elasticsearch/api/actions/cat/templates.rb +21 -8
  32. data/lib/elasticsearch/api/actions/cat/thread_pool.rb +33 -16
  33. data/lib/elasticsearch/api/actions/clear_scroll.rb +19 -15
  34. data/lib/elasticsearch/api/actions/cluster/allocation_explain.rb +20 -6
  35. data/lib/elasticsearch/api/actions/cluster/get_settings.rb +19 -7
  36. data/lib/elasticsearch/api/actions/cluster/health.rb +35 -13
  37. data/lib/elasticsearch/api/actions/cluster/params_registry.rb +19 -6
  38. data/lib/elasticsearch/api/actions/cluster/pending_tasks.rb +20 -6
  39. data/lib/elasticsearch/api/actions/cluster/put_settings.rb +19 -8
  40. data/lib/elasticsearch/api/actions/cluster/remote_info.rb +17 -10
  41. data/lib/elasticsearch/api/actions/cluster/reroute.rb +23 -10
  42. data/lib/elasticsearch/api/actions/cluster/state.rb +28 -18
  43. data/lib/elasticsearch/api/actions/cluster/stats.rb +21 -16
  44. data/lib/elasticsearch/api/actions/count.rb +18 -4
  45. data/lib/elasticsearch/api/actions/create.rb +16 -3
  46. data/lib/elasticsearch/api/actions/delete.rb +24 -19
  47. data/lib/elasticsearch/api/actions/delete_by_query.rb +18 -5
  48. data/lib/elasticsearch/api/actions/{delete_by_query_rethrottle.rb → delete_by_rethrottle.rb} +18 -5
  49. data/lib/elasticsearch/api/actions/delete_script.rb +18 -5
  50. data/lib/elasticsearch/api/actions/exists.rb +18 -6
  51. data/lib/elasticsearch/api/actions/exists_source.rb +16 -3
  52. data/lib/elasticsearch/api/actions/explain.rb +30 -10
  53. data/lib/elasticsearch/api/actions/field_caps.rb +18 -6
  54. data/lib/elasticsearch/api/actions/get.rb +20 -6
  55. data/lib/elasticsearch/api/actions/get_script.rb +22 -9
  56. data/lib/elasticsearch/api/actions/get_source.rb +32 -10
  57. data/lib/elasticsearch/api/actions/index.rb +37 -17
  58. data/lib/elasticsearch/api/actions/indices/analyze.rb +32 -6
  59. data/lib/elasticsearch/api/actions/indices/clear_cache.rb +20 -8
  60. data/lib/elasticsearch/api/actions/indices/close.rb +31 -11
  61. data/lib/elasticsearch/api/actions/indices/create.rb +36 -24
  62. data/lib/elasticsearch/api/actions/indices/delete.rb +21 -7
  63. data/lib/elasticsearch/api/actions/indices/delete_alias.rb +20 -8
  64. data/lib/elasticsearch/api/actions/indices/delete_template.rb +18 -6
  65. data/lib/elasticsearch/api/actions/indices/exists.rb +32 -12
  66. data/lib/elasticsearch/api/actions/indices/exists_alias.rb +30 -10
  67. data/lib/elasticsearch/api/actions/indices/exists_template.rb +20 -8
  68. data/lib/elasticsearch/api/actions/indices/exists_type.rb +31 -10
  69. data/lib/elasticsearch/api/actions/indices/flush.rb +26 -9
  70. data/lib/elasticsearch/api/actions/indices/flush_synced.rb +18 -5
  71. data/lib/elasticsearch/api/actions/indices/forcemerge.rb +18 -5
  72. data/lib/elasticsearch/api/actions/indices/freeze.rb +1 -4
  73. data/lib/elasticsearch/api/actions/indices/get.rb +21 -7
  74. data/lib/elasticsearch/api/actions/indices/get_alias.rb +18 -5
  75. data/lib/elasticsearch/api/actions/indices/get_field_mapping.rb +21 -7
  76. data/lib/elasticsearch/api/actions/indices/get_mapping.rb +21 -8
  77. data/lib/elasticsearch/api/actions/indices/get_settings.rb +18 -5
  78. data/lib/elasticsearch/api/actions/indices/get_template.rb +21 -7
  79. data/lib/elasticsearch/api/actions/indices/open.rb +18 -5
  80. data/lib/elasticsearch/api/actions/indices/params_registry.rb +19 -6
  81. data/lib/elasticsearch/api/actions/indices/put_alias.rb +18 -5
  82. data/lib/elasticsearch/api/actions/indices/put_mapping.rb +23 -11
  83. data/lib/elasticsearch/api/actions/indices/put_settings.rb +18 -5
  84. data/lib/elasticsearch/api/actions/indices/put_template.rb +21 -7
  85. data/lib/elasticsearch/api/actions/indices/recovery.rb +19 -6
  86. data/lib/elasticsearch/api/actions/indices/refresh.rb +18 -5
  87. data/lib/elasticsearch/api/actions/indices/rollover.rb +21 -7
  88. data/lib/elasticsearch/api/actions/indices/segments.rb +18 -5
  89. data/lib/elasticsearch/api/actions/indices/shard_stores.rb +18 -5
  90. data/lib/elasticsearch/api/actions/indices/shrink.rb +18 -7
  91. data/lib/elasticsearch/api/actions/indices/split.rb +19 -9
  92. data/lib/elasticsearch/api/actions/indices/stats.rb +18 -5
  93. data/lib/elasticsearch/api/actions/indices/unfreeze.rb +0 -4
  94. data/lib/elasticsearch/api/actions/indices/update_aliases.rb +18 -5
  95. data/lib/elasticsearch/api/actions/indices/upgrade.rb +18 -5
  96. data/lib/elasticsearch/api/actions/indices/validate_query.rb +18 -5
  97. data/lib/elasticsearch/api/actions/info.rb +16 -9
  98. data/lib/elasticsearch/api/actions/ingest/delete_pipeline.rb +18 -5
  99. data/lib/elasticsearch/api/actions/ingest/get_pipeline.rb +20 -8
  100. data/lib/elasticsearch/api/actions/ingest/params_registry.rb +19 -6
  101. data/lib/elasticsearch/api/actions/ingest/processor_grok.rb +0 -4
  102. data/lib/elasticsearch/api/actions/ingest/put_pipeline.rb +18 -5
  103. data/lib/elasticsearch/api/actions/ingest/simulate.rb +22 -9
  104. data/lib/elasticsearch/api/actions/mget.rb +17 -4
  105. data/lib/elasticsearch/api/actions/msearch.rb +21 -7
  106. data/lib/elasticsearch/api/actions/msearch_template.rb +21 -6
  107. data/lib/elasticsearch/api/actions/mtermvectors.rb +18 -5
  108. data/lib/elasticsearch/api/actions/nodes/hot_threads.rb +20 -5
  109. data/lib/elasticsearch/api/actions/nodes/info.rb +44 -11
  110. data/lib/elasticsearch/api/actions/nodes/params_registry.rb +19 -6
  111. data/lib/elasticsearch/api/actions/nodes/reload_secure_settings.rb +19 -12
  112. data/lib/elasticsearch/api/actions/nodes/shutdown.rb +17 -4
  113. data/lib/elasticsearch/api/actions/nodes/stats.rb +18 -5
  114. data/lib/elasticsearch/api/actions/nodes/usage.rb +3 -7
  115. data/lib/elasticsearch/api/actions/params_registry.rb +19 -6
  116. data/lib/elasticsearch/api/actions/ping.rb +16 -9
  117. data/lib/elasticsearch/api/actions/put_script.rb +18 -6
  118. data/lib/elasticsearch/api/actions/rank_eval.rb +17 -4
  119. data/lib/elasticsearch/api/actions/reindex.rb +19 -5
  120. data/lib/elasticsearch/api/actions/reindex_rethrottle.rb +17 -4
  121. data/lib/elasticsearch/api/actions/remote/info.rb +16 -3
  122. data/lib/elasticsearch/api/actions/render_search_template.rb +18 -5
  123. data/lib/elasticsearch/api/actions/scripts_painless_execute.rb +16 -9
  124. data/lib/elasticsearch/api/actions/scroll.rb +19 -6
  125. data/lib/elasticsearch/api/actions/search.rb +72 -39
  126. data/lib/elasticsearch/api/actions/search_shards.rb +31 -11
  127. data/lib/elasticsearch/api/actions/search_template.rb +21 -6
  128. data/lib/elasticsearch/api/actions/snapshot/create.rb +20 -6
  129. data/lib/elasticsearch/api/actions/snapshot/create_repository.rb +18 -5
  130. data/lib/elasticsearch/api/actions/snapshot/delete.rb +20 -7
  131. data/lib/elasticsearch/api/actions/snapshot/delete_repository.rb +19 -5
  132. data/lib/elasticsearch/api/actions/snapshot/get.rb +21 -7
  133. data/lib/elasticsearch/api/actions/snapshot/get_repository.rb +23 -7
  134. data/lib/elasticsearch/api/actions/snapshot/params_registry.rb +19 -6
  135. data/lib/elasticsearch/api/actions/snapshot/restore.rb +18 -5
  136. data/lib/elasticsearch/api/actions/snapshot/status.rb +23 -8
  137. data/lib/elasticsearch/api/actions/snapshot/verify_repository.rb +18 -5
  138. data/lib/elasticsearch/api/actions/tasks/cancel.rb +18 -5
  139. data/lib/elasticsearch/api/actions/tasks/get.rb +18 -5
  140. data/lib/elasticsearch/api/actions/tasks/list.rb +18 -5
  141. data/lib/elasticsearch/api/actions/tasks/params_registry.rb +19 -6
  142. data/lib/elasticsearch/api/actions/termvectors.rb +33 -18
  143. data/lib/elasticsearch/api/actions/update.rb +61 -26
  144. data/lib/elasticsearch/api/actions/update_by_query.rb +18 -5
  145. data/lib/elasticsearch/api/actions/update_by_query_rethrottle.rb +16 -3
  146. data/lib/elasticsearch/api/namespace/cat.rb +16 -3
  147. data/lib/elasticsearch/api/namespace/cluster.rb +16 -3
  148. data/lib/elasticsearch/api/namespace/common.rb +16 -3
  149. data/lib/elasticsearch/api/namespace/indices.rb +16 -3
  150. data/lib/elasticsearch/api/namespace/ingest.rb +16 -3
  151. data/lib/elasticsearch/api/namespace/nodes.rb +16 -3
  152. data/lib/elasticsearch/api/namespace/remote.rb +16 -3
  153. data/lib/elasticsearch/api/namespace/snapshot.rb +16 -3
  154. data/lib/elasticsearch/api/namespace/tasks.rb +16 -3
  155. data/lib/elasticsearch/api/utils.rb +16 -3
  156. data/lib/elasticsearch/api/version.rb +17 -4
  157. data/spec/elasticsearch/api/actions/abort_benchmark_spec.rb +16 -3
  158. data/spec/elasticsearch/api/actions/benchmark_spec.rb +16 -3
  159. data/spec/elasticsearch/api/actions/bulk_spec.rb +16 -3
  160. data/spec/elasticsearch/api/actions/cat/aliases_spec.rb +16 -3
  161. data/spec/elasticsearch/api/actions/cat/allocation_spec.rb +16 -3
  162. data/spec/elasticsearch/api/actions/cat/count_spec.rb +16 -3
  163. data/spec/elasticsearch/api/actions/cat/fielddata_spec.rb +16 -3
  164. data/spec/elasticsearch/api/actions/cat/health_spec.rb +16 -3
  165. data/spec/elasticsearch/api/actions/cat/help_spec.rb +16 -3
  166. data/spec/elasticsearch/api/actions/cat/indices_spec.rb +16 -3
  167. data/spec/elasticsearch/api/actions/cat/master_spec.rb +16 -3
  168. data/spec/elasticsearch/api/actions/cat/nodeattrs_spec.rb +16 -3
  169. data/spec/elasticsearch/api/actions/cat/nodes_spec.rb +16 -3
  170. data/spec/elasticsearch/api/actions/cat/pending_tasks_spec.rb +16 -3
  171. data/spec/elasticsearch/api/actions/cat/plugins_spec.rb +16 -3
  172. data/spec/elasticsearch/api/actions/cat/recovery_spec.rb +16 -3
  173. data/spec/elasticsearch/api/actions/cat/repositories_spec.rb +16 -3
  174. data/spec/elasticsearch/api/actions/cat/segments_spec.rb +33 -4
  175. data/spec/elasticsearch/api/actions/cat/shards_spec.rb +16 -3
  176. data/spec/elasticsearch/api/actions/cat/snapshot_spec.rb +16 -3
  177. data/spec/elasticsearch/api/actions/cat/tasks_spec.rb +16 -3
  178. data/spec/elasticsearch/api/actions/cat/templates_spec.rb +16 -3
  179. data/spec/elasticsearch/api/actions/cat/thread_pool_spec.rb +16 -3
  180. data/spec/elasticsearch/api/actions/clear_scroll_spec.rb +16 -3
  181. data/spec/elasticsearch/api/actions/cluster/allocation_explain_spec.rb +16 -3
  182. data/spec/elasticsearch/api/actions/cluster/get_settings_spec.rb +16 -3
  183. data/spec/elasticsearch/api/actions/cluster/health_spec.rb +16 -3
  184. data/spec/elasticsearch/api/actions/cluster/pending_tasks_spec.rb +16 -3
  185. data/spec/elasticsearch/api/actions/cluster/put_settings_spec.rb +16 -3
  186. data/spec/elasticsearch/api/actions/cluster/remote_info_spec.rb +16 -3
  187. data/spec/elasticsearch/api/actions/cluster/reroute_spec.rb +16 -3
  188. data/spec/elasticsearch/api/actions/cluster/state_spec.rb +16 -3
  189. data/spec/elasticsearch/api/actions/cluster/stats_spec.rb +16 -20
  190. data/spec/elasticsearch/api/actions/count_spec.rb +16 -3
  191. data/spec/elasticsearch/api/actions/create_document_spec.rb +16 -3
  192. data/spec/elasticsearch/api/actions/delete_by_query_spec.rb +16 -3
  193. data/spec/elasticsearch/api/actions/delete_document_spec.rb +16 -9
  194. data/spec/elasticsearch/api/actions/delete_script_spec.rb +16 -3
  195. data/spec/elasticsearch/api/actions/exists_document_spec.rb +16 -3
  196. data/spec/elasticsearch/api/actions/explain_document_spec.rb +17 -10
  197. data/spec/elasticsearch/api/actions/field_caps_spec.rb +16 -3
  198. data/spec/elasticsearch/api/actions/get_document_source_spec.rb +17 -4
  199. data/spec/elasticsearch/api/actions/get_document_spec.rb +17 -4
  200. data/spec/elasticsearch/api/actions/get_script_spec.rb +22 -16
  201. data/spec/elasticsearch/api/actions/hashie_spec.rb +16 -3
  202. data/spec/elasticsearch/api/actions/index_document_spec.rb +16 -9
  203. data/spec/elasticsearch/api/actions/indices/analyze_spec.rb +16 -3
  204. data/spec/elasticsearch/api/actions/indices/clear_cache_spec.rb +19 -6
  205. data/spec/elasticsearch/api/actions/indices/close_spec.rb +16 -3
  206. data/spec/elasticsearch/api/actions/indices/create_spec.rb +16 -3
  207. data/spec/elasticsearch/api/actions/indices/delete_alias_spec.rb +16 -3
  208. data/spec/elasticsearch/api/actions/indices/delete_spec.rb +16 -3
  209. data/spec/elasticsearch/api/actions/indices/delete_template_spec.rb +16 -3
  210. data/spec/elasticsearch/api/actions/indices/exists_alias_spec.rb +16 -3
  211. data/spec/elasticsearch/api/actions/indices/exists_spec.rb +16 -3
  212. data/spec/elasticsearch/api/actions/indices/exists_template_spec.rb +16 -3
  213. data/spec/elasticsearch/api/actions/indices/exists_type_spec.rb +16 -3
  214. data/spec/elasticsearch/api/actions/indices/flush_spec.rb +16 -3
  215. data/spec/elasticsearch/api/actions/indices/flush_synced_spec.rb +16 -3
  216. data/spec/elasticsearch/api/actions/indices/forcemerge_spec.rb +16 -3
  217. data/spec/elasticsearch/api/actions/indices/freeze_spec.rb +68 -0
  218. data/spec/elasticsearch/api/actions/indices/get_alias_spec.rb +16 -3
  219. data/spec/elasticsearch/api/actions/indices/get_field_mapping_spec.rb +16 -3
  220. data/spec/elasticsearch/api/actions/indices/get_mapping_spec.rb +16 -3
  221. data/spec/elasticsearch/api/actions/indices/get_settings_spec.rb +16 -3
  222. data/spec/elasticsearch/api/actions/indices/get_spec.rb +16 -3
  223. data/spec/elasticsearch/api/actions/indices/open_spec.rb +16 -3
  224. data/spec/elasticsearch/api/actions/indices/put_alias_spec.rb +16 -3
  225. data/spec/elasticsearch/api/actions/indices/put_mapping_spec.rb +16 -3
  226. data/spec/elasticsearch/api/actions/indices/put_settings_spec.rb +31 -3
  227. data/spec/elasticsearch/api/actions/indices/put_template_spec.rb +16 -3
  228. data/spec/elasticsearch/api/actions/indices/recovery_spec.rb +16 -3
  229. data/spec/elasticsearch/api/actions/indices/refresh_spec.rb +16 -3
  230. data/spec/elasticsearch/api/actions/indices/rollover_spec.rb +16 -3
  231. data/spec/elasticsearch/api/actions/indices/segments_spec.rb +16 -3
  232. data/spec/elasticsearch/api/actions/indices/shard_stores_spec.rb +16 -3
  233. data/spec/elasticsearch/api/actions/indices/shrink_spec.rb +16 -3
  234. data/spec/elasticsearch/api/actions/indices/split_spec.rb +16 -3
  235. data/spec/elasticsearch/api/actions/indices/stats_spec.rb +125 -0
  236. data/spec/elasticsearch/api/actions/indices/unfreeze_spec.rb +68 -0
  237. data/spec/elasticsearch/api/actions/indices/update_aliases_spec.rb +16 -3
  238. data/spec/elasticsearch/api/actions/indices/upgrade_spec.rb +16 -3
  239. data/spec/elasticsearch/api/actions/indices/validate_query_spec.rb +16 -3
  240. data/spec/elasticsearch/api/actions/info_spec.rb +16 -3
  241. data/spec/elasticsearch/api/actions/ingest/delete_pipeline_spec.rb +16 -3
  242. data/spec/elasticsearch/api/actions/ingest/get_pipeline_spec.rb +16 -3
  243. data/spec/elasticsearch/api/actions/ingest/put_pipeline_spec.rb +16 -3
  244. data/spec/elasticsearch/api/actions/ingest/simulate_spec.rb +16 -3
  245. data/spec/elasticsearch/api/actions/json_builders_spec.rb +16 -3
  246. data/spec/elasticsearch/api/actions/mget_spec.rb +16 -3
  247. data/spec/elasticsearch/api/actions/msearch_spec.rb +16 -3
  248. data/spec/elasticsearch/api/actions/msearch_template_spec.rb +16 -3
  249. data/spec/elasticsearch/api/actions/mtermvectors_spec.rb +16 -3
  250. data/spec/elasticsearch/api/actions/nodes/hot_threads_spec.rb +16 -3
  251. data/spec/elasticsearch/api/actions/nodes/info_spec.rb +16 -3
  252. data/spec/elasticsearch/api/actions/nodes/reload_secure_settings_spec.rb +16 -3
  253. data/spec/elasticsearch/api/actions/nodes/shutdown_spec.rb +16 -3
  254. data/spec/elasticsearch/api/actions/nodes/stats_spec.rb +16 -3
  255. data/spec/elasticsearch/api/actions/ping_spec.rb +16 -3
  256. data/spec/elasticsearch/api/actions/put_script_spec.rb +16 -3
  257. data/spec/elasticsearch/api/actions/reindex_spec.rb +16 -3
  258. data/spec/elasticsearch/api/actions/remote/info_spec.rb +16 -3
  259. data/spec/elasticsearch/api/actions/render_search_template_spec.rb +16 -3
  260. data/spec/elasticsearch/api/actions/scoll_spec.rb +16 -3
  261. data/spec/elasticsearch/api/actions/search_shards_spec.rb +16 -3
  262. data/spec/elasticsearch/api/actions/search_spec.rb +31 -3
  263. data/spec/elasticsearch/api/actions/search_template_spec.rb +16 -3
  264. data/spec/elasticsearch/api/actions/snapshot/create_repository_spec.rb +16 -3
  265. data/spec/elasticsearch/api/actions/snapshot/create_spec.rb +16 -3
  266. data/spec/elasticsearch/api/actions/snapshot/delete_repository_spec.rb +16 -3
  267. data/spec/elasticsearch/api/actions/snapshot/delete_spec.rb +16 -3
  268. data/spec/elasticsearch/api/actions/snapshot/get_repository_spec.rb +16 -3
  269. data/spec/elasticsearch/api/actions/snapshot/get_spec.rb +16 -3
  270. data/spec/elasticsearch/api/actions/snapshot/restore_spec.rb +16 -3
  271. data/spec/elasticsearch/api/actions/snapshot/status_spec.rb +16 -3
  272. data/spec/elasticsearch/api/actions/snapshot/verify_repository_spec.rb +16 -3
  273. data/spec/elasticsearch/api/actions/tasks/cancel_spec.rb +16 -3
  274. data/spec/elasticsearch/api/actions/tasks/get_spec.rb +16 -3
  275. data/spec/elasticsearch/api/actions/tasks/list_spec.rb +16 -3
  276. data/spec/elasticsearch/api/actions/termvectors_spec.rb +16 -9
  277. data/spec/elasticsearch/api/actions/update_by_query_spec.rb +16 -3
  278. data/spec/elasticsearch/api/actions/update_document_spec.rb +16 -9
  279. data/spec/elasticsearch/api/api_spec.rb +16 -3
  280. data/spec/elasticsearch/api/client_spec.rb +16 -3
  281. data/spec/elasticsearch/api/utils_spec.rb +16 -3
  282. data/spec/spec_helper.rb +16 -14
  283. data/test/integration/yaml_test_runner.rb +84 -42
  284. data/test/test_helper.rb +86 -14
  285. data/utils/Gemfile +17 -0
  286. data/utils/Thorfile +17 -0
  287. data/utils/thor/generate_api.rb +16 -3
  288. data/utils/thor/generate_source.rb +22 -6
  289. data/utils/thor/lister.rb +16 -3
  290. data/utils/thor/templates/ruby/method.erb +22 -7
  291. data/utils/thor/templates/ruby/test.erb +17 -0
  292. data/utils/thor/templates/ruby/test_helper.rb +16 -4
  293. metadata +56 -122
  294. data/lib/elasticsearch/api/actions/count_percolate.rb +0 -86
  295. data/lib/elasticsearch/api/actions/delete_template.rb +0 -25
  296. data/lib/elasticsearch/api/actions/field_stats.rb +0 -40
  297. data/lib/elasticsearch/api/actions/get_template.rb +0 -31
  298. data/lib/elasticsearch/api/actions/indices/delete_mapping.rb +0 -30
  299. data/lib/elasticsearch/api/actions/indices/delete_warmer.rb +0 -36
  300. data/lib/elasticsearch/api/actions/indices/get_aliases.rb +0 -41
  301. data/lib/elasticsearch/api/actions/indices/get_warmer.rb +0 -66
  302. data/lib/elasticsearch/api/actions/indices/optimize.rb +0 -81
  303. data/lib/elasticsearch/api/actions/indices/put_warmer.rb +0 -69
  304. data/lib/elasticsearch/api/actions/indices/seal.rb +0 -28
  305. data/lib/elasticsearch/api/actions/indices/snapshot_index.rb +0 -48
  306. data/lib/elasticsearch/api/actions/indices/status.rb +0 -67
  307. data/lib/elasticsearch/api/actions/list_benchmarks.rb +0 -31
  308. data/lib/elasticsearch/api/actions/mlt.rb +0 -134
  309. data/lib/elasticsearch/api/actions/mpercolate.rb +0 -66
  310. data/lib/elasticsearch/api/actions/percolate.rb +0 -77
  311. data/lib/elasticsearch/api/actions/put_template.rb +0 -29
  312. data/lib/elasticsearch/api/actions/search_exists.rb +0 -67
  313. data/lib/elasticsearch/api/actions/suggest.rb +0 -53
  314. data/spec/elasticsearch/api/actions/count_percolate_spec.rb +0 -21
  315. data/spec/elasticsearch/api/actions/delete_template_spec.rb +0 -21
  316. data/spec/elasticsearch/api/actions/field_stats_spec.rb +0 -21
  317. data/spec/elasticsearch/api/actions/get_template_spec.rb +0 -56
  318. data/spec/elasticsearch/api/actions/indices/delete_mapping_spec.rb +0 -81
  319. data/spec/elasticsearch/api/actions/indices/delete_warmer_spec.rb +0 -90
  320. data/spec/elasticsearch/api/actions/indices/get_aliases_spec.rb +0 -59
  321. data/spec/elasticsearch/api/actions/indices/get_template_spec.rb +0 -63
  322. data/spec/elasticsearch/api/actions/indices/get_warmer_spec.rb +0 -52
  323. data/spec/elasticsearch/api/actions/indices/optimize_spec.rb +0 -67
  324. data/spec/elasticsearch/api/actions/indices/put_warmer_spec.rb +0 -105
  325. data/spec/elasticsearch/api/actions/indices/seal_spec.rb +0 -22
  326. data/spec/elasticsearch/api/actions/indices/snapshot_index_spec.rb +0 -93
  327. data/spec/elasticsearch/api/actions/indices/status_spec.rb +0 -96
  328. data/spec/elasticsearch/api/actions/list_benchmarks_spec.rb +0 -21
  329. data/spec/elasticsearch/api/actions/mlt_spec.rb +0 -134
  330. data/spec/elasticsearch/api/actions/mpercolate_spec.rb +0 -53
  331. data/spec/elasticsearch/api/actions/put_template_spec.rb +0 -21
  332. data/spec/elasticsearch/api/actions/rank_eval_spec.rb +0 -113
  333. data/spec/elasticsearch/api/actions/search_exists_spec.rb +0 -67
  334. data/spec/elasticsearch/api/actions/suggest_spec.rb +0 -81
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: df76bdbe42305b5be4508779b778b8184ffda48af6485b7a8c45e561afc591ec
4
- data.tar.gz: db396a91232aeb6972fee5423b268f09f66bc8a19209564e6bec365c46124faa
3
+ metadata.gz: b94f7340899ac4983a335c5a1612d1466f8c904fb4f5437d2ad935b8356c56b5
4
+ data.tar.gz: fb66329fc8b00604b5a77e1103a24df1327f028f3ee5e0a1f57e017c0f3b737e
5
5
  SHA512:
6
- metadata.gz: 2b6e3947e3ec5590123d71e642c892d76d2c2958a7671d93f4b8db1ae20f1f18f23ceb4b8b25af2045da8a6be8d2428ffaca2c7358c8527293386e79318377c0
7
- data.tar.gz: 3e7a57c11b2b331e822703e136a8c39604e769fea0f6a399876fb23a6cc3cf52fa432fd5f1725aeb627b70b96a09895069d916b6b568db6574e81ca15d72d646
6
+ metadata.gz: 03715c93e1cd502a16360f5c010ac1e46120e1468a52f2ef5aa9365fd76443a86b4cee9f15d40f4924eb89079ed4a0bff055b1551c291b7701e5f93e841dc250
7
+ data.tar.gz: bb9b56fbb42cf2278c24ec73f161864da91fa8a5f099ee2d9574c6a1b671f67b107bc33d80b0d58320763e27483b0dff8e8bd010b176e7163a2258e5b5bd8019
data/Gemfile CHANGED
@@ -1,3 +1,20 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  source 'https://rubygems.org'
2
19
 
3
20
  # Specify your gem's dependencies in elasticsearch-api.gemspec
@@ -19,5 +36,4 @@ end
19
36
  group :development do
20
37
  gem 'rspec'
21
38
  gem 'pry-nav'
22
- gem 'rspec_junit_formatter'
23
39
  end
data/LICENSE.txt CHANGED
@@ -1,13 +1,202 @@
1
- Copyright (c) 2013 Elasticsearch
2
1
 
3
- Licensed under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License.
5
- You may obtain a copy of the License at
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
6
5
 
7
- http://www.apache.org/licenses/LICENSE-2.0
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
8
7
 
9
- Unless required by applicable law or agreed to in writing, software
10
- distributed under the License is distributed on an "AS IS" BASIS,
11
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- See the License for the specific language governing permissions and
13
- limitations under the License.
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
data/README.md CHANGED
@@ -71,7 +71,7 @@ and available online at <http://rubydoc.info/gems/elasticsearch-api>.
71
71
 
72
72
  When you want to mix the library into your own client, it must conform to a following _contract_:
73
73
 
74
- * It responds to a `perform_request(method, path, params, body)` method,
74
+ * It responds to a `perform_request(method, path, params, body, headers)` method,
75
75
  * the method returns an object with `status`, `body` and `headers` methods.
76
76
 
77
77
  A simple client could look like this:
@@ -86,8 +86,8 @@ class MySimpleClient
86
86
 
87
87
  CONNECTION = ::Faraday::Connection.new url: 'http://localhost:9200'
88
88
 
89
- def perform_request(method, path, params, body)
90
- puts "--> #{method.upcase} #{path} #{params} #{body}"
89
+ def perform_request(method, path, params, body, headers = nil)
90
+ puts "--> #{method.upcase} #{path} #{params} #{body} #{headers}"
91
91
 
92
92
  CONNECTION.run_request \
93
93
  method.downcase.to_sym,
data/Rakefile CHANGED
@@ -1,3 +1,20 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  require "bundler/gem_tasks"
2
19
 
3
20
  def __current__
@@ -18,6 +35,11 @@ require 'rspec/core/rake_task'
18
35
 
19
36
  namespace :test do
20
37
 
38
+ desc "Wait for Elasticsearch to be in a green state"
39
+ task :wait_for_green do
40
+ sh '../scripts/wait-cluster.sh'
41
+ end
42
+
21
43
  RSpec::Core::RakeTask.new(:spec)
22
44
 
23
45
  desc "Update the repository with YAML tests"
@@ -25,11 +47,6 @@ namespace :test do
25
47
  git_specs "fetch origin --verbose", :verbose => true
26
48
  end
27
49
 
28
- desc "Wait for Elasticsearch to be in a green state"
29
- task :wait_for_green do
30
- sh '../scripts/wait-cluster.sh'
31
- end
32
-
33
50
  Rake::TestTask.new(:unit) do |test|
34
51
  test.libs << 'lib' << 'test'
35
52
  test.test_files = FileList["test/unit/**/*_test.rb"]
@@ -73,7 +90,7 @@ namespace :test do
73
90
  es_version_info = client.info['version']
74
91
  build_hash = es_version_info['build_hash']
75
92
  cluster_running = true
76
- rescue Faraday::ConnectionFailed
93
+ rescue Faraday::Error::ConnectionFailed
77
94
  STDERR.puts "[!] Test cluster not running?"
78
95
  cluster_running = false
79
96
  end
@@ -1,57 +1,91 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
1
18
  # coding: utf-8
2
19
  lib = File.expand_path('../lib', __FILE__)
3
20
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
21
  require 'elasticsearch/api/version'
5
22
 
6
23
  Gem::Specification.new do |s|
7
- s.name = 'elasticsearch-api'
24
+ s.name = "elasticsearch-api"
8
25
  s.version = Elasticsearch::API::VERSION
9
- s.authors = ['Karel Minarik']
10
- s.email = ['karel.minarik@elasticsearch.org']
11
- s.summary = 'Ruby API for Elasticsearch.'
12
- s.homepage = 'https://www.elastic.co/guide/en/elasticsearch/client/ruby-api/current/index.html'
13
- s.license = 'Apache-2.0'
14
- s.metadata = {
15
- 'homepage_uri' => 'https://www.elastic.co/guide/en/elasticsearch/client/ruby-api/current/index.html',
16
- 'changelog_uri' => 'https://github.com/elastic/elasticsearch-ruby/blob/6.x/CHANGELOG.md',
17
- 'source_code_uri' => 'https://github.com/elastic/elasticsearch-ruby/tree/6.x/elasticsearch-api',
18
- 'bug_tracker_uri' => 'https://github.com/elastic/elasticsearch-ruby/issues'
19
- }
26
+ s.authors = ["Karel Minarik"]
27
+ s.email = ["karel.minarik@elasticsearch.org"]
28
+ s.summary = "Ruby API for Elasticsearch."
29
+ s.homepage = "https://github.com/elasticsearch/elasticsearch-ruby/tree/master/elasticsearch-api"
30
+ s.license = "Apache-2.0"
31
+
20
32
  s.files = `git ls-files`.split($/)
21
33
  s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
22
34
  s.test_files = s.files.grep(%r{^(test|spec|features)/})
23
- s.require_paths = ['lib']
24
-
25
- s.extra_rdoc_files = ['README.md', 'LICENSE.txt']
26
- s.rdoc_options = ['--charset=UTF-8']
27
-
28
- s.required_ruby_version = '>= 2.4'
29
-
30
- s.add_dependency 'multi_json'
31
- s.add_development_dependency 'ansi'
32
- s.add_development_dependency 'bundler'
33
- s.add_development_dependency 'elasticsearch'
34
- s.add_development_dependency 'elasticsearch-extensions'
35
- s.add_development_dependency 'elasticsearch-transport'
36
- s.add_development_dependency 'minitest', '~> 4.0'
37
- s.add_development_dependency 'mocha'
38
- s.add_development_dependency 'pry'
39
- s.add_development_dependency 'rake', '~> 13'
40
- s.add_development_dependency 'shoulda-context'
41
- s.add_development_dependency 'turn'
42
- s.add_development_dependency 'yard'
35
+ s.require_paths = ["lib"]
36
+
37
+ s.extra_rdoc_files = [ "README.md", "LICENSE.txt" ]
38
+ s.rdoc_options = [ "--charset=UTF-8" ]
39
+
40
+ s.required_ruby_version = '>= 1.9'
41
+
42
+ s.add_dependency "multi_json"
43
+
44
+ s.add_development_dependency "bundler"
45
+
46
+ if defined?(RUBY_VERSION) && RUBY_VERSION > '1.9'
47
+ s.add_development_dependency "rake", "~> 11.1"
48
+ else
49
+ s.add_development_dependency "rake", "< 11.0"
50
+ end
51
+
52
+ s.add_development_dependency "elasticsearch"
53
+ s.add_development_dependency "elasticsearch-transport"
54
+
55
+ if defined?(RUBY_VERSION) && RUBY_VERSION > '1.9'
56
+ s.add_development_dependency "minitest"
57
+ s.add_development_dependency "minitest-reporters"
58
+ s.add_development_dependency "elasticsearch-extensions"
59
+ end
60
+
61
+ s.add_development_dependency "ansi"
62
+ s.add_development_dependency "shoulda-context"
63
+ s.add_development_dependency "mocha"
64
+ s.add_development_dependency "yard"
65
+ s.add_development_dependency "pry"
66
+
43
67
  # Gems for testing integrations
44
- s.add_development_dependency 'cane'
45
- s.add_development_dependency 'escape_utils' unless defined? JRUBY_VERSION
46
- s.add_development_dependency 'hashie'
47
- s.add_development_dependency 'jbuilder'
48
- s.add_development_dependency 'jsonify'
49
- s.add_development_dependency 'simplecov', '~> 0.17', '< 0.18'
50
- s.add_development_dependency 'simplecov-rcov'
51
- s.add_development_dependency 'test-unit', '~> 2'
52
- unless defined?(JRUBY_VERSION) || defined?(Rubinius)
53
- s.add_development_dependency 'require-prof'
54
- s.add_development_dependency 'ruby-prof'
68
+ s.add_development_dependency "jsonify"
69
+ s.add_development_dependency "hashie"
70
+
71
+ # Prevent unit test failures on Ruby 1.8
72
+ if defined?(RUBY_VERSION) && RUBY_VERSION < '1.9'
73
+ s.add_development_dependency "test-unit", '~> 2'
74
+ s.add_development_dependency "json", '~> 1.8'
75
+ end
76
+
77
+ if defined?(RUBY_VERSION) && RUBY_VERSION > '1.9'
78
+ s.add_development_dependency "ruby-prof" unless defined?(JRUBY_VERSION) || defined?(Rubinius)
79
+ s.add_development_dependency "jbuilder"
80
+ s.add_development_dependency "escape_utils" unless defined? JRUBY_VERSION
81
+ s.add_development_dependency "simplecov"
82
+ s.add_development_dependency "simplecov-rcov"
83
+ s.add_development_dependency "cane"
84
+ s.add_development_dependency "require-prof" unless defined?(JRUBY_VERSION) || defined?(Rubinius)
85
+ end
86
+
87
+ if defined?(RUBY_VERSION) && RUBY_VERSION > '2.2'
88
+ s.add_development_dependency "test-unit", '~> 2'
55
89
  end
56
90
 
57
91
  s.description = <<-DESC.gsub(/^ /, '')