Skip to content

Commit

Permalink
Merge b44a6c5 into ba81e36
Browse files Browse the repository at this point in the history
  • Loading branch information
meganemura committed Dec 4, 2017
2 parents ba81e36 + b44a6c5 commit 71558ea
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 23 deletions.
75 changes: 53 additions & 22 deletions .rubocop_todo.yml
@@ -1,23 +1,48 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2016-05-21 21:44:17 +0900 using RuboCop version 0.40.0.
# on 2017-12-04 22:25:07 +0900 using RuboCop version 0.51.0.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.

# Offense count: 2
# Cop supports --auto-correct.
# Configuration parameters: Include, TreatCommentsAsGroupSeparators.
# Include: **/*.gemspec
Gemspec/OrderedDependencies:
Exclude:
- 'ruby-dmm.gemspec'

# Offense count: 3
# Cop supports --auto-correct.
Layout/EmptyLineAfterMagicComment:
Exclude:
- 'Rakefile'
- 'lib/ruby-dmm/version.rb'
- 'ruby-dmm.gemspec'

# Offense count: 1
# Cop supports --auto-correct.
Lint/Debugger:
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: empty_lines, empty_lines_except_namespace, empty_lines_special, no_empty_lines
Layout/EmptyLinesAroundClassBody:
Exclude:
- 'test.rb'
- 'lib/ruby-dmm/client.rb'

# Offense count: 1
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes.
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
# URISchemes: http, https
Metrics/LineLength:
Max: 93

# Offense count: 1
# Configuration parameters: ExpectMatchingDefinition, Regex, IgnoreExecutableScripts, AllowedAcronyms.
# AllowedAcronyms: CLI, DSL, ACL, API, ASCII, CPU, CSS, DNS, EOF, GUID, HTML, HTTP, HTTPS, ID, IP, JSON, LHS, QPS, RAM, RHS, RPC, SLA, SMTP, SQL, SSH, TCP, TLS, TTL, UDP, UI, UID, UUID, URI, URL, UTF8, VM, XML, XMPP, XSRF, XSS
Naming/FileName:
Exclude:
- 'lib/ruby-dmm.rb'

# Offense count: 7
Style/AsciiComments:
Exclude:
Expand All @@ -32,45 +57,51 @@ Style/Documentation:
- 'lib/ruby-dmm/client.rb'
- 'lib/ruby-dmm/response.rb'

# Offense count: 1
# Offense count: 6
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: empty_lines, no_empty_lines
Style/EmptyLinesAroundClassBody:
Exclude:
- 'lib/ruby-dmm/client.rb'

# Offense count: 1
# Configuration parameters: ExpectMatchingDefinition, Regex, IgnoreExecutableScripts.
Style/FileName:
Style/Encoding:
Exclude:
- 'Rakefile'
- 'lib/ruby-dmm.rb'
- 'lib/ruby-dmm/client.rb'
- 'lib/ruby-dmm/response.rb'
- 'lib/ruby-dmm/version.rb'
- 'ruby-dmm.gemspec'

# Offense count: 4
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles, UseHashRocketsWithSymbolValues.
# SupportedStyles: ruby19, ruby19_no_mixed_keys, hash_rockets
# Configuration parameters: EnforcedStyle, SupportedStyles, UseHashRocketsWithSymbolValues, PreferHashRocketsForNonAlnumEndingSymbols.
# SupportedStyles: ruby19, hash_rockets, no_mixed_keys, ruby19_no_mixed_keys
Style/HashSyntax:
Enabled: false
Exclude:
- 'Guardfile'
- 'Rakefile'

# Offense count: 1
# Cop supports --auto-correct.
Style/MutableConstant:
Exclude:
- 'lib/ruby-dmm/version.rb'

# Offense count: 2
# Cop supports --auto-correct.
# Configuration parameters: PreferredDelimiters.
Style/PercentLiteralDelimiters:
Exclude:
- 'Rakefile'

# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles, ConsistentQuotesInMultiline.
# SupportedStyles: single_quotes, double_quotes
Style/StringLiterals:
Enabled: false
Exclude:
- 'spec/spec_helper.rb'

# Offense count: 5
# Offense count: 4
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyleForMultiline, SupportedStyles.
# SupportedStyles: comma, consistent_comma, no_comma
# Configuration parameters: EnforcedStyleForMultiline, SupportedStylesForMultiline.
# SupportedStylesForMultiline: comma, consistent_comma, no_comma
Style/TrailingCommaInLiteral:
Exclude:
- 'lib/ruby-dmm/client.rb'
- 'spec/ruby-dmm/client_spec.rb'
2 changes: 1 addition & 1 deletion ruby-dmm.gemspec
Expand Up @@ -26,7 +26,7 @@ Gem::Specification.new do |gem|
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec', '~> 3.4.0'
gem.add_development_dependency 'pry'
gem.add_development_dependency 'rubocop', '~> 0.40.0'
gem.add_development_dependency 'rubocop', '~> 0.51.0'
gem.add_development_dependency 'coveralls'
gem.add_development_dependency 'simplecov'
end

0 comments on commit 71558ea

Please sign in to comment.