Skip to content

Commit cddc8ab

Browse files
author
Kyle Decot
committed
Using double quotes everywhere for consistancy
1 parent bb122e8 commit cddc8ab

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

Gemfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
source 'https://rubygems.org'
1+
source "https://rubygems.org"
22

3-
# Specify your gem's dependencies in kmdata.gemspec
43
gemspec

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ require "rspec/core/rake_task"
55
RSpec::Core::RakeTask.new(:spec) do |spec|
66
spec.fail_on_error = false
77
spec.rspec_opts = "--color"
8-
spec.pattern = FileList['spec/**/*_spec.rb']
8+
spec.pattern = FileList["spec/**/*_spec.rb"]
99
end
1010

1111
task :default => "spec"

kmdata.gemspec

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# coding: utf-8
2-
lib = File.expand_path('../lib', __FILE__)
2+
3+
lib = File.expand_path("../lib", __FILE__)
34
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4-
require 'kmdata/version'
5+
require "kmdata/version"
56

67
Gem::Specification.new do |spec|
78
spec.name = "kmdata"

lib/kmdata.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
require "kmdata/version"
2-
require 'net/http'
3-
require 'json'
4-
require 'ostruct'
2+
require "net/http"
3+
require "json"
4+
require "ostruct"
55

66
module KMData
77
class << self
@@ -58,7 +58,7 @@ def process(json)
5858
end
5959

6060
def path_with_params(path, params)
61-
[path, URI.encode_www_form(params)].join('?')
61+
[path, URI.encode_www_form(params)].join("?")
6262
end
6363

6464
end

0 commit comments

Comments
 (0)