hoe-rubocop 1.0.8 → 1.0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CODE_OF_CONDUCT.rdoc +26 -0
- data/CONTRIBUTING.md +13 -25
- data/DEVELOPING.rdoc +25 -0
- data/Gemfile +20 -26
- data/Gemfile.lock +40 -68
- data/History.rdoc +6 -0
- data/LICENSE.rdoc +619 -24
- data/MAINTENANCE.rdoc +19 -0
- data/Manifest.txt +5 -11
- data/NEWS +63 -0
- data/README.rdoc +25 -42
- data/Rakefile +10 -31
- data/lib/hoe/rubocop.rb +14 -6
- metadata +46 -122
- data/.autotest +0 -25
- data/.codeclimate.yml +0 -8
- data/.coveralls.yml +0 -2
- data/.gemnasium.yml +0 -5
- data/.rspec +0 -2
- data/.rubocop.yml +0 -38
- data/.scrutinizer.yml +0 -21
- data/.travis.yml +0 -29
- data/CODE_OF_CONDUCT.md +0 -17
- data/data/hoe-rubocop/rubygems.png +0 -0
data/.autotest
DELETED
@@ -1,25 +0,0 @@
|
|
1
|
-
# -*- ruby -*-
|
2
|
-
|
3
|
-
require "autotest/restart"
|
4
|
-
|
5
|
-
# Autotest.add_hook :initialize do |at|
|
6
|
-
# at.testlib = "minitest/unit"
|
7
|
-
#
|
8
|
-
# at.extra_files << "../some/external/dependency.rb"
|
9
|
-
#
|
10
|
-
# at.libs << ":../some/external"
|
11
|
-
#
|
12
|
-
# at.add_exception "vendor"
|
13
|
-
#
|
14
|
-
# at.add_mapping(/dependency.rb/) do |f, _|
|
15
|
-
# at.files_matching(/test_.*rb$/)
|
16
|
-
# end
|
17
|
-
#
|
18
|
-
# %w(TestA TestB).each do |klass|
|
19
|
-
# at.extra_class_map[klass] = "test/test_misc.rb"
|
20
|
-
# end
|
21
|
-
# end
|
22
|
-
|
23
|
-
# Autotest.add_hook :run_command do |at|
|
24
|
-
# system "rake build"
|
25
|
-
# end
|
data/.codeclimate.yml
DELETED
data/.coveralls.yml
DELETED
data/.gemnasium.yml
DELETED
@@ -1,5 +0,0 @@
|
|
1
|
-
# api_endpoint: http://private-77f5-gemnasium.apiary-mock.com
|
2
|
-
api_key: 0f4473f5825f325227eb7a3a9a3425af # You personal (secret) API key. Get it at https://gemnasium.com/settings/api_access
|
3
|
-
project_name: hoe-rubocop # A name to remember your project.
|
4
|
-
project_slug: saigkill/hoe-rubocop # Unique slug for this project. Get it on the "project settings" page.
|
5
|
-
project_branch: master # /!\ If you don't use git, remove this line
|
data/.rspec
DELETED
data/.rubocop.yml
DELETED
@@ -1,38 +0,0 @@
|
|
1
|
-
AllCops:
|
2
|
-
|
3
|
-
Include:
|
4
|
-
- 'lib/**/*.rb'
|
5
|
-
|
6
|
-
Exclude:
|
7
|
-
- 'Rakefile'
|
8
|
-
|
9
|
-
DisplayCopNames: true
|
10
|
-
|
11
|
-
Metrics/LineLength:
|
12
|
-
Enabled: true
|
13
|
-
Max: 80
|
14
|
-
|
15
|
-
Metrics/CyclomaticComplexity:
|
16
|
-
Severity: warning
|
17
|
-
|
18
|
-
Style/PerlBackrefs:
|
19
|
-
AutoCorrect: true
|
20
|
-
|
21
|
-
Metrics/ParameterLists:
|
22
|
-
Max: 10
|
23
|
-
CountKeywordArgs: true
|
24
|
-
|
25
|
-
Metrics/ClassLength:
|
26
|
-
CountComments: false # count full line comments?
|
27
|
-
Max: 150
|
28
|
-
|
29
|
-
Metrics/ModuleLength:
|
30
|
-
CountComments: false # count full line comments?
|
31
|
-
Max: 190
|
32
|
-
|
33
|
-
Metrics/MethodLength:
|
34
|
-
CountComments: false # count full line comments?
|
35
|
-
Max: 20
|
36
|
-
|
37
|
-
Style/RedundantReturn:
|
38
|
-
Enabled: false
|
data/.scrutinizer.yml
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
build:
|
2
|
-
environment:
|
3
|
-
ruby: '2.2.3'
|
4
|
-
|
5
|
-
checks:
|
6
|
-
ruby:
|
7
|
-
code_rating: true
|
8
|
-
duplicate_code: true
|
9
|
-
style_while_until_do: true
|
10
|
-
style_signal_exception:
|
11
|
-
enforced_style: semantic
|
12
|
-
style_redundant_exception: true
|
13
|
-
style_raise_args:
|
14
|
-
enforced_style: exploded
|
15
|
-
style_predicate_name: true
|
16
|
-
style_comment_annotation: true
|
17
|
-
rails_output: true
|
18
|
-
|
19
|
-
filter:
|
20
|
-
excluded_paths:
|
21
|
-
- 'test/*'
|
data/.travis.yml
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
language: ruby
|
2
|
-
rvm:
|
3
|
-
- 2.2.0
|
4
|
-
- 2.2.1
|
5
|
-
- 2.2.2
|
6
|
-
- 2.2.3
|
7
|
-
|
8
|
-
dist: trusty
|
9
|
-
|
10
|
-
os:
|
11
|
-
- linux
|
12
|
-
|
13
|
-
env:
|
14
|
-
global:
|
15
|
-
- JRUBY_OPTS=-Xcext.enabled=true
|
16
|
-
- CI=true
|
17
|
-
- TRAVIS=true
|
18
|
-
- LANG=en_US.UTF-8
|
19
|
-
- LC_ALL=en_US.UTF-8
|
20
|
-
|
21
|
-
before_install:
|
22
|
-
- gem install bundler
|
23
|
-
|
24
|
-
after_success:
|
25
|
-
- CI=true TRAVIS=true coveralls --verbose
|
26
|
-
|
27
|
-
notifications:
|
28
|
-
email:
|
29
|
-
- Sascha.Manns@mailbox.org
|
data/CODE_OF_CONDUCT.md
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
# @markup markdown
|
2
|
-
# @title Code of Conduct
|
3
|
-
# @author Sascha Manns
|
4
|
-
|
5
|
-
# Contributor Code of Conduct
|
6
|
-
|
7
|
-
As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
|
8
|
-
|
9
|
-
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
|
10
|
-
|
11
|
-
Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
|
12
|
-
|
13
|
-
Project maintainers 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. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
|
14
|
-
|
15
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
|
16
|
-
|
17
|
-
This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
|
Binary file
|