manageiq-style 1.0.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: ccd4a109779db16869e430273f004338e16e1de877e2edf1c408229bf1d9968d
4
+ data.tar.gz: 91cc356ab5b92b529667939a7bb75c1861547a18056ed47f40db3c56c408793d
5
+ SHA512:
6
+ metadata.gz: 578897c59ec8aa6fd48fa877e862d0241ab4961db33fc3cdff140dcedf2346b871965a2eb8f17be75a74092f3548310ab2b7b828618c48af1214db20375d8858
7
+ data.tar.gz: 1d2bd3c89623af4d07e6ce8d953f4dbd677bc813309dd41082b1cf3671953074af884594200f0b51d13d0d7f97efb8e8e5e9946d11538ca0685f73c73db103c0
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.haml-lint.yml ADDED
@@ -0,0 +1 @@
1
+ .rubocop.yml
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,4 @@
1
+ inherit_from:
2
+ - .rubocop_base.yml
3
+ # put all local rubocop config into .rubocop_local.yml as it will be loaded by .rubocop_cc.yml as well
4
+ - .rubocop_local.yml
data/.rubocop_base.yml ADDED
@@ -0,0 +1,290 @@
1
+ require:
2
+ - rubocop-rails
3
+ - rubocop-performance
4
+
5
+ AllCops:
6
+ NewCops: disable
7
+ Exclude:
8
+ - spec/manageiq/**/*
9
+ - vendor/**/*
10
+ TargetRubyVersion: 2.5
11
+ Layout/HashAlignment:
12
+ EnforcedHashRocketStyle: table
13
+ EnforcedColonStyle: table
14
+ Layout/DefEndAlignment:
15
+ AutoCorrect: true
16
+ Layout/EndAlignment:
17
+ AutoCorrect: true
18
+ Layout/ExtraSpacing:
19
+ AutoCorrect: true
20
+ Layout/LineLength:
21
+ Enabled: false
22
+ Layout/SpaceAroundMethodCallOperator:
23
+ Enabled: true
24
+ Layout/SpaceBeforeFirstArg:
25
+ Enabled: false
26
+ Layout/SpaceInsideHashLiteralBraces:
27
+ EnforcedStyle: no_space
28
+ Lint/RaiseException:
29
+ Enabled: true
30
+ Lint/StructNewOverride:
31
+ Enabled: true
32
+ Metrics/AbcSize:
33
+ Enabled: false
34
+ Metrics/BlockLength:
35
+ Enabled: false
36
+ Metrics/BlockNesting:
37
+ Enabled: false
38
+ Metrics/ClassLength:
39
+ Enabled: false
40
+ Metrics/CyclomaticComplexity:
41
+ Enabled: false
42
+ Metrics/MethodLength:
43
+ Enabled: false
44
+ Metrics/ModuleLength:
45
+ Enabled: false
46
+ Metrics/ParameterLists:
47
+ Enabled: false
48
+ Metrics/PerceivedComplexity:
49
+ Enabled: false
50
+ Naming/MethodParameterName:
51
+ AllowedNames:
52
+ - vm
53
+ - dc
54
+ Naming/RescuedExceptionsVariableName:
55
+ Enabled: false
56
+ Performance/Casecmp:
57
+ Enabled: false
58
+ Rails:
59
+ Enabled: true
60
+ Rails/FindEach:
61
+ Enabled: false
62
+ Rails/HttpStatus:
63
+ Enabled: true
64
+ EnforcedStyle: numeric
65
+ Rails/ReadWriteAttribute:
66
+ AutoCorrect: false
67
+ Style/ClassAndModuleChildren:
68
+ Enabled: false
69
+ Style/ClassCheck:
70
+ EnforcedStyle: kind_of?
71
+ Style/CollectionMethods:
72
+ PreferredMethods:
73
+ find: detect
74
+ find_all: select
75
+ map: collect
76
+ reduce: inject
77
+ Style/Documentation:
78
+ Enabled: false
79
+ Style/DoubleNegation:
80
+ Enabled: false
81
+ Style/EmptyMethod:
82
+ Enabled: false
83
+ Style/Encoding:
84
+ Enabled: false
85
+ Style/ExponentialNotation:
86
+ Enabled: true
87
+ Style/FormatString:
88
+ EnforcedStyle: percent
89
+ Style/FormatStringToken:
90
+ EnforcedStyle: template
91
+ Style/FrozenStringLiteralComment:
92
+ Enabled: false
93
+ Style/GuardClause:
94
+ Enabled: false
95
+ Style/HashEachMethods:
96
+ Enabled: true
97
+ Style/HashSyntax:
98
+ EnforcedStyle: hash_rockets
99
+ Exclude:
100
+ - db/schema.rb
101
+ Style/HashTransformKeys:
102
+ Enabled: true
103
+ Style/HashTransformValues:
104
+ Enabled: true
105
+ Style/IfUnlessModifier:
106
+ Enabled: false
107
+ Style/MethodCallWithArgsParentheses:
108
+ Exclude:
109
+ - Gemfile
110
+ - config/routes.rb
111
+ - lib/generators/**/*
112
+ - lib/resource_feeder/**/*
113
+ - lib/tasks/**/*
114
+ - spec/**/*
115
+ Enabled: true
116
+ IgnoredMethods:
117
+ # Ruby
118
+ - add_dependency
119
+ - add_development_dependency
120
+ - add_runtime_dependency
121
+ - alias_method
122
+ - attr_accessor
123
+ - attr_reader
124
+ - attr_writer
125
+ - exit
126
+ - extend
127
+ - gem
128
+ - include
129
+ - load
130
+ - module_function
131
+ - pp
132
+ - prepend
133
+ - print
134
+ - private
135
+ - private_class_method
136
+ - private_constant
137
+ - puts
138
+ - raise
139
+ - require
140
+ - sleep
141
+ - throw
142
+ - warn
143
+ - yield
144
+ # Rails
145
+ - accepts_nested_attributes_for
146
+ - add_column
147
+ - add_index
148
+ - add_reference
149
+ - after_action
150
+ - after_commit
151
+ - after_create
152
+ - after_create_commit
153
+ - after_destroy
154
+ - after_destroy
155
+ - after_destroy_commit
156
+ - after_initialize
157
+ - after_save
158
+ - after_save
159
+ - after_update
160
+ - after_update_commit
161
+ - alias_attribute
162
+ - around_destroy
163
+ - autoload
164
+ - before_action
165
+ - before_create
166
+ - before_destroy
167
+ - before_save
168
+ - before_update
169
+ - before_validation
170
+ - belongs_to
171
+ - bigint
172
+ - boolean
173
+ - cattr_accessor
174
+ - cattr_reader
175
+ - cattr_writer
176
+ - change_column
177
+ - change_column_comment
178
+ - change_column_null
179
+ - change_table_comment
180
+ - class_attribute
181
+ - create_table
182
+ - datetime
183
+ - decimal
184
+ - delegate
185
+ - drop_table
186
+ - float
187
+ - has_and_belongs_to_many
188
+ - has_many
189
+ - has_one
190
+ - head
191
+ - identified_by
192
+ - index
193
+ - integer
194
+ - jsonb
195
+ - mattr_accessor
196
+ - references
197
+ - remove_column
198
+ - remove_index
199
+ - remove_reference
200
+ - rename_column
201
+ - render
202
+ - require_dependency
203
+ - require_relative
204
+ - respond_to
205
+ - scope
206
+ - serialize
207
+ - skip_before_action
208
+ - string
209
+ - text
210
+ - uuid
211
+ - validate
212
+ - validates
213
+ # ActsAsTree Gem
214
+ - acts_as_tree
215
+ # Ancestry Gem
216
+ - has_ancestry
217
+ # DefaultValue Gem
218
+ - default_value_for
219
+ - default_values
220
+ # Optimist Gem
221
+ - banner
222
+ - die
223
+ - opt
224
+ # MIQ
225
+ - add_trigger
226
+ - alias_with_relationship_type
227
+ - api_relay_method
228
+ - attr_accessor_that_yamls
229
+ - deprecate_attribute
230
+ - drop_trigger
231
+ - encrypt_column
232
+ - include_concern
233
+ - require_nested
234
+ - signal
235
+ - supports
236
+ - supports_not
237
+ - virtual_aggregate
238
+ - virtual_attribute
239
+ - virtual_belongs_to
240
+ - virtual_belongs_to
241
+ - virtual_column
242
+ - virtual_delegate
243
+ - virtual_has_many
244
+ - virtual_has_one
245
+ - virtual_total
246
+ # Rake
247
+ - desc
248
+ - task
249
+ Style/NumericLiterals:
250
+ AutoCorrect: false
251
+ Style/NumericPredicate:
252
+ Enabled: false
253
+ Style/PerlBackrefs:
254
+ Enabled: false
255
+ Style/ParallelAssignment:
256
+ Enabled: false
257
+ Style/RedundantReturn:
258
+ AllowMultipleReturnValues: true
259
+ Style/RegexpLiteral:
260
+ Enabled: false
261
+ Style/RescueModifier:
262
+ AutoCorrect: false
263
+ Style/RescueStandardError:
264
+ EnforcedStyle: implicit
265
+ Style/SignalException:
266
+ EnforcedStyle: only_raise
267
+ Style/SingleLineBlockParams:
268
+ Enabled: false
269
+ Style/SingleLineMethods:
270
+ AllowIfMethodIsEmpty: false
271
+ Style/SpecialGlobalVars:
272
+ AutoCorrect: false
273
+ Style/StringLiterals:
274
+ Enabled: false
275
+ Style/StringLiteralsInInterpolation:
276
+ Enabled: false
277
+ Style/SymbolArray:
278
+ Enabled: false
279
+ Style/TrailingCommaInArrayLiteral:
280
+ Enabled: false
281
+ Style/TrailingCommaInHashLiteral:
282
+ Enabled: false
283
+ Style/TrailingUnderscoreVariable:
284
+ Enabled: false
285
+ Style/TrivialAccessors:
286
+ AllowPredicates: true
287
+ Style/WhileUntilModifier:
288
+ Enabled: false
289
+ Style/WordArray:
290
+ Enabled: false
@@ -0,0 +1,47 @@
1
+ #
2
+ # THIS FILE IS AUTOGENERATED. DO NOT MODIFY MANUALLY.
3
+ # For changes, please modify scripts/process_rubocop_yamls.rb
4
+ #
5
+ ---
6
+ AllCops:
7
+ TargetRubyVersion: 2.4
8
+ Bundler:
9
+ Enabled: true
10
+ Gemspec:
11
+ Enabled: true
12
+ Layout:
13
+ Enabled: false
14
+ Lint:
15
+ Enabled: true
16
+ Naming:
17
+ Enabled: false
18
+ Performance:
19
+ Enabled: true
20
+ Rails:
21
+ Enabled: false
22
+ Security:
23
+ Enabled: true
24
+ Style:
25
+ Enabled: false
26
+ Metrics/AbcSize:
27
+ Enabled: false
28
+ Metrics/BlockLength:
29
+ Enabled: false
30
+ Metrics/BlockNesting:
31
+ Enabled: true
32
+ Metrics/ClassLength:
33
+ Enabled: false
34
+ Metrics/CyclomaticComplexity:
35
+ Enabled: true
36
+ Max: 11
37
+ Metrics/LineLength:
38
+ Enabled: false
39
+ Metrics/MethodLength:
40
+ Enabled: false
41
+ Metrics/ModuleLength:
42
+ Enabled: false
43
+ Metrics/ParameterLists:
44
+ Enabled: true
45
+ Metrics/PerceivedComplexity:
46
+ Enabled: false
47
+
data/.travis.yml ADDED
@@ -0,0 +1,6 @@
1
+ ---
2
+ language: ruby
3
+ cache: bundler
4
+ rvm:
5
+ - 2.5.7
6
+ before_install: gem install bundler -v 2.1.4
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at brandondunne@hotmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [https://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: https://contributor-covenant.org
74
+ [version]: https://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in manageiq-style.gemspec
4
+ gemspec
5
+
6
+ gem "rake", "~> 12.0"
7
+ gem "rspec", "~> 3.0"
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 ManageIQ Authors.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,40 @@
1
+ # Manageiq::Style
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/manageiq/style`. 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 'manageiq-style'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle install
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install manageiq-style
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 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]/manageiq-style. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/manageiq-style/blob/master/CODE_OF_CONDUCT.md).
36
+
37
+
38
+ ## Code of Conduct
39
+
40
+ Everyone interacting in the Manageiq::Style project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/manageiq-style/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "manageiq/style"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,5 @@
1
+ module Manageiq
2
+ module Style
3
+ VERSION = "1.0.0"
4
+ end
5
+ end
@@ -0,0 +1,8 @@
1
+ require "manageiq/style/version"
2
+
3
+ module Manageiq
4
+ module Style
5
+ class Error < StandardError; end
6
+ # Your code goes here...
7
+ end
8
+ end
@@ -0,0 +1,31 @@
1
+ require_relative 'lib/manageiq/style/version'
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "manageiq-style"
5
+ spec.version = Manageiq::Style::VERSION
6
+ spec.authors = ["Brandon Dunne"]
7
+ spec.email = ["brandondunne@hotmail.com"]
8
+
9
+ spec.summary = "Style and linting configuration for ManageIQ projects."
10
+ spec.description = "Style and linting configuration for ManageIQ projects."
11
+ spec.homepage = "https://github.com/ManageIQ/manageiq-style"
12
+ spec.license = "MIT"
13
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
14
+
15
+ spec.metadata["homepage_uri"] = spec.homepage
16
+ spec.metadata["source_code_uri"] = spec.homepage
17
+
18
+ # Specify which files should be added to the gem when it is released.
19
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
20
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
21
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
22
+ end
23
+ spec.bindir = "exe"
24
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
25
+ spec.require_paths = ["lib"]
26
+
27
+ spec.add_runtime_dependency "haml_lint", "~> 0.35.0"
28
+ spec.add_runtime_dependency "rubocop", "~> 0.82.0"
29
+ spec.add_runtime_dependency "rubocop-performance"
30
+ spec.add_runtime_dependency "rubocop-rails"
31
+ end
metadata ADDED
@@ -0,0 +1,118 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: manageiq-style
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Brandon Dunne
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2020-05-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: haml_lint
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.35.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.35.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: rubocop
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 0.82.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 0.82.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: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '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: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: Style and linting configuration for ManageIQ projects.
70
+ email:
71
+ - brandondunne@hotmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - ".haml-lint.yml"
78
+ - ".rspec"
79
+ - ".rubocop.yml"
80
+ - ".rubocop_base.yml"
81
+ - ".rubocop_cc_base.yml"
82
+ - ".travis.yml"
83
+ - CODE_OF_CONDUCT.md
84
+ - Gemfile
85
+ - LICENSE.txt
86
+ - README.md
87
+ - Rakefile
88
+ - bin/console
89
+ - bin/setup
90
+ - lib/manageiq/style.rb
91
+ - lib/manageiq/style/version.rb
92
+ - manageiq-style.gemspec
93
+ homepage: https://github.com/ManageIQ/manageiq-style
94
+ licenses:
95
+ - MIT
96
+ metadata:
97
+ homepage_uri: https://github.com/ManageIQ/manageiq-style
98
+ source_code_uri: https://github.com/ManageIQ/manageiq-style
99
+ post_install_message:
100
+ rdoc_options: []
101
+ require_paths:
102
+ - lib
103
+ required_ruby_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: 2.3.0
108
+ required_rubygems_version: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: '0'
113
+ requirements: []
114
+ rubygems_version: 3.0.6
115
+ signing_key:
116
+ specification_version: 4
117
+ summary: Style and linting configuration for ManageIQ projects.
118
+ test_files: []