hoe-rubocop 1.0.7 → 1.0.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +82 -0
- data/CONTRIBUTING.md +14 -18
- data/LICENSE.md +636 -0
- data/MAINTENANCE.md +19 -0
- data/README.md +79 -0
- data/lib/hoe/rubocop.rb +14 -6
- metadata +35 -231
- 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 -39
- data/.scrutinizer.yml +0 -21
- data/.travis.yml +0 -29
- data/CODE_OF_CONDUCT.md +0 -17
- data/Gemfile +0 -26
- data/Gemfile.lock +0 -94
- data/History.rdoc +0 -48
- data/LICENSE.rdoc +0 -24
- data/Manifest.txt +0 -20
- data/README.rdoc +0 -92
- data/Rakefile +0 -71
- data/config.reek +0 -111
- 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,39 +0,0 @@
|
|
1
|
-
AllCops:
|
2
|
-
|
3
|
-
Include:
|
4
|
-
- 'lib/**/*.rb'
|
5
|
-
- 'test/**/*.rb'
|
6
|
-
|
7
|
-
Exclude:
|
8
|
-
- 'Rakefile'
|
9
|
-
|
10
|
-
DisplayCopNames: true
|
11
|
-
|
12
|
-
Metrics/LineLength:
|
13
|
-
Enabled: true
|
14
|
-
Max: 80
|
15
|
-
|
16
|
-
Metrics/CyclomaticComplexity:
|
17
|
-
Severity: warning
|
18
|
-
|
19
|
-
Style/PerlBackrefs:
|
20
|
-
AutoCorrect: true
|
21
|
-
|
22
|
-
Metrics/ParameterLists:
|
23
|
-
Max: 10
|
24
|
-
CountKeywordArgs: true
|
25
|
-
|
26
|
-
Metrics/ClassLength:
|
27
|
-
CountComments: false # count full line comments?
|
28
|
-
Max: 150
|
29
|
-
|
30
|
-
Metrics/ModuleLength:
|
31
|
-
CountComments: false # count full line comments?
|
32
|
-
Max: 190
|
33
|
-
|
34
|
-
Metrics/MethodLength:
|
35
|
-
CountComments: false # count full line comments?
|
36
|
-
Max: 20
|
37
|
-
|
38
|
-
Style/RedundantReturn:
|
39
|
-
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
|
-
- samannsml@directbox.com
|
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/)
|
data/Gemfile
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
# -*- ruby -*-
|
2
|
-
|
3
|
-
# DO NOT EDIT THIS FILE. Instead, edit Rakefile, and run `rake bundler:gemfile`.
|
4
|
-
|
5
|
-
source "https://rubygems.org/"
|
6
|
-
|
7
|
-
gem "bundler", "~>1.11"
|
8
|
-
gem "rubocop", "~>0.42"
|
9
|
-
|
10
|
-
gem "hoe-highline", "~>0.2", :group => [:development, :test]
|
11
|
-
gem "rdoc", "~>4.0", :group => [:development, :test]
|
12
|
-
gem "hoe-bundler", "~>1.3", :group => [:development, :test]
|
13
|
-
gem "hoe-deveiate", "~>0.7", :group => [:development, :test]
|
14
|
-
gem "hoe-doofus", "~>1.0", :group => [:development, :test]
|
15
|
-
gem "hoe-git", "~>1.6", :group => [:development, :test]
|
16
|
-
gem "hoe-manifest", "~>0.1", :group => [:development, :test]
|
17
|
-
gem "hoe-manns", "~>1.5", :group => [:development, :test]
|
18
|
-
gem "hoe-rubygems", "~>1.0", :group => [:development, :test]
|
19
|
-
gem "hoe-seattlerb", "~>1.3", :group => [:development, :test]
|
20
|
-
gem "hoe-version", "~>1.2", :group => [:development, :test]
|
21
|
-
gem "parseconfig", "~>1.0", :group => [:development, :test]
|
22
|
-
gem "rake", "~>11.2", :group => [:development, :test]
|
23
|
-
gem "rspec", "~>3.5", :group => [:development, :test]
|
24
|
-
gem "hoe", "~>3.15", :group => [:development, :test]
|
25
|
-
|
26
|
-
# vim: syntax=ruby
|
data/Gemfile.lock
DELETED
@@ -1,94 +0,0 @@
|
|
1
|
-
GEM
|
2
|
-
remote: https://rubygems.org/
|
3
|
-
specs:
|
4
|
-
ast (2.3.0)
|
5
|
-
bundler-audit (0.5.0)
|
6
|
-
bundler (~> 1.2)
|
7
|
-
thor (~> 0.18)
|
8
|
-
diff-lcs (1.3)
|
9
|
-
highline (1.7.8)
|
10
|
-
hoe (3.16.0)
|
11
|
-
rake (>= 0.8, < 13.0)
|
12
|
-
hoe-bundler (1.3.0)
|
13
|
-
hoe (>= 2.2.0)
|
14
|
-
hoe-deveiate (0.8.0)
|
15
|
-
hoe (~> 3.13)
|
16
|
-
hoe-highline (~> 0.2)
|
17
|
-
hoe-mercurial (~> 1.4)
|
18
|
-
mail (~> 2.6)
|
19
|
-
rdoc (~> 4.2)
|
20
|
-
rspec (~> 3.2)
|
21
|
-
hoe-doofus (1.0.0)
|
22
|
-
hoe-git (1.6.0)
|
23
|
-
hoe-highline (0.2.1)
|
24
|
-
highline (~> 1.6)
|
25
|
-
hoe (~> 3.11)
|
26
|
-
hoe-manifest (0.1.0)
|
27
|
-
hoe-manns (1.6.1)
|
28
|
-
bundler-audit (~> 0.5)
|
29
|
-
parseconfig (~> 1.0)
|
30
|
-
rainbow (~> 2.1)
|
31
|
-
hoe-mercurial (1.4.1)
|
32
|
-
hoe (~> 3.9)
|
33
|
-
hoe-rubygems (1.0.0)
|
34
|
-
hoe-seattlerb (1.3.5)
|
35
|
-
hoe-version (1.2.0)
|
36
|
-
mail (2.6.4)
|
37
|
-
mime-types (>= 1.16, < 4)
|
38
|
-
mime-types (3.1)
|
39
|
-
mime-types-data (~> 3.2015)
|
40
|
-
mime-types-data (3.2016.0521)
|
41
|
-
parseconfig (1.0.8)
|
42
|
-
parser (2.4.0.0)
|
43
|
-
ast (~> 2.2)
|
44
|
-
powerpack (0.1.1)
|
45
|
-
rainbow (2.2.1)
|
46
|
-
rake (11.3.0)
|
47
|
-
rdoc (4.3.0)
|
48
|
-
rspec (3.5.0)
|
49
|
-
rspec-core (~> 3.5.0)
|
50
|
-
rspec-expectations (~> 3.5.0)
|
51
|
-
rspec-mocks (~> 3.5.0)
|
52
|
-
rspec-core (3.5.4)
|
53
|
-
rspec-support (~> 3.5.0)
|
54
|
-
rspec-expectations (3.5.0)
|
55
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
56
|
-
rspec-support (~> 3.5.0)
|
57
|
-
rspec-mocks (3.5.0)
|
58
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
59
|
-
rspec-support (~> 3.5.0)
|
60
|
-
rspec-support (3.5.0)
|
61
|
-
rubocop (0.47.1)
|
62
|
-
parser (>= 2.3.3.1, < 3.0)
|
63
|
-
powerpack (~> 0.1)
|
64
|
-
rainbow (>= 1.99.1, < 3.0)
|
65
|
-
ruby-progressbar (~> 1.7)
|
66
|
-
unicode-display_width (~> 1.0, >= 1.0.1)
|
67
|
-
ruby-progressbar (1.8.1)
|
68
|
-
thor (0.19.4)
|
69
|
-
unicode-display_width (1.1.3)
|
70
|
-
|
71
|
-
PLATFORMS
|
72
|
-
ruby
|
73
|
-
|
74
|
-
DEPENDENCIES
|
75
|
-
bundler (~> 1.11)
|
76
|
-
hoe (~> 3.15)
|
77
|
-
hoe-bundler (~> 1.3)
|
78
|
-
hoe-deveiate (~> 0.7)
|
79
|
-
hoe-doofus (~> 1.0)
|
80
|
-
hoe-git (~> 1.6)
|
81
|
-
hoe-highline (~> 0.2)
|
82
|
-
hoe-manifest (~> 0.1)
|
83
|
-
hoe-manns (~> 1.5)
|
84
|
-
hoe-rubygems (~> 1.0)
|
85
|
-
hoe-seattlerb (~> 1.3)
|
86
|
-
hoe-version (~> 1.2)
|
87
|
-
parseconfig (~> 1.0)
|
88
|
-
rake (~> 11.2)
|
89
|
-
rdoc (~> 4.0)
|
90
|
-
rspec (~> 3.5)
|
91
|
-
rubocop (~> 0.42)
|
92
|
-
|
93
|
-
BUNDLED WITH
|
94
|
-
1.13.6
|
data/History.rdoc
DELETED
@@ -1,48 +0,0 @@
|
|
1
|
-
=== 1.0.7 / 2016-08-06
|
2
|
-
|
3
|
-
* 1 minor enhancement
|
4
|
-
|
5
|
-
* updated dependencies by gemnasium
|
6
|
-
|
7
|
-
=== 1.0.6 / 2016-02-08
|
8
|
-
|
9
|
-
* 1 minor enhancement
|
10
|
-
|
11
|
-
* updated dependencies by gemnasium
|
12
|
-
|
13
|
-
=== 1.0.5 / 2016-01-27
|
14
|
-
|
15
|
-
* 1 minor enhancement
|
16
|
-
|
17
|
-
* updated dependencies by gemnasium
|
18
|
-
|
19
|
-
=== 1.0.3 / 2015-12-11
|
20
|
-
|
21
|
-
* 1 minor enhancement
|
22
|
-
|
23
|
-
* fixed typo in define_rubocop_tasks
|
24
|
-
|
25
|
-
=== 1.0.2 / 2015-12-11
|
26
|
-
|
27
|
-
* 1 minor enhancement
|
28
|
-
|
29
|
-
* updated rubocop dependency to 0.35
|
30
|
-
|
31
|
-
=== 1.0.1 / 2015-10-02
|
32
|
-
|
33
|
-
* 1 patch issue
|
34
|
-
|
35
|
-
* refactored code to match GitLab
|
36
|
-
|
37
|
-
=== 1.0.0 / 2015-09-26
|
38
|
-
|
39
|
-
* 1 major enhancement
|
40
|
-
|
41
|
-
* first stable release
|
42
|
-
|
43
|
-
=== 0.1.0 / 2015-09-25
|
44
|
-
|
45
|
-
* 1 major enhancement
|
46
|
-
|
47
|
-
* Birthday!
|
48
|
-
|
data/LICENSE.rdoc
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
= LICENSE:
|
2
|
-
|
3
|
-
(The MIT License)
|
4
|
-
|
5
|
-
Copyright (c) 2015-2016 Sascha Manns <samannsml@directbox.com>
|
6
|
-
|
7
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
8
|
-
a copy of this software and associated documentation files (the
|
9
|
-
'Software'), to deal in the Software without restriction, including
|
10
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
11
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
12
|
-
permit persons to whom the Software is furnished to do so, subject to
|
13
|
-
the following conditions:
|
14
|
-
|
15
|
-
The above copyright notice and this permission notice shall be
|
16
|
-
included in all copies or substantial portions of the Software.
|
17
|
-
|
18
|
-
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
19
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
20
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
21
|
-
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
22
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
23
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
24
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/Manifest.txt
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
.autotest
|
2
|
-
.codeclimate.yml
|
3
|
-
.coveralls.yml
|
4
|
-
.gemnasium.yml
|
5
|
-
.rspec
|
6
|
-
.rubocop.yml
|
7
|
-
.scrutinizer.yml
|
8
|
-
.travis.yml
|
9
|
-
CODE_OF_CONDUCT.md
|
10
|
-
CONTRIBUTING.md
|
11
|
-
Gemfile
|
12
|
-
Gemfile.lock
|
13
|
-
History.rdoc
|
14
|
-
LICENSE.rdoc
|
15
|
-
Manifest.txt
|
16
|
-
README.rdoc
|
17
|
-
Rakefile
|
18
|
-
config.reek
|
19
|
-
data/hoe-rubocop/rubygems.png
|
20
|
-
lib/hoe/rubocop.rb
|
data/README.rdoc
DELETED
@@ -1,92 +0,0 @@
|
|
1
|
-
= hoe-rubocop
|
2
|
-
|
3
|
-
home :: http://saigkill.tuxfamily.org
|
4
|
-
code :: http://github.com/saigkill/hoe-rubocop
|
5
|
-
docu (en) :: https://saigkill.tuxfamily.org/dotclear/docs/hoe-rubocop/en-US/html/index.html
|
6
|
-
docu (de) :: https://saigkill.tuxfamily.org/dotclear/docs/hoe-rubocop/de-DE/html/index.html
|
7
|
-
apidoc :: http://www.rubydoc.info/gems/hoe-rubocop
|
8
|
-
bugs :: https://github.com/saigkill/hoe-rubocop/issues
|
9
|
-
min. rubyver :: 2.2.0
|
10
|
-
last public version :: {<img src="https://badge.fury.io/rb/hoe-rubocop.png" alt="Build Status" />}[http://rubygems.org/gems/hoe-rubocop]
|
11
|
-
downloads latest :: {<img src="https://img.shields.io/gem/dtv/hoe-rubocop.svg" alt="Build Status" />}[http://rubygems.org/gems/hoe-rubocop]
|
12
|
-
downloads all :: {<img src="https://img.shields.io/gem/dt/hoe-rubocop.svg" alt="Build Status" />}[http://rubygems.org/gems/hoe-rubocop]
|
13
|
-
continuous integration :: {<img src="https://secure.travis-ci.org/saigkill/hoe-rubocop.png?branch=master" alt="Build Status" />}[https://secure.travis-ci.org/saigkill/hoe-rubocop]
|
14
|
-
continuous integration :: {<img src="https://scrutinizer-ci.com/g/saigkill/hoe-rubocop/badges/build.png?b=master" />}[https://scrutinizer-ci.com/g/saigkill/hoe-rubocop/]
|
15
|
-
code quality :: {<img src="https://scrutinizer-ci.com/g/saigkill/hoe-rubocop/badges/quality-score.png?b=master" />}[https://scrutinizer-ci.com/g/saigkill/hoe-rubocop/]
|
16
|
-
code quality :: {<img src="https://codeclimate.com/github/saigkill/hoe-rubocop/badges/gpa.svg" alt="Code Quality" />}[https://codeclimate.com/github/saigkill/hoe-rubocop]
|
17
|
-
security :: {<img src="https://hakiri.io/github/saigkill/hoe-rubocop/master.svg" alt="security" />}[https://hakiri.io/github/saigkill/hoe-rubocop/master]
|
18
|
-
dependency check :: {<img src="https://gemnasium.com/saigkill/hoe-rubocop.svg" alt="Dependency Status" />}[https://gemnasium.com/saigkill/hoe-rubocop]
|
19
|
-
documentation quality :: {<img src="http://inch-ci.org/github/saigkill/hoe-rubocop.svg?branch=master" alt="Documentation Quality" />}[http://inch-ci.org/github/saigkill/hoe-rubocop]
|
20
|
-
donations :: {<img src="https://pledgie.com/campaigns/29554.png?skin_name=chrome" alt="Build Status" />}[https://pledgie.com/campaigns/29554]
|
21
|
-
donations :: {<img src="https://saigkill.tuxfamily.org/dotclear/public/Amazon.png" alt="Build Status" />}[http://www.amazon.de/registry/wishlist/D75HOEQ00BDD]
|
22
|
-
|
23
|
-
== DESCRIPTION:
|
24
|
-
|
25
|
-
This hoe plugin extends hoe for using some rake tasks to control rubocop.
|
26
|
-
|
27
|
-
== FEATURES/PROBLEMS:
|
28
|
-
|
29
|
-
* This plugin extends hoe for using some rake tasks to control rubocop.
|
30
|
-
|
31
|
-
This Gem was programmed and tested for Linux systems. If anyone would like to make the methods also fit for other OS,
|
32
|
-
i'm happy about Pull requests.
|
33
|
-
|
34
|
-
For a detailed information please visit: https://saigkill.tuxfamily.org/dotclear/docs/hoe-rubocop/en-US/html/index.html
|
35
|
-
|
36
|
-
== SYNOPSIS:
|
37
|
-
|
38
|
-
Use in your Rakefile:
|
39
|
-
|
40
|
-
Hoe.plugin :rubocop
|
41
|
-
|
42
|
-
Hoe.spec 'yourproject' do
|
43
|
-
...
|
44
|
-
end
|
45
|
-
|
46
|
-
Also add hoe-rubocop to your requirements.
|
47
|
-
|
48
|
-
== REQUIREMENTS:
|
49
|
-
|
50
|
-
* rake
|
51
|
-
* rubocop
|
52
|
-
|
53
|
-
== INSTALL:
|
54
|
-
|
55
|
-
* gem install hoe-rubocop
|
56
|
-
|
57
|
-
See https://saigkill.tuxfamily.org/dotclear/docs/hoe-rubocop/en-US/html/index.html for more information.
|
58
|
-
If you like this little peace of software, dont't forget to give a star to the GitLab repository.
|
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.
|
68
|
-
|
69
|
-
== LICENSE:
|
70
|
-
|
71
|
-
(The MIT License)
|
72
|
-
|
73
|
-
Copyright (c) 2015-2017 Sascha Manns <Sascha.Manns@mailbox.org>
|
74
|
-
|
75
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
76
|
-
a copy of this software and associated documentation files (the
|
77
|
-
'Software'), to deal in the Software without restriction, including
|
78
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
79
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
80
|
-
permit persons to whom the Software is furnished to do so, subject to
|
81
|
-
the following conditions:
|
82
|
-
|
83
|
-
The above copyright notice and this permission notice shall be
|
84
|
-
included in all copies or substantial portions of the Software.
|
85
|
-
|
86
|
-
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
87
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
88
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
89
|
-
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
90
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
91
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
92
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|