kbredemeier/elastic_adatper

View on GitHub

Showing 53 of 53 total issues

Space inside { missing.
Open

query = {query: {match: {name: "foo"}}}
Severity: Minor
Found in examples/basic_usage.rb by rubocop

Checks that braces used for hash literals have or don't have surrounding space depending on configuration.

Example: EnforcedStyle: space

# The `space` style enforces that hash literals have
# surrounding space.

# bad
h = {a: 1, b: 2}

# good
h = { a: 1, b: 2 }

Example: EnforcedStyle: no_space

# The `no_space` style enforces that hash literals have
# no surrounding space.

# bad
h = { a: 1, b: 2 }

# good
h = {a: 1, b: 2}

Example: EnforcedStyle: compact

# The `compact` style normally requires a space inside
# hash braces, with the exception that successive left
# braces or right braces are collapsed together in nested hashes.

# bad
h = { a: { b: 2 } }

# good
h = { a: { b: 2 }}

Line is too long. [119/80]
Open

# !> 2015-02-06 17:52:22 +0100: GET http://localhost:9200/product_index/_search [status:400, request:0.007s, query:N/A]
Severity: Minor
Found in examples/basic_usage.rb by rubocop

Line is too long. [121/80]
Open

# !> 2015-02-06 17:52:19 +0100: PUT http://localhost:9200/product_index/product/1 [status:201, request:0.037s, query:n/a]
Severity: Minor
Found in examples/basic_usage.rb by rubocop

Line is too long. [116/80]
Open

# !> 2015-02-06 17:52:19 +0100: < {"_index":"product_index","_type":"product","_id":"1","_version":1,"created":true}
Severity: Minor
Found in examples/basic_usage.rb by rubocop

Line is too long. [121/80]
Open

# !> 2015-02-06 17:52:22 +0100: POST http://localhost:9200/product_index/_suggest [status:200, request:0.004s, query:n/a]
Severity: Minor
Found in examples/basic_usage.rb by rubocop

Line is too long. [121/80]
Open

    # @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/docs-index_.html Elasticsearch index api
Severity: Minor
Found in lib/elastic_adapter/index.rb by rubocop

Line is too long. [121/80]
Open

# !> 2015-02-06 17:52:19 +0100: PUT http://localhost:9200/product_index/product/2 [status:201, request:0.005s, query:n/a]
Severity: Minor
Found in examples/basic_usage.rb by rubocop

Line is too long. [85/80]
Open

# !> 2015-02-06 17:52:19 +0100: > {"name_suggest":"bar","suggest":"bar","price":1.12}
Severity: Minor
Found in examples/basic_usage.rb by rubocop

Line is too long. [174/80]
Open

# !> 2015-02-06 17:52:22 +0100: < {"_index":"product_index","_type":"product","_id":"1","_version":1,"found":true,"_source":{"name":"foo","name_suggest":"foo","price":11.12}}
Severity: Minor
Found in examples/basic_usage.rb by rubocop

Line is too long. [458/80]
Open

# !> 2015-02-06 17:52:22 +0100: [400] {"error":"SearchPhaseExecutionException[Failed to execute phase [query_fetch], all shards failed; shardFailures {[XRKX3VOdSDyg0HVSm3_Wiw][product_index][0]: SearchParseException[[product_index][0]: from[-1],size[-1]: Parse Failure [Failed to parse source [{\"foo\":{\"match_all\":{}}}]]]; nested: SearchParseException[[product_index][0]: from[-1],size[-1]: Parse Failure [No parser for element [foo]]]; }]","status":400}
Severity: Minor
Found in examples/basic_usage.rb by rubocop

Line is too long. [83/80]
Open

# !> 2015-02-06 17:52:19 +0100: > {"name":"foo","name_suggest":"foo","price":11.12}
Severity: Minor
Found in examples/basic_usage.rb by rubocop

Extra blank line detected.
Open


# !> 2015-02-06 17:52:19 +0100: PUT http://localhost:9200/product_index [status:200, request:0.053s, query:n/a]
Severity: Minor
Found in examples/basic_usage.rb by rubocop

This cops checks for two or more consecutive blank lines.

Example:

# bad - It has two empty lines.
some_method
# one empty line
# two empty lines
some_method

# good
some_method
# one empty line
some_method

Space inside { missing.
Open

query = {query: {match: {name: "foo"}}}
Severity: Minor
Found in examples/basic_usage.rb by rubocop

Checks that braces used for hash literals have or don't have surrounding space depending on configuration.

Example: EnforcedStyle: space

# The `space` style enforces that hash literals have
# surrounding space.

# bad
h = {a: 1, b: 2}

# good
h = { a: 1, b: 2 }

Example: EnforcedStyle: no_space

# The `no_space` style enforces that hash literals have
# no surrounding space.

# bad
h = { a: 1, b: 2 }

# good
h = {a: 1, b: 2}

Example: EnforcedStyle: compact

# The `compact` style normally requires a space inside
# hash braces, with the exception that successive left
# braces or right braces are collapsed together in nested hashes.

# bad
h = { a: { b: 2 } }

# good
h = { a: { b: 2 }}

Line is too long. [112/80]
Open

response.inspect # => "{:index=>\"product_index\", :type=>\"product\", :id=>\"2\", :version=>1, :created=>true}"
Severity: Minor
Found in examples/basic_usage.rb by rubocop

Line is too long. [118/80]
Open

# !> 2015-02-06 17:52:22 +0100: GET http://localhost:9200/product_index/_count [status:400, request:0.005s, query:N/A]
Severity: Minor
Found in examples/basic_usage.rb by rubocop

Line is too long. [114/80]
Open

# !> 2015-02-06 17:52:22 +0100: DELETE http://localhost:9200/product_index [status:200, request:0.014s, query:n/a]
Severity: Minor
Found in examples/basic_usage.rb by rubocop

Line is too long. [105/80]
Open

# !> 2015-02-06 17:52:22 +0100: < {"error":"IndexMissingException[[product_index] missing]","status":404}
Severity: Minor
Found in examples/basic_usage.rb by rubocop

Line is too long. [133/80]
Open

    # @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-create-index.html Elasticsearch create index
Severity: Minor
Found in lib/elastic_adapter/index.rb by rubocop

Line is too long. [97/80]
Open

    # @param [Hash] query a query to count the documents for a given query. Defaults to match all
Severity: Minor
Found in lib/elastic_adapter/index.rb by rubocop

Space inside { missing.
Open

query = {query: {match: {name: "foo"}}}
Severity: Minor
Found in examples/basic_usage.rb by rubocop

Checks that braces used for hash literals have or don't have surrounding space depending on configuration.

Example: EnforcedStyle: space

# The `space` style enforces that hash literals have
# surrounding space.

# bad
h = {a: 1, b: 2}

# good
h = { a: 1, b: 2 }

Example: EnforcedStyle: no_space

# The `no_space` style enforces that hash literals have
# no surrounding space.

# bad
h = { a: 1, b: 2 }

# good
h = {a: 1, b: 2}

Example: EnforcedStyle: compact

# The `compact` style normally requires a space inside
# hash braces, with the exception that successive left
# braces or right braces are collapsed together in nested hashes.

# bad
h = { a: { b: 2 } }

# good
h = { a: { b: 2 }}
Severity
Category
Status
Source
Language