hoe-reek 1.2.2 → 1.2.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,9 +0,0 @@
1
- Gemfile
2
- Gemfile.lock
3
- History.rdoc
4
- LICENSE.rdoc
5
- Manifest.txt
6
- README.rdoc
7
- Rakefile
8
- NEWS
9
- lib/hoe/reek.rb
data/NEWS DELETED
@@ -1,127 +0,0 @@
1
- ===============================================================================
2
- hoe-reek 1.2.2 - 2017-11-06
3
- ===============================================================================
4
-
5
- hoe-reek 1.2.2 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
- * Updated dependency (reek)
20
-
21
-
22
- ===============================================================================
23
- SOURCES / PACKAGES
24
- ===============================================================================
25
-
26
- Sources
27
- -------
28
-
29
- * hoe-reek 1.2.2 Tarballs:
30
- https://launchpad.net/hoe-reek/1.x/1.2.2/+download/hoe-reek-1.2.2.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
64
-
65
- ===============================================================================
66
- hoe-reek 1.2.1 - 2017-11-03
67
- ===============================================================================
68
-
69
- hoe-reek 1.2.1 is the culmination of one days' work by 1 developer.
70
-
71
- New Features:
72
-
73
- * Nothing yet
74
-
75
-
76
- Enhancements:
77
-
78
- * Nothing yet
79
-
80
-
81
- Notable Bugs Fixed:
82
-
83
- * Changed documentation from publican to daps
84
-
85
-
86
- ===============================================================================
87
- SOURCES / PACKAGES
88
- ===============================================================================
89
-
90
- Sources
91
- -------
92
-
93
- * hoe-reek 1.2.1 Tarballs:
94
- https://launchpad.net/hoe-reek/1.x/1.2.1/+download/hoe-reek-1.2.1.tar.xz
95
-
96
- Packages
97
- --------
98
-
99
- Download and installation information is available here:
100
-
101
- * https://saigkill.github.io/hoe-reek/about/
102
-
103
- Gems:
104
-
105
- * https://rubygems.org/gems/hoe-reek
106
-
107
- ===============================================================================
108
- REPORT BUGS - HELP THE PROJECT - GROW THE COMMUNITY
109
- ===============================================================================
110
-
111
- If you encounter any bad behavior with this release, please do not
112
- hesitate to file bugs!
113
-
114
- * https://bugs.launchpad.net/hoe-reek
115
-
116
-
117
- ===============================================================================
118
- VALUED HOE-REEK CONTRIBUTORS
119
- ===============================================================================
120
-
121
- Contributors For This Release
122
- -----------------------------
123
-
124
- The following people directly contributed to the release of this version
125
- of hoe-reek. Without their help, there would be no release!
126
-
127
- Sascha Manns
@@ -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
- hoe-reek 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,51 +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 :rubygems
14
- Hoe.plugin :travis
15
- Hoe.plugin :version
16
-
17
-
18
- ###########################################DEVELOPING ZONE##############################################################
19
- # rubocop:disable Metrics/LineLength
20
- Hoe.spec 'hoe-reek' do
21
- developer('Sascha Manns', 'Sascha.Manns@mailbox.org')
22
- developer('Erik Hollensbe', 'erik@hollensbe.org')
23
-
24
- license 'GPL-3.0' # this should match the license in the README
25
- require_ruby_version '>= 2.2.0'
26
-
27
- self.history_file = 'History.rdoc'
28
- self.readme_file = 'README.rdoc'
29
- self.extra_rdoc_files = FileList['*.rdoc'].to_a
30
- self.post_install_message = 'Please file bugreports and feature requests on: https://bugs.launchpad.net/hoe-reek'
31
-
32
- dependency 'bundler', '~> 1.16'
33
- dependency 'reek', '~> 4.7'
34
-
35
- extra_dev_deps << ['coveralls', '~> 0.8']
36
- extra_dev_deps << ['hoe-bundler', '~> 1.3']
37
- extra_dev_deps << ['hoe-doofus', '~> 1.0']
38
- extra_dev_deps << ['hoe-git', '~> 1.6']
39
- extra_dev_deps << ['hoe-manns', '~> 1.6']
40
- extra_dev_deps << ['hoe-rubygems', '~> 1.0']
41
- extra_dev_deps << ['hoe-travis', '~> 1.3']
42
- extra_dev_deps << ['hoe-version', '~> 1.2']
43
- extra_dev_deps << ['rake', '~> 12.1']
44
- extra_dev_deps << ['rdoc', '~> 5.1']
45
- extra_dev_deps << ['rspec', '~> 3.7']
46
- end
47
-
48
- ##################################################SETUP ZONE############################################################
49
-
50
-
51
- # vim: syntax=ruby
@@ -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://api.codeclimate.com/v1/badges/47c41b9c432372b426a2/maintainability" alt="Code Quality" />}[https://codeclimate.com/github/saigkill/hoe-reek/maintainability]
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]