Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit 383ec30

Browse files
committed
Fix rubocop offenses
1 parent 7beee05 commit 383ec30

26 files changed

+54
-1
lines changed

.rubocop.yml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
AllCops:
44
DisplayCopNames: true
5+
NewCops: enable
56
Exclude:
67
- deepl-rb.gemspec
78
- vendor/**/*

Gemfile

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
source 'https://rubygems.org'
24

35
group :development do

Rakefile

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'rubygems'
24
require 'bundler'
35

lib/deepl.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
# -- Dependencies
24
require 'json'
35
require 'net/http'

lib/deepl/api.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module DeepL
24
class API
35
attr_reader :configuration

lib/deepl/configuration.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module DeepL
24
class Configuration
35
ATTRIBUTES = %i[auth_key host version].freeze

lib/deepl/exceptions/authorization_failed.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module DeepL
24
module Exceptions
35
class AuthorizationFailed < RequestError

lib/deepl/exceptions/bad_request.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module DeepL
24
module Exceptions
35
class BadRequest < RequestError

lib/deepl/exceptions/error.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module DeepL
24
module Exceptions
35
class Error < StandardError

lib/deepl/exceptions/limit_exceeded.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module DeepL
24
module Exceptions
35
class LimitExceeded < RequestError

lib/deepl/exceptions/quota_exceeded.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module DeepL
24
module Exceptions
35
class QuotaExceeded < RequestError

lib/deepl/exceptions/request_error.rb

+3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1+
# frozen_string_literal: true
2+
13
module DeepL
24
module Exceptions
35
class RequestError < Error
46
attr_reader :request, :response
57

68
def initialize(request, response)
9+
super()
710
@request = request
811
@response = response
912
end

lib/deepl/requests/base.rb

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module DeepL
24
module Requests
35
class Base
@@ -32,7 +34,7 @@ def set_option(name, value)
3234

3335
def post(payload)
3436
request = Net::HTTP::Post.new(uri.request_uri)
35-
request.set_form_data(payload.reject { |_, v| v.nil? })
37+
request.set_form_data(payload.compact)
3638
response = http.request(request)
3739

3840
validate_response!(request, response)

lib/deepl/requests/translate.rb

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module DeepL
24
module Requests
35
class Translate < Base
@@ -31,6 +33,7 @@ def request
3133
def tweak_parameters!
3234
OPTIONS_CONVERSIONS.each do |param, converter|
3335
next unless option?(param) && converter[option(param)]
36+
3437
set_option(param, converter[option(param)])
3538
end
3639
end

lib/deepl/requests/usage.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module DeepL
24
module Requests
35
class Usage < Base

lib/deepl/resources/base.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module DeepL
24
module Resources
35
class Base

lib/deepl/resources/text.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module DeepL
24
module Resources
35
class Text < Base

lib/deepl/resources/usage.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module DeepL
24
module Resources
35
class Usage < Base

spec/api/api_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe DeepL::API do

spec/api/configuration_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe DeepL::Configuration do

spec/api/deepl_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe DeepL do

spec/requests/translate_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe DeepL::Requests::Translate do

spec/requests/usage_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe DeepL::Requests::Usage do

spec/resources/text_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe DeepL::Resources::Text do

spec/resources/usage_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe DeepL::Resources::Usage do

spec/spec_helper.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
# Coverage
24
require 'simplecov'
35
SimpleCov.start

0 commit comments

Comments
 (0)