rubocop-vnda 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 48f5a796759f597e9d91595726f78a0dab907dcbedf20b835f79050475607c80
4
+ data.tar.gz: bcb0f30e728249646f5afe8259725cf83ff2e5f3bf6c70c0e2d389a0eb835552
5
+ SHA512:
6
+ metadata.gz: e893a07955084dc8245cc0a945e37d9d2a403634157df7b1d9ef2eaf660c5042cc1fac7f40f4f0a4d9d7bc878c71ff2188c857daf4753dd1e951c7a46c0f76c9
7
+ data.tar.gz: 29619d7d8cb74057bb336cfe7de07ea881489188ae5b0e503d267fc7162a5b74d26720dab938a9fc02d386718a4cdb8487f3d74d1b722ca245630ac6e08f8a2f
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.0.1
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gemspec
6
+
7
+ gem "rake", "~> 13.0"
data/Gemfile.lock ADDED
@@ -0,0 +1,66 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ rubocop-vnda (0.1.0)
5
+ rubocop-rails (= 2.13.0)
6
+ rubocop-rspec (= 2.7.0)
7
+ standard (= 1.5.0)
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ activesupport (7.0.0)
13
+ concurrent-ruby (~> 1.0, >= 1.0.2)
14
+ i18n (>= 1.6, < 2)
15
+ minitest (>= 5.1)
16
+ tzinfo (~> 2.0)
17
+ ast (2.4.2)
18
+ concurrent-ruby (1.1.9)
19
+ i18n (1.8.11)
20
+ concurrent-ruby (~> 1.0)
21
+ minitest (5.15.0)
22
+ parallel (1.21.0)
23
+ parser (3.1.0.0)
24
+ ast (~> 2.4.1)
25
+ rack (2.2.3)
26
+ rainbow (3.0.0)
27
+ rake (13.0.6)
28
+ regexp_parser (2.2.0)
29
+ rexml (3.2.5)
30
+ rubocop (1.23.0)
31
+ parallel (~> 1.10)
32
+ parser (>= 3.0.0.0)
33
+ rainbow (>= 2.2.2, < 4.0)
34
+ regexp_parser (>= 1.8, < 3.0)
35
+ rexml
36
+ rubocop-ast (>= 1.12.0, < 2.0)
37
+ ruby-progressbar (~> 1.7)
38
+ unicode-display_width (>= 1.4.0, < 3.0)
39
+ rubocop-ast (1.15.1)
40
+ parser (>= 3.0.1.1)
41
+ rubocop-performance (1.12.0)
42
+ rubocop (>= 1.7.0, < 2.0)
43
+ rubocop-ast (>= 0.4.0)
44
+ rubocop-rails (2.13.0)
45
+ activesupport (>= 4.2.0)
46
+ rack (>= 1.1)
47
+ rubocop (>= 1.7.0, < 2.0)
48
+ rubocop-rspec (2.7.0)
49
+ rubocop (~> 1.19)
50
+ ruby-progressbar (1.11.0)
51
+ standard (1.5.0)
52
+ rubocop (= 1.23.0)
53
+ rubocop-performance (= 1.12.0)
54
+ tzinfo (2.0.4)
55
+ concurrent-ruby (~> 1.0)
56
+ unicode-display_width (2.1.0)
57
+
58
+ PLATFORMS
59
+ x86_64-darwin-18
60
+
61
+ DEPENDENCIES
62
+ rake (~> 13.0)
63
+ rubocop-vnda!
64
+
65
+ BUNDLED WITH
66
+ 2.3.3
data/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # Rubocop::Vnda
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/rubocop/vnda`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'rubocop-vnda'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle install
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install rubocop-vnda
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/rubocop-vnda.
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ task default: :spec
data/default.yml ADDED
@@ -0,0 +1,16 @@
1
+ require:
2
+ - standard
3
+ - rubocop-rails
4
+ - rubocop-rspec
5
+
6
+ inherit_gem:
7
+ standard: config/base.yml
8
+
9
+ AllCops:
10
+ NewCops: enable
11
+ Exclude:
12
+ - "bin/*"
13
+ - "vendor/**/*"
14
+
15
+ RSpec/MultipleExpectations:
16
+ Enabled: false
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Rubocop
4
+ module Vnda
5
+ VERSION = "0.1.0"
6
+ end
7
+ end
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "vnda/version"
@@ -0,0 +1,39 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/rubocop/vnda/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'rubocop-vnda'
7
+ spec.version = Rubocop::Vnda::VERSION
8
+ spec.authors = ['Rafael Souza']
9
+ spec.email = ['rafael.ssouza@gmail.com']
10
+
11
+ spec.summary = 'RuboCop configuration for Vnda'
12
+ spec.description = 'RuboCop configuration for Ruby projects at Vnda'
13
+ spec.homepage = 'https://github.com/vnda/rubocop-vnda'
14
+ spec.required_ruby_version = '>= 2.5.5'
15
+
16
+ spec.metadata['allowed_push_host'] = 'https://rubygems.org'
17
+
18
+ spec.metadata['homepage_uri'] = spec.homepage
19
+ spec.metadata['source_code_uri'] = 'https://github.com/vnda/rubocop'
20
+
21
+ # Specify which files should be added to the gem when it is released.
22
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
24
+ `git ls-files -z`.split("\x0").reject do |f|
25
+ (f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
26
+ end
27
+ end
28
+ spec.bindir = 'exe'
29
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
30
+ spec.require_paths = ['lib']
31
+
32
+ # Uncomment to register a new dependency of your gem
33
+ spec.add_dependency 'standard', '1.5.0'
34
+ spec.add_dependency 'rubocop-rails', '2.13.0'
35
+ spec.add_dependency 'rubocop-rspec', '2.7.0'
36
+
37
+ # For more information and examples about making a new gem, checkout our
38
+ # guide at: https://bundler.io/guides/creating_gem.html
39
+ end
metadata ADDED
@@ -0,0 +1,96 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rubocop-vnda
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Rafael Souza
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2022-01-04 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: standard
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '='
18
+ - !ruby/object:Gem::Version
19
+ version: 1.5.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '='
25
+ - !ruby/object:Gem::Version
26
+ version: 1.5.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: rubocop-rails
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '='
32
+ - !ruby/object:Gem::Version
33
+ version: 2.13.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '='
39
+ - !ruby/object:Gem::Version
40
+ version: 2.13.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: rubocop-rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '='
46
+ - !ruby/object:Gem::Version
47
+ version: 2.7.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '='
53
+ - !ruby/object:Gem::Version
54
+ version: 2.7.0
55
+ description: RuboCop configuration for Ruby projects at Vnda
56
+ email:
57
+ - rafael.ssouza@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".ruby-version"
63
+ - Gemfile
64
+ - Gemfile.lock
65
+ - README.md
66
+ - Rakefile
67
+ - default.yml
68
+ - lib/rubocop/vnda.rb
69
+ - lib/rubocop/vnda/version.rb
70
+ - rubocop-olist.gemspec
71
+ homepage: https://github.com/vnda/rubocop-vnda
72
+ licenses: []
73
+ metadata:
74
+ allowed_push_host: https://rubygems.org
75
+ homepage_uri: https://github.com/vnda/rubocop-vnda
76
+ source_code_uri: https://github.com/vnda/rubocop
77
+ post_install_message:
78
+ rdoc_options: []
79
+ require_paths:
80
+ - lib
81
+ required_ruby_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: 2.5.5
86
+ required_rubygems_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ requirements: []
92
+ rubygems_version: 3.2.15
93
+ signing_key:
94
+ specification_version: 4
95
+ summary: RuboCop configuration for Vnda
96
+ test_files: []