Skip to content

Commit a20a61f

Browse files
committed
add rubocop, github action
1 parent 32581f5 commit a20a61f

34 files changed

+597
-333
lines changed

.github/workflows/test.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Test
2+
3+
on: [pull_request]
4+
5+
# permissions:
6+
# contents: read
7+
8+
jobs:
9+
lint:
10+
runs-on: ubuntu-latest
11+
# env:
12+
# BUNDLE_ONLY: rubocop
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Set up Ruby 3.2.2
18+
uses: ruby/setup-ruby@v1
19+
with:
20+
ruby-version: 3.2.2
21+
bundler-cache: true
22+
23+
- name: Run Tests
24+
run: bundle exec rubocop --parallel
25+
# run: bundle exec rake

.rspec

-3
This file was deleted.

.rubocop-minitest.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
###########################################################
2+
#################### Rubocop Minitest #####################
3+
###########################################################
4+
5+
Minitest/AssertTruthy:
6+
Enabled: false
7+
8+
Minitest/RefuteFalse:
9+
Enabled: false
10+
11+
Minitest/MultipleAssertions:
12+
Max: 4

.rubocop.yml

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# see example at https://gist.github.com/jhass/a5ae80d87f18e53e7b56
2+
3+
# <% unless ENV['BYPASS_RUBOCOP_TODO'] %>
4+
# inherit_from:
5+
# <% else %>
6+
# inherit_from:
7+
# - '.rubocop-todo.yml'
8+
# <% end %>
9+
10+
inherit_from:
11+
- .rubocop_todo.yml
12+
- .rubocop-minitest.yml
13+
14+
require:
15+
- rubocop-minitest
16+
- rubocop-rake
17+
18+
AllCops:
19+
NewCops: enable
20+
# TargetRubyVersion: 2.7.8
21+
# TargetRailsVersion: 6.1.4
22+
# Exclude:
23+
# - 'Gemfile.lock'
24+
25+
Naming/VariableNumber:
26+
Enabled: false
27+
28+
Layout/SpaceInsideHashLiteralBraces:
29+
Enabled: false
30+
31+
Layout/EmptyLinesAroundModuleBody:
32+
EnforcedStyle: empty_lines_special
33+
Enabled: false
34+
35+
Layout/TrailingEmptyLines:
36+
Enabled: false
37+
EnforcedStyle: final_blank_line
38+
39+
Layout/EmptyLinesAroundClassBody:
40+
Enabled: false
41+
42+
Style/RaiseArgs:
43+
EnforcedStyle: compact
44+
45+
Naming/MethodParameterName:
46+
Enabled: false
47+
48+
Naming/VariableName:
49+
Enabled: false
50+
51+
Layout/FirstHashElementIndentation:
52+
Enabled: false
53+
54+
Layout/CaseIndentation:
55+
EnforcedStyle: end
56+
57+
Metrics/ParameterLists:
58+
Enabled: false

.rubocop_todo.yml

+94
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
# This configuration was generated by
2+
# `rubocop --auto-gen-config`
3+
# on 2024-03-15 19:54:30 UTC using RuboCop version 1.62.1.
4+
# The point is for the user to remove these configuration records
5+
# one by one as the offenses are removed from the code base.
6+
# Note that changes in the inspected code, or installation of new
7+
# versions of RuboCop, may require this file to be generated again.
8+
9+
# Offense count: 1
10+
# This cop supports safe autocorrection (--autocorrect).
11+
Layout/ElseAlignment:
12+
Exclude:
13+
- 'lib/kibana/api/namespace/saved_object.rb'
14+
15+
# Offense count: 2
16+
# This cop supports safe autocorrection (--autocorrect).
17+
# Configuration parameters: EnforcedStyleAlignWith, Severity.
18+
# SupportedStylesAlignWith: keyword, variable, start_of_line
19+
Layout/EndAlignment:
20+
Exclude:
21+
- 'lib/kibana/api/namespace/saved_object.rb'
22+
- 'lib/kibana/dashboard.rb'
23+
24+
# Offense count: 1
25+
# This cop supports safe autocorrection (--autocorrect).
26+
# Configuration parameters: AutoCorrect, AllowUnusedKeywordArguments, IgnoreEmptyMethods, IgnoreNotImplementedMethods.
27+
Lint/UnusedMethodArgument:
28+
Exclude:
29+
- 'lib/kibana/dashboard.rb'
30+
31+
# Offense count: 7
32+
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes.
33+
Metrics/AbcSize:
34+
Max: 57
35+
36+
# Offense count: 3
37+
# Configuration parameters: CountComments, CountAsOne.
38+
Metrics/ClassLength:
39+
Max: 220
40+
41+
# Offense count: 2
42+
# Configuration parameters: AllowedMethods, AllowedPatterns.
43+
Metrics/CyclomaticComplexity:
44+
Max: 25
45+
46+
# Offense count: 14
47+
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
48+
Metrics/MethodLength:
49+
Max: 50
50+
51+
# Offense count: 2
52+
# Configuration parameters: AllowedMethods, AllowedPatterns.
53+
Metrics/PerceivedComplexity:
54+
Max: 23
55+
56+
# Offense count: 1
57+
Naming/AccessorMethodName:
58+
Exclude:
59+
- 'lib/kibana/api/namespace/space.rb'
60+
61+
# Offense count: 17
62+
# Configuration parameters: AllowedConstants.
63+
Style/Documentation:
64+
Exclude:
65+
- 'spec/**/*'
66+
- 'test/**/*'
67+
- 'lib/kibana.rb'
68+
- 'lib/kibana/api.rb'
69+
- 'lib/kibana/api/base_client.rb'
70+
- 'lib/kibana/api/namespace/canvas.rb'
71+
- 'lib/kibana/api/namespace/features.rb'
72+
- 'lib/kibana/api/namespace/role.rb'
73+
- 'lib/kibana/api/namespace/saved_object.rb'
74+
- 'lib/kibana/api/namespace/space.rb'
75+
- 'lib/kibana/api/spaceable.rb'
76+
- 'lib/kibana/transport.rb'
77+
- 'lib/kibana/transport/client.rb'
78+
- 'lib/kibana/utils.rb'
79+
80+
# Offense count: 1
81+
# This cop supports unsafe autocorrection (--autocorrect-all).
82+
# Configuration parameters: InverseMethods, InverseBlocks.
83+
Style/InverseMethods:
84+
Exclude:
85+
- 'lib/kibana/dashboard.rb'
86+
87+
# Offense count: 3
88+
# This cop supports unsafe autocorrection (--autocorrect-all).
89+
# Configuration parameters: EnforcedStyle, AllowedMethods, AllowedPatterns.
90+
# SupportedStyles: predicate, comparison
91+
Style/NumericPredicate:
92+
Exclude:
93+
- 'spec/**/*'
94+
- 'lib/kibana/dashboard.rb'

.travis.yml

-7
This file was deleted.

Gemfile

+17-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
1-
source "https://rubygems.org"
1+
# frozen_string_literal: true
22

3-
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
3+
source 'https://rubygems.org'
4+
5+
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
46

57
# Specify your gem's dependencies in kibana.gemspec
68
gemspec
9+
10+
# gem 'bundler', '2.4.22'
11+
gem 'debug', '>= 1.0.0'
12+
gem 'minitest', '~> 5.14'
13+
gem 'minitest-reporters', '~> 1.6'
14+
gem 'rake', '~> 13.1'
15+
gem 'super_hash', '0.3.2', git: 'https://github.com/prysmex/super_hash.git'
16+
17+
# rubocop
18+
gem 'rubocop', '~> 1.62'
19+
gem 'rubocop-minitest', '~> 0.35'
20+
gem 'rubocop-performance', '~> 1.20'
21+
gem 'rubocop-rake', '~> 0.6'

Rakefile

+13-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
1-
require "bundler/gem_tasks"
2-
require "rake/testtask"
1+
# frozen_string_literal: true
32

4-
Rake::TestTask.new do |t|
5-
t.libs << "test"
6-
t.test_files = FileList["test/**/*_spec.rb"]
3+
require 'bundler/gem_tasks'
4+
require 'rake/testtask'
5+
6+
Rake::TestTask.new(:test) do |t|
77
t.verbose = true
88
t.warning = true
9+
t.libs << 'test'
10+
# t.libs << 'lib'
11+
t.test_files = FileList['test/**/*_test.rb']
912
end
1013

11-
task :default => :test
14+
require 'rubocop/rake_task'
15+
16+
RuboCop::RakeTask.new
17+
18+
task default: %i[test rubocop]

bin/console

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
#!/usr/bin/env ruby
2+
# frozen_string_literal: true
23

3-
require "bundler/setup"
4-
require "kibana"
4+
require 'bundler/setup'
5+
require 'kibana'
56

67
# You can add fixtures and/or initialization code here to make experimenting
78
# with your gem easier. You can also use a different console, if you like.
@@ -10,5 +11,5 @@ require "kibana"
1011
# require "pry"
1112
# Pry.start
1213

13-
require "irb"
14+
require 'irb'
1415
IRB.start(__FILE__)

kibana_api.gemspec

+20-30
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,37 @@
1+
# frozen_string_literal: true
12

2-
lib = File.expand_path("../lib", __FILE__)
3-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4-
require "kibana/version"
3+
require_relative 'lib/kibana/version'
54

65
Gem::Specification.new do |spec|
7-
spec.name = "kibana"
6+
spec.name = 'kibana'
87
spec.version = Kibana::VERSION
9-
spec.authors = ["victor-aguilars"]
10-
spec.email = ["victor.aguilarsnz@gmail.com"]
8+
spec.authors = ['victor-aguilars']
9+
spec.email = ['victor.aguilarsnz@gmail.com']
1110

1211
spec.summary = 'Ruby API for Kibana.'
1312
spec.description = 'Ruby API for Kibana.'
1413
# spec.homepage = "TODO: Put your gem's website or public repo URL here."
15-
# spec.license = "MIT"
14+
spec.license = 'MIT'
15+
spec.required_ruby_version = '>= 3.1.0'
1616

17-
# # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18-
# # to allow pushing to a single host or delete this section to allow pushing to any host.
19-
# if spec.respond_to?(:metadata)
20-
# spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
21-
22-
# spec.metadata["homepage_uri"] = spec.homepage
23-
# spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
24-
# spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
25-
# else
26-
# raise "RubyGems 2.0 or newer is required to protect against " \
27-
# "public gem pushes."
28-
# end
17+
# spec.metadata["homepage_uri"] = spec.homepage
18+
# spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
19+
# spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
20+
spec.metadata['rubygems_mfa_required'] = 'true'
2921

3022
# Specify which files should be added to the gem when it is released.
3123
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
32-
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
33-
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
24+
spec.files = Dir.chdir(__dir__) do
25+
`git ls-files -z`.split("\x0").reject do |f|
26+
(File.expand_path(f) == __FILE__) ||
27+
f.start_with?(*%w[bin/ test/ spec/ features/ .git appveyor Gemfile])
28+
end
3429
end
35-
spec.bindir = "exe"
36-
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
37-
spec.require_paths = ["lib"]
30+
spec.bindir = 'exe'
31+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
32+
spec.require_paths = ['lib']
3833

39-
spec.add_development_dependency "bundler", "2.4.22"
40-
spec.add_development_dependency "rake", "~> 13.1"
41-
spec.add_development_dependency "debug", ">= 1.0.0"
42-
spec.add_development_dependency "minitest", "~> 5.14"
43-
spec.add_development_dependency "minitest-reporters", "~> 1.6"
44-
spec.add_dependency "activesupport", '~> 6'
34+
spec.add_dependency 'activesupport', '~> 6'
4535
spec.add_dependency 'faraday', '~> 2'
4636
spec.add_dependency 'faraday-multipart'
4737
spec.add_dependency 'oj', '~> 3'

lib/kibana.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'active_support'
24
require 'active_support/all'
35
require 'faraday'

lib/kibana/api.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require_relative 'api/base_client'
24
require_relative 'api/spaceable'
35
require_relative 'api/namespace/canvas'

lib/kibana/api/base_client.rb

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module Kibana
24
module API
35
class BaseClient
@@ -9,16 +11,16 @@ def initialize(client)
911
end
1012

1113
private
12-
14+
1315
# delegate
14-
def request(**args, &block)
15-
client.request(**args, &block)
16+
def request(**args, &)
17+
client.request(**args, &)
1618
end
1719

1820
def symbolize_keys(object)
19-
object.transform_keys{|k| k.to_sym}
21+
object.transform_keys(&:to_sym)
2022
end
21-
23+
2224
end
2325
end
2426
end

0 commit comments

Comments
 (0)