From 6728df6c8b8c9444c0db24030a070e0b85330f0c Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com> Date: Sat, 1 Oct 2016 16:43:47 -0400 Subject: [PATCH] Changed a few instances of double quotes to single quotes. --- apex.gemspec | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/apex.gemspec b/apex.gemspec index ba05c03..15ce413 100644 --- a/apex.gemspec +++ b/apex.gemspec @@ -4,30 +4,29 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'apex/version' Gem::Specification.new do |spec| - spec.name = "apex" + spec.name = 'apex' spec.version = Apex::VERSION - spec.authors = ["Jeffrey Phillips Freeman"] - spec.email = ["jeffrey.freeman@syncleus.com"] + spec.authors = ['Jeffrey Phillips Freeman'] + spec.email = ['jeffrey.freeman@syncleus.com'] spec.summary = %q{Reference implementation for the APEX Radio protocol.} spec.description = %q{Reference implementation for the APEX Radio protocol.} - spec.homepage = "http://apexprotocol.com" + spec.homepage = 'http://apexprotocol.com' # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. if spec.respond_to?(:metadata) spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'" else - raise "RubyGems 2.0 or newer is required to protect against " \ - "public gem pushes." + raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.' end spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end - spec.bindir = "exe" + spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } - spec.require_paths = ["lib"] + spec.require_paths = ['lib'] spec.add_development_dependency 'abstraction', '~> 0.0.4' spec.add_development_dependency 'json', '~> 1.8.3' -- GitLab