run rubocop
Showing
.rubocop.yml
0 → 100644
source "https://rubygems.org" | # frozen_string_literal: true | ||
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" } | source 'https://rubygems.org' | ||
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" } | |||
# Specify your gem's dependencies in dingtalk.gemspec | # Specify your gem's dependencies in dingtalk.gemspec | ||
gemspec | gemspec |
# frozen_string_literal: true | |||
lib = File.expand_path("../lib", __FILE__) | lib = File.expand_path('lib', __dir__) | ||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | ||
require "dingtalk_sdk/version" | require 'dingtalk_sdk/version' | ||
Gem::Specification.new do |spec| | Gem::Specification.new do |spec| | ||
spec.name = "dingtalk_sdk" | spec.name = 'dingtalk_sdk' | ||
spec.version = DingtalkSdk::VERSION | spec.version = DingtalkSdk::VERSION | ||
spec.authors = ["francis"] | spec.authors = ['francis'] | ||
spec.email = ["francis.tm@gmail.com"] | spec.email = ['francis.tm@gmail.com'] | ||
spec.summary = %q{Dingtalk integration} | spec.summary = 'Dingtalk integration' | ||
spec.description = %q{Dingtalk ruby SKD} | spec.description = 'Dingtalk ruby SKD' | ||
spec.homepage = "https://github.com/francistm/dingtalk-sdk" | spec.homepage = 'https://github.com/francistm/dingtalk-sdk' | ||
spec.license = "MIT" | spec.license = 'MIT' | ||
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' | # 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. | # to allow pushing to a single host or delete this section to allow pushing to any host. | ||
if spec.respond_to?(:metadata) | if spec.respond_to?(:metadata) | ||
spec.metadata["allowed_push_host"] = "https://rubygems.pkg.github.com" | spec.metadata['allowed_push_host'] = 'https://rubygems.pkg.github.com' | ||
spec.metadata["homepage_uri"] = spec.homepage | spec.metadata['homepage_uri'] = spec.homepage | ||
spec.metadata["source_code_uri"] = "https://github.com/francistm/dingtalk-sdk" | spec.metadata['source_code_uri'] = 'https://github.com/francistm/dingtalk-sdk' | ||
# spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here." | # spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here." | ||
else | else | ||
raise "RubyGems 2.0 or newer is required to protect against " \ | raise 'RubyGems 2.0 or newer is required to protect against ' \ | ||
"public gem pushes." | 'public gem pushes.' | ||
end | end | ||
# Specify which files should be added to the gem when it is released. | # Specify which files should be added to the gem when it is released. | ||
# The `git ls-files -z` loads the files in the RubyGem that have been added into git. | # The `git ls-files -z` loads the files in the RubyGem that have been added into git. | ||
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do | spec.files = Dir.chdir(File.expand_path(__dir__)) do | ||
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } | `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } | ||
end | end | ||
spec.bindir = "exe" | spec.bindir = 'exe' | ||
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } | spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } | ||
spec.require_paths = ["lib"] | spec.require_paths = ['lib'] | ||
spec.required_ruby_version = '> 2.4' | |||
spec.add_runtime_dependency "httparty", "~> 0.18" | |||
spec.add_runtime_dependency "activesupport", "~> 6.0" | spec.add_runtime_dependency 'activesupport', '~> 6.0' | ||
spec.add_runtime_dependency 'httparty', '~> 0.18' | |||
spec.add_development_dependency "pry", "~> 0.13" | |||
spec.add_development_dependency "webmock", "~> 3.8" | spec.add_development_dependency 'bundler', '~> 2.1.0' | ||
spec.add_development_dependency "bundler", "~> 2.1.0" | spec.add_development_dependency 'pry', '~> 0.13' | ||
spec.add_development_dependency "rake", "~> 10.0" | spec.add_development_dependency 'rake', '~> 10.0' | ||
spec.add_development_dependency "rspec", "~> 3.0" | spec.add_development_dependency 'rspec', '~> 3.0' | ||
spec.add_development_dependency 'rubocop', '~> 0.80' | |||
spec.add_development_dependency 'webmock', '~> 3.8' | |||
end | end |
Please
register
or
sign in
to comment