Skip to content

Commit

Permalink
Replace double quotes with single quotes in gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
yujinakayama committed May 1, 2013
1 parent 5a0bca5 commit 295204e
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions guard-rubocop.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,28 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'guard/rubocop/version'

Gem::Specification.new do |spec|
spec.name = "guard-rubocop"
spec.name = 'guard-rubocop'
spec.version = Guard::RubocopVersion::VERSION
spec.authors = ["Yuji Nakayama"]
spec.email = ["nkymyj@gmail.com"]
spec.summary = "Guard plugin for RuboCop"
spec.description = "Guard::Rubocop allows you to automatically check Ruby code style with RuboCop when files are modified."
spec.homepage = "https://github.com/yujinakayama/guard-rubocop"
spec.license = "MIT"
spec.authors = ['Yuji Nakayama']
spec.email = ['nkymyj@gmail.com']
spec.summary = 'Guard plugin for RuboCop'
spec.description = 'Guard::Rubocop allows you to automatically check Ruby code style with RuboCop when files are modified.'
spec.homepage = 'https://github.com/yujinakayama/guard-rubocop'
spec.license = 'MIT'

spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.require_paths = ['lib']

spec.add_runtime_dependency "guard", "~> 1.8"
spec.add_runtime_dependency "rubocop", [">= 0.6.1", "< 1.0.0"]
spec.add_runtime_dependency "childprocess", "~> 0.3"
spec.add_runtime_dependency 'guard', '~> 1.8'
spec.add_runtime_dependency 'rubocop', ['>= 0.6.1', '< 1.0.0']
spec.add_runtime_dependency 'childprocess', '~> 0.3'

spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 2.13"
spec.add_development_dependency "simplecov", "~> 0.7"
spec.add_development_dependency "guard-rspec", ">= 2.5.4"
spec.add_development_dependency "ruby_gntp", ">= 0.3"
spec.add_development_dependency 'bundler', '~> 1.3'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 2.13'
spec.add_development_dependency 'simplecov', '~> 0.7'
spec.add_development_dependency 'guard-rspec', '>= 2.5.4'
spec.add_development_dependency 'ruby_gntp', '>= 0.3'
end

0 comments on commit 295204e

Please # to comment.