elasticsearch 2.0.2 → 5.0.0.pre

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 31326cdd4d8f4fdf6723e6ccafec756efeb2c3ac
4
- data.tar.gz: 2d0d7b6be6cc7ae467633d298699f88d6718f365
3
+ metadata.gz: 1dfba267bb5cafdbece6ce08e61ad3d0e4d5cea5
4
+ data.tar.gz: 19be8d9194f8cadb03884b8498a7dee8781976cb
5
5
  SHA512:
6
- metadata.gz: 41b1e63f166895ce06e483732f8e2e01d110e79f22da4a95dc1401e6c8e3a8c06a30a639791d901e5b51a03d0a93149241c78d9961462416b9c812b798a801fa
7
- data.tar.gz: 6a5b5f32044ca3307b372efd2d057fadf712210938e12ce1a9d217dedd34794e67bac479eb76fdb00e16715498aa6815cedb7aa62d04ca9fbcd963afb953a81b
6
+ metadata.gz: 7e139598b2e82ac51581e8bec96b4d87fae31e52e40d3c74937b4884b59b23d11c0978049681283b59a50a75ff99dddb89fbb321a185b04b3fa2b267c50cd834
7
+ data.tar.gz: 0c2e9c9fdb153f2da8d2e83c10036f628e0d9f0def4f851eb9533d640639c687f28eb2bd9375d4f8840d60d4470757d4ac915aaa80d6bb69d3e9abf5662ee619
data/Gemfile CHANGED
@@ -3,14 +3,14 @@ source 'https://rubygems.org'
3
3
  # Specify your gem's dependencies in elasticsearch.gemspec
4
4
  gemspec
5
5
 
6
- if File.exist? File.expand_path("../../elasticsearch-api/elasticsearch-api.gemspec", __FILE__)
6
+ if File.exists? File.expand_path("../../elasticsearch-api/elasticsearch-api.gemspec", __FILE__)
7
7
  gem 'elasticsearch-api', :path => File.expand_path("../../elasticsearch-api", __FILE__), :require => false
8
8
  end
9
9
 
10
- if File.exist? File.expand_path("../../elasticsearch-transport/elasticsearch-transport.gemspec", __FILE__)
10
+ if File.exists? File.expand_path("../../elasticsearch-transport/elasticsearch-transport.gemspec", __FILE__)
11
11
  gem 'elasticsearch-transport', :path => File.expand_path("../../elasticsearch-transport", __FILE__), :require => false
12
12
  end
13
13
 
14
- if File.exist? File.expand_path("../../elasticsearch-extensions", __FILE__)
14
+ if File.exists? File.expand_path("../../elasticsearch-extensions", __FILE__)
15
15
  gem 'elasticsearch-extensions', :path => File.expand_path("../../elasticsearch-extensions", __FILE__), :require => true
16
16
  end
data/README.md CHANGED
@@ -19,14 +19,17 @@ see the <https://github.com/elasticsearch/elasticsearch-rails> project.)
19
19
 
20
20
  ## Compatibility
21
21
 
22
- The library is compatible with Ruby 1.8.7 and higher.
22
+ The Elasticsearch client for Ruby is compatible with Ruby 1.8.7 and higher.
23
23
 
24
- The library is compatible with Elasticsearch 0.90 and 1.0 -- you have to install and use a matching version, though.
24
+ The client's API is compatible with Elasticsearch's API versions from 0.90 till current,
25
+ just use a release matching major version of Elasticsearch.
25
26
 
26
- The 1.x versions and the master branch are compatible with **Elasticsearch 1.0** API.
27
-
28
- To use the **Elasticsearch 0.90** API, install the **0.4.x** gem version or use the corresponding
29
- [`0.4`](https://github.com/elasticsearch/elasticsearch-ruby/tree/0.4) branch.
27
+ | Ruby | | Elasticsearch |
28
+ |:-------------:|:-:| :-----------: |
29
+ | 0.90 | | 0.90 |
30
+ | 1.x | → | 1.x |
31
+ | 2.x | → | 2.x |
32
+ | master | → | master |
30
33
 
31
34
  ## Installation
32
35
 
@@ -20,8 +20,8 @@ Gem::Specification.new do |s|
20
20
  s.extra_rdoc_files = [ "README.md", "LICENSE.txt" ]
21
21
  s.rdoc_options = [ "--charset=UTF-8" ]
22
22
 
23
- s.add_dependency "elasticsearch-transport", '2.0.2'
24
- s.add_dependency "elasticsearch-api", '2.0.2'
23
+ s.add_dependency "elasticsearch-transport", '5.0.0.pre'
24
+ s.add_dependency "elasticsearch-api", '5.0.0.pre'
25
25
 
26
26
  s.add_development_dependency "bundler", "> 1"
27
27
 
@@ -46,7 +46,7 @@ Gem::Specification.new do |s|
46
46
  # Prevent unit test failures on Ruby 1.8
47
47
  if defined?(RUBY_VERSION) && RUBY_VERSION < '1.9'
48
48
  s.add_development_dependency "test-unit", '~> 2'
49
- s.add_development_dependency "json"
49
+ s.add_development_dependency "json", '~> 1.8'
50
50
  end
51
51
 
52
52
  if defined?(RUBY_VERSION) && RUBY_VERSION > '1.9'
@@ -1,3 +1,3 @@
1
1
  module Elasticsearch
2
- VERSION = "2.0.2"
2
+ VERSION = "5.0.0.pre"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: elasticsearch
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 5.0.0.pre
5
5
  platform: ruby
6
6
  authors:
7
7
  - Karel Minarik
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-07 00:00:00.000000000 Z
11
+ date: 2016-10-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: elasticsearch-transport
@@ -16,28 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 2.0.2
19
+ version: 5.0.0.pre
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 2.0.2
26
+ version: 5.0.0.pre
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: elasticsearch-api
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 2.0.2
33
+ version: 5.0.0.pre
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: 2.0.2
40
+ version: 5.0.0.pre
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -315,12 +315,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
315
315
  version: '0'
316
316
  required_rubygems_version: !ruby/object:Gem::Requirement
317
317
  requirements:
318
- - - ">="
318
+ - - ">"
319
319
  - !ruby/object:Gem::Version
320
- version: '0'
320
+ version: 1.3.1
321
321
  requirements: []
322
322
  rubyforge_project:
323
- rubygems_version: 2.6.10
323
+ rubygems_version: 2.5.1
324
324
  signing_key:
325
325
  specification_version: 4
326
326
  summary: Ruby integrations for Elasticsearch