rubocop-katana 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 2d83816f2a22a37bded299e91bd1bc8ece23e298b34883c28decb08967ea71b8
4
+ data.tar.gz: eb22950e7489de2ff0e4d3e59f01653c47295ce3351cdae0247a08dcab164934
5
+ SHA512:
6
+ metadata.gz: 2a758858f60776569cafb80c2b51fdedea5a69216cb1f2836e26ba0ac11d12100a1631cf194eccd69a302136cfc4a60868e54ed0a6206d1bdc452956d8670c3e
7
+ data.tar.gz: 4dd8963ffe416611254149973d38903da518cb640e96628957fd16687d5c7ad2ddb7f3962baa0d86be23065184b9a265253fd1b69d9a068d932f708f13cbb558
data/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # Rubocop::Katana
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/katana`. 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-katana'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install rubocop-katana
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. 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 tags, 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-katana.
36
+
37
+ ## License
38
+
39
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,15 @@
1
+ AllCops:
2
+ UseCache: true
3
+ DisplayCopNames: true
4
+ DisplayStyleGuide: true
5
+ TargetRubyVersion: 2.5
6
+ # Include:
7
+ Exclude:
8
+ - 'bin/*'
9
+ - 'lib/tasks/**/*'
10
+ - 'Gemfile'
11
+ - 'db/**/*'
12
+ - 'config/**/*'
13
+ - 'script/**/*'
14
+ - '**/Rakefile'
15
+ - '**/config.ru'
@@ -0,0 +1,13 @@
1
+ inherit_gem:
2
+ rubocop-rails:
3
+ - config/rails.yml
4
+
5
+ inherit_from:
6
+ - config/allcops.yml
7
+ - config/lint.yml
8
+ - config/style.yml
9
+ - config/metrics.yml
10
+ - config/layout.yml
11
+
12
+ Rails:
13
+ Enabled: true
data/config/layout.yml ADDED
@@ -0,0 +1,18 @@
1
+ Layout/ElseAlignment:
2
+ Enabled: false
3
+
4
+ Layout/EndAlignment:
5
+ Enabled: false
6
+
7
+ Layout/EmptyLinesAroundClassBody:
8
+ Enabled: false
9
+
10
+ Layout/EmptyLinesAroundModuleBody:
11
+ Enabled: false
12
+
13
+ Layout/EmptyLinesAroundBlockBody:
14
+ Exclude:
15
+ - 'spec/**/*'
16
+
17
+ Layout/IndentationWidth:
18
+ Enabled: false
data/config/lint.yml ADDED
@@ -0,0 +1,3 @@
1
+ Lint/AmbiguousBlockAssociation:
2
+ Exclude:
3
+ - 'spec/**/*'
@@ -0,0 +1,8 @@
1
+ Metrics/LineLength:
2
+ Max: 90
3
+ Exclude:
4
+ - 'spec/spec_helper.rb'
5
+
6
+ Metrics/BlockLength:
7
+ Exclude:
8
+ - 'spec/**/*'
data/config/style.yml ADDED
@@ -0,0 +1,15 @@
1
+ Style/AndOr:
2
+ Enabled: false
3
+
4
+ Style/ClassAndModuleChildren:
5
+ Exclude:
6
+ - 'app/**/*'
7
+
8
+ Style/Documentation:
9
+ Enabled: false
10
+
11
+ Style/StringLiterals:
12
+ Enabled: false
13
+
14
+ Style/EmptyMethod:
15
+ Enabled: false
@@ -0,0 +1,5 @@
1
+ module Rubocop
2
+ module Katana
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
@@ -0,0 +1,7 @@
1
+ require "rubocop/katana/version"
2
+
3
+ module Rubocop
4
+ module Katana
5
+ # Your code goes here...
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,124 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rubocop-katana
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Bodacious
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2018-08-04 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rubocop
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '0.54'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '0.54'
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: '1.1'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.1'
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: '1.25'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.25'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.16'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.16'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '10.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '10.0'
83
+ description: Katana's internal Rubocop style guide checks
84
+ email:
85
+ - bodacious@katanacode.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - README.md
91
+ - config/allcops.yml
92
+ - config/default.yml
93
+ - config/layout.yml
94
+ - config/lint.yml
95
+ - config/metrics.yml
96
+ - config/style.yml
97
+ - lib/rubocop/katana.rb
98
+ - lib/rubocop/katana/version.rb
99
+ homepage: https://github.com/katanacode/rubocop-katana
100
+ licenses:
101
+ - MIT
102
+ metadata: {}
103
+ post_install_message:
104
+ rdoc_options: []
105
+ require_paths:
106
+ - lib
107
+ - config
108
+ required_ruby_version: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: '0'
113
+ required_rubygems_version: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ requirements: []
119
+ rubyforge_project:
120
+ rubygems_version: 2.7.6
121
+ signing_key:
122
+ specification_version: 4
123
+ summary: Rubocop style checks for Katana projects.
124
+ test_files: []