Skip to content

Commit

Permalink
Remove unnecessary whitespace for rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
rossta committed Oct 23, 2015
1 parent bcd5c18 commit b191195
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/tacokit/client.rb
Expand Up @@ -93,7 +93,7 @@ def paginated_get(*args)
def request(method, url, data = nil, params = nil)
if [:get, :body].include?(method)
params ||= data
data = nil
data = nil
end

response = connection.send method, url do |req|
Expand Down
2 changes: 1 addition & 1 deletion lib/tacokit/configuration.rb
Expand Up @@ -3,7 +3,7 @@ class Configuration
API_URL = "https://api.trello.com".freeze
WEB_URL = "https://trello.com".freeze

API_VERSION = "1".freeze
API_VERSION = "1".freeze

def self.keys
[
Expand Down
4 changes: 2 additions & 2 deletions spec/spec_helper.rb
Expand Up @@ -5,7 +5,7 @@
Coveralls.wear!

require "dotenv"
Dotenv.load(File.expand_path("../../.env", __FILE__))
Dotenv.load(File.expand_path("../../.env", __FILE__))

require "tacokit"
require "rspec"
Expand All @@ -15,7 +15,7 @@

RSpec.configure do |config|
config.before(:suite) do
warn "Using test_oauth_credentials #{ test_oauth_credentials }" if ENV["DEBUG"]
warn "Using test_oauth_credentials #{test_oauth_credentials}" if ENV["DEBUG"]
end

config.before do
Expand Down

0 comments on commit b191195

Please sign in to comment.