rubomatic 0.0.1.pre.rc.2

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: af30f0b401cdd45178d225ebd409c1407de78896bcb09193e8a82bd78fcc25e3
4
+ data.tar.gz: 6d3d02c1e4bdd5cfed22a39d16648e9cf5b784038ccfde9ff13876e469a1dd35
5
+ SHA512:
6
+ metadata.gz: 68d3dcf932228532dab6e04ab2cb089c19c67e969507348a366a5f6e48cc244fd83f19c2bf71019786c14a8a88546b40aaef37577e01db1e798688bbb8fa3071
7
+ data.tar.gz: d9998deab4ef67efbbd2fce3828d199d94a5cc95fb1e7c574a210469da9c9ea6c063150f85407d0c61ca037aa385577e1a7c0326daf497628e5d7b36454a2404
data/CHANGELOG.adoc ADDED
@@ -0,0 +1,7 @@
1
+ == 1.0.0
2
+
3
+ * Initial public release
4
+
5
+ == 0.0.1
6
+
7
+ * Initial release
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012-23 Brands Insurance
2
+
3
+ Copyright for portions of project Rubocop are held by Bozhidar Batsov and other contributors, as part of project Rubocop.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.adoc ADDED
@@ -0,0 +1,39 @@
1
+ = Rubomatic
2
+
3
+ Gem for shared rubocop config for BrandsInsurance
4
+
5
+ == Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ [source,ruby]
10
+ ----
11
+ gem 'rubomatic', require: false
12
+ ----
13
+
14
+ And then execute:
15
+
16
+ $ bundle install
17
+
18
+ Or install it yourself as:
19
+
20
+ $ gem install rubomatic
21
+
22
+ == Usage
23
+
24
+ Add the following to your ``.rubocop.yml`` config file
25
+
26
+ [source,yaml]
27
+ ----
28
+ require:
29
+ - rubocop-rails
30
+ - rubocop-performance
31
+ - rubocop-brands_insurance
32
+
33
+ inherit_gem:
34
+ rubomatic: configs/rubocop.yml
35
+ ----
36
+
37
+ == Changelog
38
+
39
+ See xref:./CHANGELOG.adoc[CHANGELOG] see see changes
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Rubomatic
4
+ VERSION = '0.0.1-rc.2'
5
+ end
data/lib/rubomatic.rb ADDED
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'rubomatic/version'
4
+
5
+ module Rubomatic
6
+ end
metadata ADDED
@@ -0,0 +1,108 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rubomatic
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1.pre.rc.2
5
+ platform: ruby
6
+ authors:
7
+ - Brands Insurance
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-03-09 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: 1.45.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.45.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: rubocop-brands_insurance
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '='
32
+ - !ruby/object:Gem::Version
33
+ version: 1.1.0
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.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: rubocop-performance
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '='
46
+ - !ruby/object:Gem::Version
47
+ version: 1.16.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '='
53
+ - !ruby/object:Gem::Version
54
+ version: 1.16.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: rubocop-rails
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '='
60
+ - !ruby/object:Gem::Version
61
+ version: '2.18'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '='
67
+ - !ruby/object:Gem::Version
68
+ version: '2.18'
69
+ description:
70
+ email:
71
+ - documents@brandsinsurance.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - CHANGELOG.adoc
77
+ - LICENSE.txt
78
+ - README.adoc
79
+ - lib/rubomatic.rb
80
+ - lib/rubomatic/version.rb
81
+ homepage: https://github.com/BrandsInsurance/expert-chainsaw/
82
+ licenses:
83
+ - MIT
84
+ metadata:
85
+ rubygems_mfa_required: 'true'
86
+ homepage_uri: https://github.com/BrandsInsurance/expert-chainsaw/
87
+ source_code_uri: https://github.com/BrandsInsurance/expert-chainsaw/tree/main/plugins/rubocop/rubomatic
88
+ changelog_uri: https://github.com/BrandsInsurance/expert-chainsaw/blob/main/plugins/rubocop/rubomatic/CHANGELOG.adoc
89
+ post_install_message:
90
+ rdoc_options: []
91
+ require_paths:
92
+ - lib
93
+ required_ruby_version: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ">="
96
+ - !ruby/object:Gem::Version
97
+ version: 3.0.1
98
+ required_rubygems_version: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ">"
101
+ - !ruby/object:Gem::Version
102
+ version: 1.3.1
103
+ requirements: []
104
+ rubygems_version: 3.2.15
105
+ signing_key:
106
+ specification_version: 4
107
+ summary: Shared rubocop config for BrandsInsurance
108
+ test_files: []