-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
963f88b
commit 8168f24
Showing
38 changed files
with
459 additions
and
721 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
Metrics/BlockLength: | ||
Enabled: false | ||
|
||
Metrics/MethodLength: | ||
Enabled: false | ||
|
||
Metrics/CyclomaticComplexity: | ||
Enabled: false | ||
|
||
Style/Documentation: | ||
Enabled: false | ||
|
||
Metrics/AbcSize: | ||
Enabled: false | ||
|
||
Style/OptionalBooleanParameter: | ||
Enabled: false | ||
|
||
Lint/RescueException: | ||
Enabled: false | ||
|
||
Metrics/ModuleLength: | ||
Enabled: false | ||
|
||
Metrics/PerceivedComplexity: | ||
Enabled: false | ||
|
||
Metrics/ParameterLists: | ||
Enabled: false | ||
|
||
Lint/InheritException: | ||
Enabled: false | ||
|
||
Naming/FileName: | ||
Enabled: false | ||
|
||
Style/EvalWithLocation: | ||
Enabled: false | ||
|
||
Naming/HeredocDelimiterNaming: | ||
Enabled: false |
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 |
---|---|---|
@@ -1,6 +1,8 @@ | ||
# frozen_string_literal: true | ||
|
||
SimpleCov.start do | ||
add_filter '/spec/' | ||
add_filter '.simplecov' | ||
|
||
add_filter 'lib/angus/unmarshalling' | ||
end | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
lib = File.expand_path('lib', __dir__) | ||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | ||
require 'angus/remote/version' | ||
|
@@ -6,6 +8,7 @@ Gem::Specification.new do |spec| | |
spec.name = 'angus-remote' | ||
spec.version = Angus::Remote::VERSION | ||
spec.platform = Gem::Platform::RUBY | ||
|
||
spec.authors = ['Adrian Gomez', 'Gianfranco Zas'] | ||
spec.email = %w[[email protected]] | ||
spec.summary = 'Client for building service objects.' | ||
|
@@ -15,20 +18,22 @@ Gem::Specification.new do |spec| | |
spec.homepage = 'http://mooveit.github.io/angus-remote' | ||
spec.license = 'MIT' | ||
|
||
spec.required_ruby_version = '>= 2.6.0' | ||
|
||
spec.files = Dir.glob('{lib}/**/*') | ||
spec.test_files = Dir.glob('{spec/angus}/**/*') | ||
spec.require_paths = %w[lib] | ||
|
||
spec.add_dependency('angus-sdoc', '~> 0.0', '>= 0.0.6') | ||
spec.add_dependency('multipart-post', '>= 2.2') | ||
spec.add_dependency('persistent_http', '~> 2.0.3') | ||
|
||
spec.add_development_dependency('ci_reporter', '~> 2.0.0') | ||
spec.add_development_dependency('ci_reporter') | ||
spec.add_development_dependency('fakefs') | ||
spec.add_development_dependency('rake') | ||
spec.add_development_dependency('rspec', '~> 3.11.0') | ||
spec.add_development_dependency('rspec') | ||
spec.add_development_dependency('rspec-its') | ||
spec.add_development_dependency('simplecov', '~> 0.17.1') | ||
spec.add_development_dependency('simplecov-rcov', '~> 0.3.1') | ||
spec.add_development_dependency('simplecov-rcov-text', '~> 0.0.3') | ||
spec.add_development_dependency('rubocop') | ||
spec.add_development_dependency('simplecov') | ||
spec.add_development_dependency('simplecov-rcov') | ||
spec.add_development_dependency('simplecov-rcov-text') | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'angus/remote/client' | ||
require 'angus/remote/builder' | ||
require 'angus/remote/proxy_client' | ||
require 'angus/remote/response/serializer' | ||
require 'angus/remote/service_directory' | ||
require 'angus/remote/settings' | ||
require 'angus/remote/settings' |
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.