hoe-reek 1.2.1 → 1.2.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/{History.rdoc → CHANGELOG.md} +38 -12
- data/CONTRIBUTING.md +21 -0
- data/LICENSE.md +636 -0
- data/MAINTENANCE.md +19 -0
- data/README.md +75 -0
- data/lib/hoe/reek.rb +14 -5
- metadata +35 -207
- data/Gemfile +0 -25
- data/Gemfile.lock +0 -122
- data/LICENSE.rdoc +0 -619
- data/Manifest.txt +0 -9
- data/NEWS +0 -63
- data/README.rdoc +0 -154
- data/Rakefile +0 -55
- data/STATUS.rdoc +0 -23
data/Manifest.txt
DELETED
data/NEWS
DELETED
@@ -1,63 +0,0 @@
|
|
1
|
-
===============================================================================
|
2
|
-
hoe-reek 1.2.1 - 2017-11-03
|
3
|
-
===============================================================================
|
4
|
-
|
5
|
-
hoe-reek 1.2.1 is the culmination of one days' work by 1 developer.
|
6
|
-
|
7
|
-
New Features:
|
8
|
-
|
9
|
-
* Nothing yet
|
10
|
-
|
11
|
-
|
12
|
-
Enhancements:
|
13
|
-
|
14
|
-
* Nothing yet
|
15
|
-
|
16
|
-
|
17
|
-
Notable Bugs Fixed:
|
18
|
-
|
19
|
-
* Changed documentation from publican to daps
|
20
|
-
|
21
|
-
|
22
|
-
===============================================================================
|
23
|
-
SOURCES / PACKAGES
|
24
|
-
===============================================================================
|
25
|
-
|
26
|
-
Sources
|
27
|
-
-------
|
28
|
-
|
29
|
-
* hoe-reek 1.2.1 Tarballs:
|
30
|
-
https://launchpad.net/hoe-reek/1.x/1.2.1/+download/hoe-reek-1.2.1.tar.xz
|
31
|
-
|
32
|
-
Packages
|
33
|
-
--------
|
34
|
-
|
35
|
-
Download and installation information is available here:
|
36
|
-
|
37
|
-
* https://saigkill.github.io/hoe-reek/about/
|
38
|
-
|
39
|
-
Gems:
|
40
|
-
|
41
|
-
* https://rubygems.org/gems/hoe-reek
|
42
|
-
|
43
|
-
===============================================================================
|
44
|
-
REPORT BUGS - HELP THE PROJECT - GROW THE COMMUNITY
|
45
|
-
===============================================================================
|
46
|
-
|
47
|
-
If you encounter any bad behavior with this release, please do not
|
48
|
-
hesitate to file bugs!
|
49
|
-
|
50
|
-
* https://bugs.launchpad.net/hoe-reek
|
51
|
-
|
52
|
-
|
53
|
-
===============================================================================
|
54
|
-
VALUED HOE-REEK CONTRIBUTORS
|
55
|
-
===============================================================================
|
56
|
-
|
57
|
-
Contributors For This Release
|
58
|
-
-----------------------------
|
59
|
-
|
60
|
-
The following people directly contributed to the release of this version
|
61
|
-
of hoe-reek. Without their help, there would be no release!
|
62
|
-
|
63
|
-
Sascha Manns
|
data/README.rdoc
DELETED
@@ -1,154 +0,0 @@
|
|
1
|
-
= hoe-reek
|
2
|
-
|
3
|
-
code :: https://launchpad.net/hoe-reek
|
4
|
-
docs :: https://saigkill.github.io/hoe-reek/about/
|
5
|
-
apidoc :: http://www.rubydoc.info/gems/hoe-reek
|
6
|
-
bugs :: https://bugs.launchpad.net/hoe-reek
|
7
|
-
questions :: https://answers.launchpad.net/hoe-reek
|
8
|
-
feature requests :: https://blueprints.launchpad.net/hoe-reek
|
9
|
-
openhub statistics :: https://www.openhub.net/p/hoe-reek
|
10
|
-
authors blog :: https://saigkill.tuxfamily.org
|
11
|
-
min. rubyver :: 2.2.0
|
12
|
-
|
13
|
-
If you're reading this on Github, please keep in mind, that this is just a
|
14
|
-
mirror. The development happens on: https://launchpad.net/hoe-reek.
|
15
|
-
|
16
|
-
== DESCRIPTION:
|
17
|
-
|
18
|
-
Tasks to integrate the reek code smell engine into your hoe projects. This project continues erics project (https://github.com/erikh/hoe-reek).
|
19
|
-
|
20
|
-
The History.rdoc contains a detailed description on what has changed. For most
|
21
|
-
users the NEWS file might be a better place to look since it contains
|
22
|
-
change summaries between the different versions.
|
23
|
-
|
24
|
-
youtube_dlhelper is released under the GPL3 License, see the file 'License.rdoc'
|
25
|
-
for more information.
|
26
|
-
|
27
|
-
The official web site is:
|
28
|
-
|
29
|
-
https://launchpad.net/hoe-reek
|
30
|
-
|
31
|
-
== FEATURES/PROBLEMS:
|
32
|
-
|
33
|
-
* Integration of Reek into a hoe Rake task.
|
34
|
-
|
35
|
-
This Gem was programmed and tested for Linux systems. If anyone would like to make the methods also fit for other OS, i'm happy about Pull requests.
|
36
|
-
|
37
|
-
See the {FAQs}[https://answers.launchpad.net/hoe-reek/+faqs] for checking known issues.
|
38
|
-
See the {status}[https://github.com/saigkill/hoe-reek/blob/master/STATUS.rdoc] of the app.
|
39
|
-
|
40
|
-
== SYNOPSIS:
|
41
|
-
|
42
|
-
Use in your Rakefile:
|
43
|
-
|
44
|
-
Hoe.plugin :reek
|
45
|
-
|
46
|
-
Hoe.spec 'yourproject' do
|
47
|
-
...
|
48
|
-
end
|
49
|
-
|
50
|
-
Also add hoe-reek to your requirements and recreate your Gemfile.
|
51
|
-
|
52
|
-
Read the documentation at: https://saigkill.github.io/hoe-reek/about/
|
53
|
-
|
54
|
-
== REQUIREMENTS:
|
55
|
-
|
56
|
-
* reek
|
57
|
-
|
58
|
-
== INSTALL:
|
59
|
-
|
60
|
-
The installation is very easy.
|
61
|
-
|
62
|
-
gem install hoe-reek
|
63
|
-
|
64
|
-
Read the documentation at: https://saigkill.github.io/hoe-reek/about/
|
65
|
-
|
66
|
-
== DEVELOPERS:
|
67
|
-
|
68
|
-
After checking out the source, run:
|
69
|
-
|
70
|
-
$ rake newb
|
71
|
-
|
72
|
-
This task will install any missing dependencies, run the tests/specs,
|
73
|
-
and generate the RDoc.
|
74
|
-
|
75
|
-
=== IDEAS:
|
76
|
-
|
77
|
-
* Add ideas on: https://blueprints.launchpad.net/hoe-reek
|
78
|
-
|
79
|
-
=== COOL HACKS:
|
80
|
-
|
81
|
-
* Open a bugreport on https://bugs.launchpad.net/hoe-reek.
|
82
|
-
* Please use the -u flag when generating the patch as it makes the patch
|
83
|
-
more readable.
|
84
|
-
* Write a good explanation of what the patch does.
|
85
|
-
* It is better to use git format-patch command: git format-patch HEAD^
|
86
|
-
|
87
|
-
=== CONTRIBUTOR CODE OF CONDUCT:
|
88
|
-
|
89
|
-
As contributors and maintainers of this project, we pledge to respect all
|
90
|
-
people who contribute through reporting issues, posting feature requests,
|
91
|
-
updating documentation, submitting pull requests or patches, and other
|
92
|
-
activities.
|
93
|
-
|
94
|
-
We are committed to making participation in this project a harassment-free
|
95
|
-
experience for everyone, regardless of level of experience, gender, gender
|
96
|
-
identity and expression, sexual orientation, disability, personal
|
97
|
-
appearance, body size, race, age, or religion.
|
98
|
-
|
99
|
-
Examples of unacceptable behavior by participants include the use of sexual
|
100
|
-
language or imagery, derogatory comments or personal attacks, trolling,
|
101
|
-
public or private harassment, insults, or other unprofessional conduct.
|
102
|
-
|
103
|
-
Project maintainers have the right and responsibility to remove, edit, or
|
104
|
-
reject comments, commits, code, wiki edits, issues, and other contributions
|
105
|
-
that are not aligned to this Code of Conduct. Project maintainers who do
|
106
|
-
not follow the Code of Conduct may be removed from the project team.
|
107
|
-
|
108
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
109
|
-
reported by opening an issue or contacting one or more of the project
|
110
|
-
maintainers.
|
111
|
-
|
112
|
-
This Code of Conduct is adapted from the {Contributor Covenant}[http:contributor-covenant.org],
|
113
|
-
version 1.0.0, available at {http://contributor-covenant.org/version/1/0/0/}[http://contributor-covenant.org/version/1/0/0/].
|
114
|
-
|
115
|
-
=== MAINTANANCE POLICY:
|
116
|
-
|
117
|
-
I'm following the Semantic Versioning for its releases: (Major).(Minor).(Patch).
|
118
|
-
|
119
|
-
* Major version: Whenever there is something significant or any backwards
|
120
|
-
incompatible changes.
|
121
|
-
* Minor version: When new, backwards compatible functionality is introduced a
|
122
|
-
minor feature is introduced, or when a set of smaller features is rolled out.
|
123
|
-
* Patch number: When backwards compatible bug fixes are introduced that fix
|
124
|
-
incorrect behavior.
|
125
|
-
* The current stable release will receive security patches and bug fixes
|
126
|
-
(eg. 5.0 -> 5.0.1).
|
127
|
-
* Feature releases will mark the next supported stable release where the minor
|
128
|
-
version is increased numerically by increments of one (eg. 5.0 -> 5.1).
|
129
|
-
|
130
|
-
I encourage everyone to run the latest stable release to ensure that you can
|
131
|
-
easily upgrade to the most secure and feature rich experience. In order to
|
132
|
-
make sure you can easily run the most recent stable release, we are working
|
133
|
-
hard to keep the update process simple and reliable.
|
134
|
-
|
135
|
-
=== STRUCTURE:
|
136
|
-
|
137
|
-
==== BRANCHES:
|
138
|
-
|
139
|
-
===== `master` BRANCH:
|
140
|
-
The master branch is the current edge of development.
|
141
|
-
|
142
|
-
===== `X.X` BRANCH:
|
143
|
-
The X.X branch is the last stable branch. It will used for tarballs.
|
144
|
-
|
145
|
-
===== MERGE REQUESTS:
|
146
|
-
If you want to merge your branch with the trunk, join the team.
|
147
|
-
|
148
|
-
Please base all Merge requests off the `master` branch. Merges to
|
149
|
-
`X.X` only occur through the `master` branch.
|
150
|
-
|
151
|
-
== PROBLEM REPORTING:
|
152
|
-
|
153
|
-
Bugs should be reported to https://bugs.launchpad.net/hoe-reek. You will need to create an
|
154
|
-
account for yourself.
|
data/Rakefile
DELETED
@@ -1,55 +0,0 @@
|
|
1
|
-
# -*- ruby -*-
|
2
|
-
# Release:
|
3
|
-
# See README.rdoc.release
|
4
|
-
|
5
|
-
require 'rubygems'
|
6
|
-
require 'hoe'
|
7
|
-
|
8
|
-
Hoe.plugin :bundler
|
9
|
-
Hoe.plugin :doofus
|
10
|
-
#Hoe.plugin :git
|
11
|
-
Hoe.plugin :manns
|
12
|
-
Hoe.plugin :rdoc
|
13
|
-
Hoe.plugin :reek
|
14
|
-
Hoe.plugin :rubocop
|
15
|
-
Hoe.plugin :rubygems
|
16
|
-
Hoe.plugin :travis
|
17
|
-
Hoe.plugin :version
|
18
|
-
|
19
|
-
|
20
|
-
###########################################DEVELOPING ZONE##############################################################
|
21
|
-
# rubocop:disable Metrics/LineLength
|
22
|
-
Hoe.spec 'hoe-reek' do
|
23
|
-
developer('Sascha Manns', 'Sascha.Manns@mailbox.org')
|
24
|
-
developer('Erik Hollensbe', 'erik@hollensbe.org')
|
25
|
-
|
26
|
-
license 'MIT' # this should match the license in the README
|
27
|
-
require_ruby_version '>= 2.2.0'
|
28
|
-
|
29
|
-
self.history_file = 'History.rdoc'
|
30
|
-
self.readme_file = 'README.rdoc'
|
31
|
-
self.extra_rdoc_files = FileList['*.rdoc'].to_a
|
32
|
-
self.post_install_message = 'Please file bugreports and feature requests on: https://bugs.launchpad.net/hoe-reek'
|
33
|
-
|
34
|
-
dependency 'bundler', '~> 1.16'
|
35
|
-
dependency 'reek', '~> 4.7'
|
36
|
-
|
37
|
-
extra_dev_deps << ['coveralls', '~> 0.8']
|
38
|
-
extra_dev_deps << ['hoe-bundler', '~> 1.3']
|
39
|
-
extra_dev_deps << ['hoe-doofus', '~> 1.0']
|
40
|
-
extra_dev_deps << ['hoe-git', '~> 1.6']
|
41
|
-
extra_dev_deps << ['hoe-manns', '~> 1.6']
|
42
|
-
extra_dev_deps << ['hoe-reek', '~> 1.1']
|
43
|
-
extra_dev_deps << ['hoe-rubocop', '~> 1.0']
|
44
|
-
extra_dev_deps << ['hoe-rubygems', '~> 1.0']
|
45
|
-
extra_dev_deps << ['hoe-travis', '~> 1.3']
|
46
|
-
extra_dev_deps << ['hoe-version', '~> 1.2']
|
47
|
-
extra_dev_deps << ['rake', '~> 12.1']
|
48
|
-
extra_dev_deps << ['rdoc', '~> 5.1']
|
49
|
-
extra_dev_deps << ['rspec', '~> 3.7']
|
50
|
-
end
|
51
|
-
|
52
|
-
##################################################SETUP ZONE############################################################
|
53
|
-
|
54
|
-
|
55
|
-
# vim: syntax=ruby
|
data/STATUS.rdoc
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
= Misc status badges
|
2
|
-
|
3
|
-
== Gem
|
4
|
-
last public version :: {<img src="https://badge.fury.io/rb/hoe-reek.png" alt="Last Version" />}[http://rubygems.org/gems/hoe-reek]
|
5
|
-
downloads latest :: {<img src="https://img.shields.io/gem/dtv/hoe-reek.svg" alt="Downloads latest version" />}[http://rubygems.org/gems/hoe-reek]
|
6
|
-
downloads all :: {<img src="https://img.shields.io/gem/dt/hoe-reek.svg" alt="Downloads all versions" />}[http://rubygems.org/gems/hoe-reek]
|
7
|
-
|
8
|
-
== Code Review
|
9
|
-
code quality :: {<img src="https://scrutinizer-ci.com/g/saigkill/hoe-reek/badges/quality-score.png?b=master" />}[https://scrutinizer-ci.com/g/saigkill/hoe-reek/]
|
10
|
-
code quality :: {<img src="https://d3s6mut3hikguw.cloudfront.net/github/saigkill/hoe-reek/badges/gpa.svg" alt="Code Quality" />}[https://codeclimate.com/github/saigkill/hoe-reek]
|
11
|
-
|
12
|
-
== Security
|
13
|
-
security :: {<img src="https://hakiri.io/github/saigkill/hoe-reek/master.svg" alt="security" />}[https://hakiri.io/github/saigkill/hoe-reek/master]
|
14
|
-
|
15
|
-
== Dependencies
|
16
|
-
dependency check :: {<img src="https://gemnasium.com/saigkill/hoe-reek.svg" alt="Dependency Status" />}[https://gemnasium.com/saigkill/hoe-reek]
|
17
|
-
|
18
|
-
== Documentation
|
19
|
-
documentation quality :: {<img src="http://inch-ci.org/github/saigkill/hoe-reek.svg?branch=master" alt="Documentation Quality" />}[http://inch-ci.org/github/saigkill/hoe-reek]
|
20
|
-
|
21
|
-
== Donations
|
22
|
-
donations :: {<img src="https://pledgie.com/campaigns/30306.png?skin_name=chrome" alt="Donations" />}[https://pledgie.com/campaigns/30306]
|
23
|
-
donations :: {<img src="https://saigkill.tuxfamily.org/dotclear/public/Amazon.png" alt="Donations" />}[http://www.amazon.de/registry/wishlist/D75HOEQ00BDD]
|