-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from ParentSquare/update-rubocop-and-gemspec
Update rubocop cleanup gemspec
- Loading branch information
Showing
26 changed files
with
223 additions
and
183 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
rules: | ||
braces: | ||
min-spaces-inside: 1 | ||
max-spaces-inside: 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,13 +10,15 @@ Gem::Specification.new do |spec| | |
spec.authors = ['Justin Howard'] | ||
spec.email = ['[email protected]'] | ||
spec.licenses = ['MIT'] | ||
|
||
spec.summary = 'Fault-tolerance tools for ruby based on circuit-breakers' | ||
spec.homepage = 'https://github.com/ParentSquare/faulty' | ||
|
||
spec.files = `git ls-files -z` | ||
.split("\x0") | ||
.reject { |f| f.match(%r{^spec/}) } | ||
rubydoc = 'https://www.rubydoc.info/gems' | ||
spec.metadata['rubygems_mfa_required'] = 'true' | ||
spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/master/CHANGELOG.md" | ||
spec.metadata['documentation_uri'] = "#{rubydoc}/#{spec.name}/#{spec.version}" | ||
|
||
spec.files = Dir['lib/**/*.rb', '*.md', '*.txt', '.yardopts'] | ||
spec.require_paths = ['lib'] | ||
|
||
spec.required_ruby_version = '>= 2.3' | ||
|
@@ -29,8 +31,5 @@ Gem::Specification.new do |spec| | |
spec.add_development_dependency 'json' | ||
spec.add_development_dependency 'redis', '>= 3.0' | ||
spec.add_development_dependency 'rspec', '~> 3.8' | ||
# 0.81 is the last rubocop version with Ruby 2.3 support | ||
spec.add_development_dependency 'rubocop', '0.81.0' | ||
spec.add_development_dependency 'rubocop-rspec', '1.38.1' | ||
spec.add_development_dependency 'timecop', '>= 0.9' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.