slimcop 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: 7d598a52269b8958e493b5b29b175e58d96d122381679e21b5c90c86b2c50d8a
4
+ data.tar.gz: 8f45fae7e940bdc8ece0c4ae5575554ba715f6d79e986a9c18fd9893e7c9ff61
5
+ SHA512:
6
+ metadata.gz: bbcc157e1514269668fe126bce9f29315cf848ef49208c784877a36fdd00b5d71de538af0474ca76dfdee44c4aa3920167b065bc0f41b65a5948facf04f133b8
7
+ data.tar.gz: '009cdacfe8068fcda5c90a172ca49ef0b77db8e965d4700723f6010bbe0fd0b35b5dcbe8f8d7472b79121785961e0997d1a41146b1aeb0eb4c21add9240bb126'
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,13 @@
1
+ AllCops:
2
+ NewCops: enable
3
+ SuggestExtensions: false
4
+ TargetRubyVersion: 2.6
5
+
6
+ Layout/LineLength:
7
+ Enabled: false
8
+
9
+ Metrics:
10
+ Enabled: false
11
+
12
+ Style/Documentation:
13
+ Enabled: false
data/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ # Changelog
2
+
3
+ ## Unreleased
4
+
5
+ ## 0.1.0 - 2021-12-21
6
+
7
+ - Initial release.
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at r7kamura@gmail.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ # Specify your gem's dependencies in slimcop.gemspec
6
+ gemspec
7
+
8
+ gem 'rake', '~> 13.0'
9
+
10
+ gem 'rspec', '~> 3.0'
11
+
12
+ gem 'rubocop', '~> 1.21'
data/Gemfile.lock ADDED
@@ -0,0 +1,60 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ slimcop (0.1.0)
5
+ rubocop (>= 0.87)
6
+ slimi (>= 0.1.1)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ ast (2.4.2)
12
+ diff-lcs (1.4.4)
13
+ parallel (1.21.0)
14
+ parser (3.0.3.2)
15
+ ast (~> 2.4.1)
16
+ rainbow (3.0.0)
17
+ rake (13.0.6)
18
+ regexp_parser (2.2.0)
19
+ rexml (3.2.5)
20
+ rspec (3.10.0)
21
+ rspec-core (~> 3.10.0)
22
+ rspec-expectations (~> 3.10.0)
23
+ rspec-mocks (~> 3.10.0)
24
+ rspec-core (3.10.1)
25
+ rspec-support (~> 3.10.0)
26
+ rspec-expectations (3.10.1)
27
+ diff-lcs (>= 1.2.0, < 2.0)
28
+ rspec-support (~> 3.10.0)
29
+ rspec-mocks (3.10.2)
30
+ diff-lcs (>= 1.2.0, < 2.0)
31
+ rspec-support (~> 3.10.0)
32
+ rspec-support (3.10.3)
33
+ rubocop (1.23.0)
34
+ parallel (~> 1.10)
35
+ parser (>= 3.0.0.0)
36
+ rainbow (>= 2.2.2, < 4.0)
37
+ regexp_parser (>= 1.8, < 3.0)
38
+ rexml
39
+ rubocop-ast (>= 1.12.0, < 2.0)
40
+ ruby-progressbar (~> 1.7)
41
+ unicode-display_width (>= 1.4.0, < 3.0)
42
+ rubocop-ast (1.15.0)
43
+ parser (>= 3.0.1.1)
44
+ ruby-progressbar (1.11.0)
45
+ slimi (0.1.1)
46
+ temple
47
+ temple (0.8.2)
48
+ unicode-display_width (2.1.0)
49
+
50
+ PLATFORMS
51
+ x86_64-linux
52
+
53
+ DEPENDENCIES
54
+ rake (~> 13.0)
55
+ rspec (~> 3.0)
56
+ rubocop (~> 1.21)
57
+ slimcop!
58
+
59
+ BUNDLED WITH
60
+ 2.2.29
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2021 Ryo Nakamura
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,35 @@
1
+ # Slimcop
2
+
3
+ [![test](https://github.com/r7kamura/slimcop/actions/workflows/test.yml/badge.svg)](https://github.com/r7kamura/slimcop/actions/workflows/test.yml)
4
+
5
+ [RuboCop](https://github.com/rubocop/rubocop) runner for [Slim template](https://github.com/slim-template/slim).
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'slimcop'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ ```
18
+ bundle install
19
+ ```
20
+
21
+ Or install it yourself as:
22
+
23
+ ```
24
+ gem install slimcop
25
+ ```
26
+
27
+ ## Usage
28
+
29
+ Use `slimcop` executable to check offenses and auto-correct them.
30
+
31
+ ```console
32
+ $ slimcop --help
33
+ Usage: slimcop [options] [file1, file2, ...]
34
+ -a, --auto-correct Auto-correct offenses.
35
+ ```
data/Rakefile ADDED
@@ -0,0 +1,12 @@
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
+ require 'rubocop/rake_task'
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[spec rubocop]
data/bin/console ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require 'bundler/setup'
5
+ require 'slimcop'
6
+
7
+ # You can add fixtures and/or initialization code here to make experimenting
8
+ # with your gem easier. You can also use a different console, if you like.
9
+
10
+ # (If you use this, don't forget to add pry to your Gemfile!)
11
+ # require "pry"
12
+ # Pry.start
13
+
14
+ require 'irb'
15
+ 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
data/default.yml ADDED
@@ -0,0 +1,107 @@
1
+ Layout/ArgumentAlignment:
2
+ Enabled: false
3
+
4
+ Layout/ArrayAlignment:
5
+ Enabled: false
6
+
7
+ Layout/BlockAlignment:
8
+ Enabled: false
9
+
10
+ Layout/ClosingParenthesisIndentation:
11
+ Enabled: false
12
+
13
+ Layout/EmptyLineAfterGuardClause:
14
+ Enabled: false
15
+
16
+ Layout/EndAlignment:
17
+ Enabled: false
18
+
19
+ Layout/FirstArgumentIndentation:
20
+ Enabled: false
21
+
22
+ Layout/FirstArrayElementIndentation:
23
+ Enabled: false
24
+
25
+ Layout/FirstHashElementIndentation:
26
+ Enabled: false
27
+
28
+ Layout/FirstParameterIndentation:
29
+ Enabled: false
30
+
31
+ Layout/HashAlignment:
32
+ Enabled: false
33
+
34
+ Layout/IndentationConsistency:
35
+ Enabled: false
36
+
37
+ Layout/IndentationWidth:
38
+ Enabled: false
39
+
40
+ Layout/InitialIndentation:
41
+ Enabled: false
42
+
43
+ Layout/LineEndStringConcatenationIndentation:
44
+ Enabled: false
45
+
46
+ Layout/LineLength:
47
+ Enabled: false
48
+
49
+ Layout/MultilineArrayBraceLayout:
50
+ Enabled: false
51
+
52
+ Layout/MultilineAssignmentLayout:
53
+ Enabled: false
54
+
55
+ Layout/MultilineHashBraceLayout:
56
+ Enabled: false
57
+
58
+ Layout/MultilineMethodCallBraceLayout:
59
+ Enabled: false
60
+
61
+ Layout/MultilineMethodCallIndentation:
62
+ Enabled: false
63
+
64
+ Layout/MultilineMethodDefinitionBraceLayout:
65
+ Enabled: false
66
+
67
+ Layout/MultilineOperationIndentation:
68
+ Enabled: false
69
+
70
+ Layout/ParameterAlignment:
71
+ Enabled: false
72
+
73
+ Layout/TrailingEmptyLines:
74
+ Enabled: false
75
+
76
+ Layout/TrailingWhitespace:
77
+ Enabled: false
78
+
79
+ Lint/Void:
80
+ Enabled: false
81
+
82
+ Metrics/BlockLength:
83
+ Enabled: false
84
+
85
+ Metrics/BlockNesting:
86
+ Enabled: false
87
+
88
+ Naming/FileName:
89
+ Enabled: false
90
+
91
+ Style/FrozenStringLiteralComment:
92
+ Enabled: false
93
+
94
+ Style/IdenticalConditionalBranches:
95
+ Enabled: false
96
+
97
+ Style/IfUnlessModifier:
98
+ Enabled: false
99
+
100
+ Style/Next:
101
+ Enabled: false
102
+
103
+ Style/WhileUntilDo:
104
+ Enabled: false
105
+
106
+ Style/WhileUntilModifier:
107
+ Enabled: false
data/exe/slimcop ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require 'slimcop'
5
+
6
+ Slimcop::Cli.new(ARGV).call
@@ -0,0 +1,46 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'optparse'
4
+ require 'rubocop'
5
+
6
+ module Slimcop
7
+ class Cli
8
+ def initialize(argv)
9
+ @argv = argv.dup
10
+ end
11
+
12
+ def call
13
+ options = parse!
14
+ @argv.each do |slim_file_path|
15
+ runner = Runner.new(
16
+ file_path: slim_file_path
17
+ )
18
+ if options[:auto_correct]
19
+ ::File.write(
20
+ slim_file_path,
21
+ runner.auto_correct
22
+ )
23
+ else
24
+ messages = runner.offenses.map do |offense|
25
+ offense[:rubocop_offense].message
26
+ end
27
+ puts messages
28
+ end
29
+ end
30
+ end
31
+
32
+ private
33
+
34
+ # @return [Hash]
35
+ def parse!
36
+ options = {}
37
+ parser = ::OptionParser.new
38
+ parser.banner = 'Usage: slimcop [options] [file1, file2, ...]'
39
+ parser.on('-a', '--auto-correct', 'Auto-correct offenses.') do
40
+ options[:auto_correct] = true
41
+ end
42
+ parser.parse!(@argv)
43
+ options
44
+ end
45
+ end
46
+ end
@@ -0,0 +1,54 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'slimi'
4
+
5
+ module Slimcop
6
+ # Extract codes from Slim source.
7
+ class RubyExtractor
8
+ # @param [String] source
9
+ def initialize(source:)
10
+ @source = source
11
+ end
12
+
13
+ # @return [Array<Hash>]
14
+ def call
15
+ ranges.map do |(begin_, end_)|
16
+ {
17
+ begin_: begin_,
18
+ code: @source[begin_...end_],
19
+ end_: end_
20
+ }
21
+ end
22
+ end
23
+
24
+ private
25
+
26
+ # @return [Array] Slim AST, represented in S-expression.
27
+ def ast
28
+ ::Slimi::Filters::Interpolation.new.call(
29
+ ::Slimi::Parser.new.call(@source)
30
+ )
31
+ end
32
+
33
+ # @return [Array<Array<Integer>>]
34
+ def ranges
35
+ result = []
36
+ traverse(ast) do |begin_, end_|
37
+ result << [begin_, end_]
38
+ end
39
+ result
40
+ end
41
+
42
+ def traverse(node, &block)
43
+ return unless node.instance_of?(::Array)
44
+
45
+ if node[0] == :slimi && node[1] == :position
46
+ block.call(node[2], node[3])
47
+ else
48
+ node.each do |element|
49
+ traverse(element, &block)
50
+ end
51
+ end
52
+ end
53
+ end
54
+ end
@@ -0,0 +1,47 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'rubocop'
4
+
5
+ module Slimcop
6
+ # Collect RuboCop offenses from Ruby code.
7
+ class RubyOffenseCollector
8
+ # @param [String] file_path
9
+ # @param [RuboCop::Config] rubocop_config
10
+ # @param [String] source
11
+ def initialize(file_path:, rubocop_config:, source:)
12
+ @file_path = file_path
13
+ @rubocop_config = rubocop_config
14
+ @source = source
15
+ end
16
+
17
+ # @return [Array<RuboCop::Cop::Offense>, nil]
18
+ def call
19
+ return unless rubocop_processed_source.valid_syntax?
20
+
21
+ rubocop_team.investigate(rubocop_processed_source).offenses
22
+ end
23
+
24
+ private
25
+
26
+ # @return [RuboCop::ProcessedSource]
27
+ def rubocop_processed_source
28
+ @rubocop_processed_source ||= ::RuboCop::ProcessedSource.new(
29
+ @source,
30
+ @rubocop_config.target_ruby_version,
31
+ @file_path
32
+ )
33
+ end
34
+
35
+ # @return [RuboCop::Cop::Team]
36
+ def rubocop_team
37
+ ::RuboCop::Cop::Team.new(
38
+ ::RuboCop::Cop::Registry.new(::RuboCop::Cop::Cop.all),
39
+ @rubocop_config,
40
+ auto_correct: true,
41
+ display_cop_names: true,
42
+ extra_details: true,
43
+ stdin: ''
44
+ )
45
+ end
46
+ end
47
+ end
@@ -0,0 +1,49 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'rubocop'
4
+
5
+ module Slimcop
6
+ # Report offenses in Slim file, and apply auto-corrections if required.
7
+ class Runner
8
+ # @param [String] file_path
9
+ def initialize(file_path:)
10
+ @file_path = file_path
11
+ end
12
+
13
+ # @return [Array<Hash>]
14
+ def offenses
15
+ @offenses ||= SlimOffenseCollector.new(
16
+ file_path: @file_path,
17
+ rubocop_config: rubocop_config,
18
+ source: source
19
+ ).call
20
+ end
21
+
22
+ def auto_correct
23
+ SlimCorrector.new(
24
+ file_path: @file_path,
25
+ offenses: offenses,
26
+ source: source
27
+ ).call
28
+ end
29
+
30
+ private
31
+
32
+ # @return [RuboCop::Config]
33
+ def rubocop_config
34
+ config_path = ::File.expand_path('../../default.yml', __dir__)
35
+ config = ::RuboCop::ConfigLoader.load_file(config_path)
36
+ ::RuboCop::ConfigLoader.merge_with_default(config, config_path)
37
+ end
38
+
39
+ # @return [Array<Hash>]
40
+ def snippets
41
+ RubyExtractor.new(source: source).call
42
+ end
43
+
44
+ # @return [String]
45
+ def source
46
+ ::File.read(@file_path)
47
+ end
48
+ end
49
+ end
@@ -0,0 +1,41 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'rubocop/cop/legacy/corrector'
4
+
5
+ module Slimcop
6
+ # Apply auto-corrections to Slim file.
7
+ class SlimCorrector
8
+ # @param [String] file_path
9
+ # @param [Array<Hash>] offenses
10
+ # @param [String] source
11
+ def initialize(file_path:, offenses:, source:)
12
+ @file_path = file_path
13
+ @offenses = offenses
14
+ @source = source
15
+ end
16
+
17
+ # @return [String] Rewritten Slim code.
18
+ def call
19
+ ::RuboCop::Cop::Legacy::Corrector.new(source_buffer, corrections).rewrite
20
+ end
21
+
22
+ private
23
+
24
+ # @return [Array<Proc>]
25
+ def corrections
26
+ @offenses.map do |offense|
27
+ lambda do |corrector|
28
+ corrector.import!(offense[:rubocop_offense].corrector, offset: offense[:offset])
29
+ end
30
+ end
31
+ end
32
+
33
+ # @return [Parser::Source::Buffer]
34
+ def source_buffer
35
+ ::Parser::Source::Buffer.new(
36
+ @file_path,
37
+ source: @source
38
+ )
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,38 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Slimcop
4
+ # Collect RuboCop offenses from Slim code.
5
+ class SlimOffenseCollector
6
+ # @param [String] file_path Slim file path
7
+ # @param [RuboCop::Config] rubocop_config
8
+ # @param [String] source Slim code
9
+ def initialize(file_path:, rubocop_config:, source:)
10
+ @file_path = file_path
11
+ @rubocop_config = rubocop_config
12
+ @source = source
13
+ end
14
+
15
+ # @return [Array<Hash>]
16
+ def call
17
+ snippets.flat_map do |snippet|
18
+ RubyOffenseCollector.new(
19
+ file_path: @file_path,
20
+ rubocop_config: @rubocop_config,
21
+ source: snippet[:code]
22
+ ).call.map do |rubocop_offense|
23
+ {
24
+ offset: snippet[:begin_],
25
+ rubocop_offense: rubocop_offense
26
+ }
27
+ end
28
+ end
29
+ end
30
+
31
+ private
32
+
33
+ # @return [Array<Hash>]
34
+ def snippets
35
+ RubyExtractor.new(source: @source).call
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Slimcop
4
+ VERSION = '0.1.0'
5
+ end
data/lib/slimcop.rb ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'slimcop/version'
4
+
5
+ module Slimcop
6
+ autoload :Cli, 'slimcop/cli'
7
+ autoload :RubyExtractor, 'slimcop/ruby_extractor'
8
+ autoload :RubyOffenseCollector, 'slimcop/ruby_offense_collector'
9
+ autoload :Runner, 'slimcop/runner'
10
+ autoload :SlimCorrector, 'slimcop/slim_corrector'
11
+ autoload :SlimOffenseCollector, 'slimcop/slim_offense_collector'
12
+ end
data/slimcop.gemspec ADDED
@@ -0,0 +1,36 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/slimcop/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'slimcop'
7
+ spec.version = Slimcop::VERSION
8
+ spec.authors = ['Ryo Nakamura']
9
+ spec.email = ['r7kamura@gmail.com']
10
+
11
+ spec.summary = 'RuboCop runner for Slim template.'
12
+ spec.homepage = 'https://github.com/r7kamura/slimcop'
13
+ spec.license = 'MIT'
14
+ spec.required_ruby_version = '>= 2.6.0'
15
+
16
+ spec.metadata['homepage_uri'] = spec.homepage
17
+ spec.metadata['source_code_uri'] = spec.homepage
18
+ spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/main/CHANGELOG.md"
19
+
20
+ # Specify which files should be added to the gem when it is released.
21
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
22
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
23
+ `git ls-files -z`.split("\x0").reject do |f|
24
+ (f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
25
+ end
26
+ end
27
+ spec.bindir = 'exe'
28
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
29
+ spec.require_paths = ['lib']
30
+ spec.metadata = {
31
+ 'rubygems_mfa_required' => 'true'
32
+ }
33
+
34
+ spec.add_dependency 'rubocop', '>= 0.87'
35
+ spec.add_dependency 'slimi', '>= 0.1.1'
36
+ end
metadata ADDED
@@ -0,0 +1,95 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: slimcop
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Ryo Nakamura
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2021-12-20 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.87'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0.87'
27
+ - !ruby/object:Gem::Dependency
28
+ name: slimi
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 0.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: 0.1.1
41
+ description:
42
+ email:
43
+ - r7kamura@gmail.com
44
+ executables:
45
+ - slimcop
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - ".rspec"
50
+ - ".rubocop.yml"
51
+ - CHANGELOG.md
52
+ - CODE_OF_CONDUCT.md
53
+ - Gemfile
54
+ - Gemfile.lock
55
+ - LICENSE.txt
56
+ - README.md
57
+ - Rakefile
58
+ - bin/console
59
+ - bin/setup
60
+ - default.yml
61
+ - exe/slimcop
62
+ - lib/slimcop.rb
63
+ - lib/slimcop/cli.rb
64
+ - lib/slimcop/ruby_extractor.rb
65
+ - lib/slimcop/ruby_offense_collector.rb
66
+ - lib/slimcop/runner.rb
67
+ - lib/slimcop/slim_corrector.rb
68
+ - lib/slimcop/slim_offense_collector.rb
69
+ - lib/slimcop/version.rb
70
+ - slimcop.gemspec
71
+ homepage: https://github.com/r7kamura/slimcop
72
+ licenses:
73
+ - MIT
74
+ metadata:
75
+ rubygems_mfa_required: 'true'
76
+ post_install_message:
77
+ rdoc_options: []
78
+ require_paths:
79
+ - lib
80
+ required_ruby_version: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: 2.6.0
85
+ required_rubygems_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ requirements: []
91
+ rubygems_version: 3.1.4
92
+ signing_key:
93
+ specification_version: 4
94
+ summary: RuboCop runner for Slim template.
95
+ test_files: []