hoe-reek 1.2.4 → 1.2.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,11 +0,0 @@
1
- Gemfile
2
- Gemfile.lock
3
- History.rdoc
4
- LICENSE.rdoc
5
- Manifest.txt
6
- README.rdoc
7
- Rakefile
8
- CODE_OF_CONDUCT.rdoc
9
- CONTRIBUTING.md
10
- MAINTENANCE.rdoc
11
- lib/hoe/reek.rb
@@ -1,67 +0,0 @@
1
- = hoe-reek
2
-
3
- code :: https://github.com/saigkill/hoe-reek
4
- docs :: https://github.com/saigkill/hoe-reek/wiki
5
- apidoc :: http://www.rubydoc.info/gems/hoe-reek
6
- bugs :: https://github.com/saigkill/hoe-reek/issues
7
- questions :: https://groups.google.com/forum/#!forum/saigkills-hoe-plugins
8
- openhub statistics :: https://www.openhub.net/p/hoe-reek
9
- authors blog :: https://saigkills-backtrace.de
10
- min. rubyver :: 2.3.0
11
-
12
- last public version :: {<img src="https://badge.fury.io/rb/hoe-reek.png" alt="Last Version" />}[http://rubygems.org/gems/hoe-reek]
13
- downloads latest :: {<img src="https://img.shields.io/gem/dtv/hoe-reek.svg" alt="Downloads latest version" />}[http://rubygems.org/gems/hoe-reek]
14
- downloads all :: {<img src="https://img.shields.io/gem/dt/hoe-reek.svg" alt="Downloads all versions" />}[http://rubygems.org/gems/hoe-reek]
15
- 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/]
16
- code quality :: {<img src="https://api.codeclimate.com/v1/badges/47c41b9c432372b426a2/maintainability" alt="Code Quality" />}[https://codeclimate.com/github/saigkill/hoe-reek/maintainability]
17
- security :: {<img src="https://hakiri.io/github/saigkill/hoe-reek/master.svg" alt="security" />}[https://hakiri.io/github/saigkill/hoe-reek/master]
18
- 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]
19
-
20
- == DESCRIPTION:
21
-
22
- Tasks to integrate the reek code smell engine into your hoe projects. This project continues erics project (https://github.com/erikh/hoe-reek).
23
-
24
- The History.rdoc contains a detailed description on what has changed.
25
-
26
- hoe-reek is released under the GPL3 License, see the file 'License.rdoc' for more information.
27
-
28
- The official web site is:
29
-
30
- https://github.com/saigkill/hoe-reek
31
-
32
- == FEATURES:
33
-
34
- * Integration of Reek into a hoe Rake task.
35
-
36
- 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.
37
-
38
- == SYNOPSIS:
39
-
40
- Use in your Rakefile:
41
-
42
- Hoe.plugin :reek
43
-
44
- Hoe.spec 'yourproject' do
45
- ...
46
- end
47
-
48
- Also add hoe-reek to your requirements and recreate your Gemfile.
49
-
50
- == REQUIREMENTS:
51
-
52
- * reek
53
-
54
- == INSTALL:
55
-
56
- The installation is very easy.
57
-
58
- gem install hoe-reek
59
-
60
- == DEVELOPERS:
61
-
62
- After checking out the source, run:
63
-
64
- $ rake newb
65
-
66
- This task will install any missing dependencies, run the tests/specs,
67
- and generate the RDoc.
data/Rakefile DELETED
@@ -1,72 +0,0 @@
1
- # -*- ruby -*-
2
- # Copyright (C) 2013-2018 Sascha Manns <Sascha.Manns@outlook.de>
3
- # Release:
4
- # Pre-release:
5
- #* update docs
6
- #* Update copyright years if needed, in the following paths:
7
- # + lib/*
8
- #* Check version in lib/hoe-reek.rb
9
- #* Update History.rdoc & NEWS
10
- #* git:manifest
11
- #* bundler:gemfile
12
- #* bundler:gemfile_lock
13
- # x64-mingw32
14
- # x64-mswin32
15
- # x86-mingw32
16
- # x86-mswin32
17
- # ruby
18
- # x86_64-linux
19
- #* bundle_audit:run
20
- #* git -a -m "Anything"
21
- #* git tag x.x.x
22
-
23
- # Release:
24
- #* Create Release in Github
25
- #* rake release
26
- #* send_email
27
- #* clean_pkg
28
-
29
- # Post-release:
30
- #* Bump version
31
- #* Add new Milestone on Github
32
-
33
-
34
- require 'rubygems'
35
- require 'hoe'
36
-
37
- Hoe.plugin :bundler
38
- Hoe.plugin :rdoc
39
- Hoe.plugin :rubygems
40
- Hoe.plugin :version
41
-
42
-
43
- ###########################################DEVELOPING ZONE##############################################################
44
- # rubocop:disable Metrics/LineLength
45
- Hoe.spec 'hoe-reek' do
46
- developer('Sascha Manns', 'Sascha.Manns@outlook.de')
47
- developer('Erik Hollensbe', 'erik@hollensbe.org')
48
-
49
- license 'GPL-3.0' # this should match the license in the README
50
- require_ruby_version '>= 2.3.0'
51
-
52
- self.history_file = 'History.rdoc'
53
- self.readme_file = 'README.rdoc'
54
- self.extra_rdoc_files = FileList['*.rdoc'].to_a
55
- self.post_install_message = 'Please file bugreports and feature requests on: https://github.com/saigkill/hoe-reek/issues'
56
-
57
- dependency 'bundler', '~> 1.16'
58
- dependency 'reek', '~> 4.8'
59
-
60
- extra_dev_deps << ['coveralls', '~> 0.8']
61
- extra_dev_deps << ['hoe-bundler', '~> 1.4']
62
- extra_dev_deps << ['hoe-rubygems', '~> 1.0']
63
- extra_dev_deps << ['hoe-version', '~> 1.2']
64
- extra_dev_deps << ['rake', '~> 12.3']
65
- extra_dev_deps << ['rdoc', '~> 6.0']
66
- extra_dev_deps << ['rspec', '~> 3.7']
67
- end
68
-
69
- ##################################################SETUP ZONE############################################################
70
-
71
-
72
- # vim: syntax=ruby