doches/rwordnet

View on GitHub
lib/rwordnet/db.rb

Summary

Maintainability
A
0 mins
Test Coverage

Line is too long. [114/80]
Open

      # Returns the path to the WordNet installation currently in use. Defaults to the bundled version of WordNet.
Severity: Minor
Found in lib/rwordnet/db.rb by rubocop

Prefer single-quoted strings when you don't need string interpolation or special symbols.
Open

        File.open(File.join(self.path, path), "r", &block)
Severity: Minor
Found in lib/rwordnet/db.rb by rubocop

Checks if uses of quotes match the configured preference.

Example: EnforcedStyle: single_quotes (default)

# bad
"No special symbols"
"No string interpolation"
"Just text"

# good
'No special symbols'
'No string interpolation'
'Just text'
"Wait! What's #{this}!"

Example: EnforcedStyle: double_quotes

# bad
'Just some text'
'No special chars or interpolation'

# good
"Just some text"
"No special chars or interpolation"
"Every string in #{project} uses double_quotes"

Prefer single-quoted strings when you don't need string interpolation or special symbols.
Open

    @path = File.expand_path("../../../WordNet-3.0/", __FILE__)
Severity: Minor
Found in lib/rwordnet/db.rb by rubocop

Checks if uses of quotes match the configured preference.

Example: EnforcedStyle: single_quotes (default)

# bad
"No special symbols"
"No string interpolation"
"Just text"

# good
'No special symbols'
'No string interpolation'
'Just text'
"Wait! What's #{this}!"

Example: EnforcedStyle: double_quotes

# bad
'Just some text'
'No special chars or interpolation'

# good
"Just some text"
"No special chars or interpolation"
"Every string in #{project} uses double_quotes"

Line is too long. [88/80]
Open

      # To use your own WordNet installation (rather than the one bundled with rwordnet:
Severity: Minor
Found in lib/rwordnet/db.rb by rubocop

There are no issues that match your filters.

Category
Status