hoe-manns 2.1.2 → 2.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b47eb8487cd4d43a9819a9af566fe438f596006f267522c3391b917822243430
4
- data.tar.gz: 260d5fca0ff82afb210de6729b42c8aafbe22e36de3568a2a3c932e06633a9ba
3
+ metadata.gz: 196bc2e5ca6ece16cbaa09d6a47c3cca93675aa2f6bf2c60b6c0d58afcdb81d9
4
+ data.tar.gz: c8717d253c583e1ae804fdb2654ad10581a97bd7aaec901396766c3166aeface
5
5
  SHA512:
6
- metadata.gz: 15dcb17a566e5f4c11ef10908e0f9adff9be40b43726ca9b3aea961e7c0d2406a9882f3d26b0662036a71213b6a2669524616cef3cb2bf41939bd35c1c3073e4
7
- data.tar.gz: 7f25abdd6f2928a1795904fc817a33bbd7b13491472129ecd772d5e0e95c692cecf964dc7f7152e94a06c96d50095c8f2aaca18823201ab3a83b28c8e8eb4af9
6
+ metadata.gz: bbccf0ce8df03de413f8a2aa1846ad0807216c3447e4e40e6dbbfd90bda0f05e214608e30bb662eddcf8b0250cc03016bcd6abf01380628dff51855a993b0c69
7
+ data.tar.gz: f79d0f456efc81e1021b195d4f8953736c66e559aa6270a449897bcd0fb8692d210f40ec534a742d673d4514bc46f870dfcab2f95d63e938a440a357dd9914ca
@@ -0,0 +1,17 @@
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/CONTRIBUTING.md ADDED
@@ -0,0 +1,35 @@
1
+ ## Reporting Bugs
2
+
3
+ * Ensure the bug was not already reported, see the
4
+ [Issue Tracker](https://github.com/saigkill/hoe-manns/issues) on GitHub.
5
+ * Open an issue or reference an existing one
6
+ * Assign yourself to the issue when you are working on it
7
+ * Reference the issue number (with `#NUMBER`) in your pull request
8
+
9
+ Thanks! :heart: :heart: :heart:
10
+
11
+ # IDEAS:
12
+
13
+ * Add ideas on: https://github.com/saigkill/hoe-manns/issues
14
+
15
+ ## COOL HACKS:
16
+
17
+ * Open a bugreport on https://github.com/saigkill/hoe-manns/issues.
18
+ * Please use the -u flag when generating the patch as it makes the patch
19
+ more readable.
20
+ * Write a good explanation of what the patch does.
21
+ * It is better to use git format-patch command: git format-patch HEAD^
22
+
23
+ # STRUCTURE:
24
+
25
+ ## BRANCHES:
26
+
27
+ ### `master` BRANCH:
28
+ The master branch is the last stable version.
29
+
30
+ ### `develop` BRANCH:
31
+ The develop branch is the current edge of development.
32
+
33
+ ### PULL REQUESTS:
34
+ Please base all Pullrequests off the `develop` branch. Merges to
35
+ `X.X` only occur through the `develop` branch.
data/Gemfile CHANGED
@@ -7,11 +7,12 @@ source "https://rubygems.org/"
7
7
  gem "rainbow", "~>3.0"
8
8
  gem "bundler-audit", "~>0.6"
9
9
 
10
- gem "hoe-bundler", "~>1.3", :group => [:development, :test]
10
+ gem "hoe-bundler", "~>1.4", :group => [:development, :test]
11
11
  gem "hoe-rubygems", "~>1.0", :group => [:development, :test]
12
12
  gem "hoe-version", "~>1.2", :group => [:development, :test]
13
- gem "rdoc", "~>5.1", :group => [:development, :test]
13
+ gem "rdoc", "~>6.0", :group => [:development, :test]
14
14
  gem "rspec", "~>3.7", :group => [:development, :test]
15
+ gem "coveralls", "~>0.8", :group => [:development, :test]
15
16
  gem "hoe", "~>3.17", :group => [:development, :test]
16
17
 
17
18
  # vim: syntax=ruby
data/Gemfile.lock CHANGED
@@ -4,15 +4,23 @@ GEM
4
4
  bundler-audit (0.6.0)
5
5
  bundler (~> 1.2)
6
6
  thor (~> 0.18)
7
+ coveralls (0.8.21)
8
+ json (>= 1.8, < 3)
9
+ simplecov (~> 0.14.1)
10
+ term-ansicolor (~> 1.3)
11
+ thor (~> 0.19.4)
12
+ tins (~> 1.6)
7
13
  diff-lcs (1.3)
14
+ docile (1.1.5)
8
15
  hoe (3.17.0)
9
16
  rake (>= 0.8, < 13.0)
10
17
  hoe-bundler (1.4.0)
11
18
  hoe-rubygems (1.0.0)
12
19
  hoe-version (1.2.0)
20
+ json (2.1.0)
13
21
  rainbow (3.0.0)
14
22
  rake (12.3.1)
15
- rdoc (5.1.0)
23
+ rdoc (6.0.4)
16
24
  rspec (3.7.0)
17
25
  rspec-core (~> 3.7.0)
18
26
  rspec-expectations (~> 3.7.0)
@@ -26,21 +34,34 @@ GEM
26
34
  diff-lcs (>= 1.2.0, < 2.0)
27
35
  rspec-support (~> 3.7.0)
28
36
  rspec-support (3.7.1)
29
- thor (0.20.0)
37
+ simplecov (0.14.1)
38
+ docile (~> 1.1.0)
39
+ json (>= 1.8, < 3)
40
+ simplecov-html (~> 0.10.0)
41
+ simplecov-html (0.10.2)
42
+ term-ansicolor (1.6.0)
43
+ tins (~> 1.0)
44
+ thor (0.19.4)
45
+ tins (1.16.3)
30
46
 
31
47
  PLATFORMS
32
48
  ruby
33
49
  x64-mingw32
50
+ x64-mswin32
51
+ x86-mingw32
52
+ x86-mswin32
53
+ x86_64-linux
34
54
 
35
55
  DEPENDENCIES
36
56
  bundler-audit (~> 0.6)
57
+ coveralls (~> 0.8)
37
58
  hoe (~> 3.17)
38
- hoe-bundler (~> 1.3)
59
+ hoe-bundler (~> 1.4)
39
60
  hoe-rubygems (~> 1.0)
40
61
  hoe-version (~> 1.2)
41
62
  rainbow (~> 3.0)
42
- rdoc (~> 5.1)
63
+ rdoc (~> 6.0)
43
64
  rspec (~> 3.7)
44
65
 
45
66
  BUNDLED WITH
46
- 1.16.1
67
+ 1.16.2
data/History.rdoc CHANGED
@@ -1,3 +1,9 @@
1
+ === 2.1.3 / 2018-06-25
2
+
3
+ * 1 minor enhancement
4
+
5
+ * updated dependencies
6
+
1
7
  === 2.1.2 / 2018-04-13
2
8
 
3
9
  * 1 misc enhancement
data/MAINTENANCE.md ADDED
@@ -0,0 +1,19 @@
1
+ # MAINTENANCE POLICY:
2
+
3
+ I'm following the Semantic Versioning for its releases: (Major).(Minor).(Patch).
4
+
5
+ * Major version: Whenever there is something significant or any backwards
6
+ incompatible changes.
7
+ * Minor version: When new, backwards compatible functionality is introduced a
8
+ minor feature is introduced, or when a set of smaller features is rolled out.
9
+ * Patch number: When backwards compatible bug fixes are introduced that fix
10
+ incorrect behavior.
11
+ * The current stable release will receive security patches and bug fixes
12
+ (eg. 5.0 -> 5.0.1).
13
+ * Feature releases will mark the next supported stable release where the minor
14
+ version is increased numerically by increments of one (eg. 5.0 -> 5.1).
15
+
16
+ I encourage everyone to run the latest stable release to ensure that you can
17
+ easily upgrade to the most secure and feature rich experience. In order to
18
+ make sure you can easily run the most recent stable release, we are working
19
+ hard to keep the update process simple and reliable.
data/Manifest.txt CHANGED
@@ -5,7 +5,9 @@ LICENSE.rdoc
5
5
  Manifest.txt
6
6
  README.rdoc
7
7
  Rakefile
8
- NEWS
8
+ CODE_OF_CONDUCT.md
9
+ CONTRIBUTING.md
10
+ MAINTENANCE.md
9
11
  lib/hoe/manns.rb
10
12
  lib/hoe/manns-methods.rb
11
13
  spec/manns_spec.rb
data/README.rdoc CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  code :: https://github.com/saigkill/hoe-manns
4
4
  rdoc :: http://www.rubydoc.info/gems/hoe-manns
5
- docs :: http://saigkill.tuxfamily.org/documentation/hoe-manns/
5
+ docs :: https://github.com/saigkill/hoe-manns/wiki
6
6
  bugs & feature requests:: https://github.com/saigkill/hoe-manns/issues
7
7
  mailing list :: https://groups.google.com/forum/#!forum/saigkills-hoe-plugins
8
8
  openhub statistics :: https://www.openhub.net/p/hoe-manns
9
- authors blog :: https://saigkill.tuxfamily.org
9
+ authors blog :: https://saigkills-backtrace.de
10
10
  min_rubyver :: 2.3.0
11
11
 
12
12
  last public version :: {<img src="https://badge.fury.io/rb/hoe-manns.png" alt="Last Version" />}[http://rubygems.org/gems/hoe-manns]
@@ -19,9 +19,7 @@ code quality :: {<img src="https://api.codeclimate.com/v1/badges/009b795034d7c69
19
19
  code quality :: {<img src="https://api.codacy.com/project/badge/Grade/bfa993bdac4b46efa6e102daf97ca311" alt="Codacy code quality" />}[https://www.codacy.com/app/saigkill_2/hoe-manns?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=saigkill/hoe-manns&amp;utm_campaign=Badge_Grade]
20
20
  security :: {<img src="https://hakiri.io/github/saigkill/hoe-manns/master.svg" alt="security" />}[https://hakiri.io/github/saigkill/hoe-manns/master/shield]
21
21
  test coverage :: {<img src="https://coveralls.io/repos/github/saigkill/hoe-manns/badge.svg?branch=master" alt="Test Coverage" />}[https://coveralls.io/github/saigkill/hoe-manns]
22
- dependency check :: {<img src="https://gemnasium.com/badges/github.com/saigkill/hoe-manns.svg" alt="Dependency Status" />}[https://gemnasium.com/github.com/saigkill/hoe-manns]
23
22
  documentation quality :: {<img src="https://inch-ci.org/github/saigkill/hoe-manns.svg?branch=master" alt="Documentation Quality" />}[https://inch-ci.org/github/saigkill/hoe-manns]
24
- donations :: http://saigkill.tuxfamily.org/wordpress/campaigns/hoe-manns/
25
23
 
26
24
  == DESCRIPTION:
27
25
 
@@ -35,16 +33,13 @@ hoe-manns is a small collection of my personal used rake tasks for using with ho
35
33
  * run_before_release
36
34
  * run_after_release
37
35
 
38
- The History.rdoc contains a detailed description of what has changed. For most
39
- users the NEWS file might be a better place to look since it contains
40
- change summaries between the different versions.
36
+ The History.rdoc contains a detailed description of what has changed.
41
37
 
42
- hoe-manns is released under the GPL3 License, see the file 'LICENSE.rdoc'
43
- for more information.
38
+ hoe-manns is released under the GPL3 License, see the file 'LICENSE.rdoc' for more information.
44
39
 
45
40
  The official website is:
46
41
 
47
- http://saigkill.tuxfamily.org/wordpress
42
+ https://saigkills-backtrace.de
48
43
 
49
44
  == FEATURES:
50
45
 
@@ -57,9 +52,6 @@ bundler_audit:run and copy_mirror.
57
52
  * Cleans up the pkg dir
58
53
  * provides bundler_audit tasks
59
54
 
60
- This Gem was programmed and tested on Linux systems. If anyone would like to make the methods also fit for other OS,
61
- I'm happy about Pull requests.
62
-
63
55
  == REQUIREMENTS:
64
56
 
65
57
  * rake
@@ -91,9 +83,8 @@ After checking out the source, run:
91
83
 
92
84
  $ rake newb
93
85
 
94
- This task will install any missing dependencies, run the tests/specs,
95
- and generate the RDoc.
96
- Also you can read the DEVELOPING.md and CONTRIBUTING.md for more information.
86
+ This task will install any missing dependencies, run the tests/specs, and generate the RDoc.
87
+ Also you can read the MAINTENANCE.md and CONTRIBUTING.md for more information.
97
88
 
98
89
  === IDEAS:
99
90
 
@@ -102,5 +93,4 @@ Also you can read the DEVELOPING.md and CONTRIBUTING.md for more information.
102
93
 
103
94
  == PROBLEM REPORTING:
104
95
 
105
- Bugs should be reported to https://bugs.launchpad.net/hoe-manns. You will need to create an
106
- account for yourself.
96
+ Bugs should be reported to https://bugs.launchpad.net/hoe-manns. You will need to create an account for yourself.
data/Rakefile CHANGED
@@ -1,5 +1,5 @@
1
1
  # -*- ruby -*-
2
- # Copyright (C) 2013-2018 Sascha Manns <Sascha.Manns@mailbox.org>
2
+ # Copyright (C) 2013-2018 Sascha Manns <Sascha.Manns@outlook.de>
3
3
  # Release:
4
4
  # Pre-release:
5
5
  #* update docs
@@ -10,6 +10,12 @@
10
10
  #* git:manifest
11
11
  #* bundler:gemfile
12
12
  #* bundler:gemfile_lock
13
+ # x64-mingw32
14
+ # x64-mswin32
15
+ # x86-mingw32
16
+ # x86-mswin32
17
+ # ruby
18
+ # x86_64-linux
13
19
  #* bundle_audit:run
14
20
  #* git -a -m "Anything"
15
21
  #* git tag x.x.x
@@ -37,18 +43,19 @@ Hoe.plugin :version
37
43
  ###########################################DEVELOPING ZONE##############################################################
38
44
  # rubocop:disable Metrics/LineLength
39
45
  Hoe.spec 'hoe-manns' do
40
- developer('Sascha Manns', 'Sascha.Manns@mailbox.org')
46
+ developer('Sascha Manns', 'Sascha.Manns@outlook.de')
41
47
  license 'GPL-3.0' # this should match the license in the README
42
- require_ruby_version '>= 2.2.0'
48
+ require_ruby_version '>= 2.3.0'
43
49
 
44
50
  dependency 'rainbow', '~> 3.0'
45
51
  dependency 'bundler-audit', '~> 0.6'
46
52
 
47
- extra_dev_deps << ['hoe-bundler', '~> 1.3']
53
+ extra_dev_deps << ['hoe-bundler', '~> 1.4']
48
54
  extra_dev_deps << ['hoe-rubygems', '~> 1.0']
49
55
  extra_dev_deps << ['hoe-version', '~> 1.2']
50
- extra_dev_deps << ['rdoc', '~> 5.1']
56
+ extra_dev_deps << ['rdoc', '~> 6.0']
51
57
  extra_dev_deps << ['rspec', '~> 3.7']
58
+ extra_dev_deps << ['coveralls', '~> 0.8']
52
59
 
53
60
  self.history_file = 'History.rdoc'
54
61
  self.readme_file = 'README.rdoc'
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2013-2018 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ # Copyright (C) 2013-2018 Sascha Manns <Sascha.Manns@outlook.de>
2
2
  #
3
3
  # This program is free software: you can redistribute it and/or modify
4
4
  # it under the terms of the GNU General Public License as published by
data/lib/hoe/manns.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2013-2018 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ # Copyright (C) 2013-2018 Sascha Manns <Sascha.Manns@outlook.de>
2
2
  #
3
3
  # This program is free software: you can redistribute it and/or modify
4
4
  # it under the terms of the GNU General Public License as published by
@@ -23,7 +23,7 @@ require_relative 'manns-methods.rb'
23
23
  # rubocop:disable Metrics/ClassAndModuleChildren
24
24
  module Hoe::Manns
25
25
  # Version constant for HOE::Manns
26
- VERSION = '2.1.2'.freeze
26
+ VERSION = '2.1.3'.freeze
27
27
 
28
28
  attr_accessor :remove_pre_gemspec
29
29
  attr_accessor :copy_master
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hoe-manns
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.2
4
+ version: 2.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sascha Manns
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-26 00:00:00.000000000 Z
11
+ date: 2018-06-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rainbow
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '1.3'
47
+ version: '1.4'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '1.3'
54
+ version: '1.4'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: hoe-rubygems
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -86,14 +86,14 @@ dependencies:
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: '5.1'
89
+ version: '6.0'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: '5.1'
96
+ version: '6.0'
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: rspec
99
99
  requirement: !ruby/object:Gem::Requirement
@@ -108,6 +108,20 @@ dependencies:
108
108
  - - "~>"
109
109
  - !ruby/object:Gem::Version
110
110
  version: '3.7'
111
+ - !ruby/object:Gem::Dependency
112
+ name: coveralls
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '0.8'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '0.8'
111
125
  - !ruby/object:Gem::Dependency
112
126
  name: hoe
113
127
  requirement: !ruby/object:Gem::Requirement
@@ -133,32 +147,34 @@ description: |-
133
147
  * run_before_release
134
148
  * run_after_release
135
149
 
136
- The History.rdoc contains a detailed description of what has changed. For most
137
- users the NEWS file might be a better place to look since it contains
138
- change summaries between the different versions.
150
+ The History.rdoc contains a detailed description of what has changed.
139
151
 
140
- hoe-manns is released under the GPL3 License, see the file 'LICENSE.rdoc'
141
- for more information.
152
+ hoe-manns is released under the GPL3 License, see the file 'LICENSE.rdoc' for more information.
142
153
 
143
154
  The official website is:
144
155
 
145
- http://saigkill.tuxfamily.org/wordpress
156
+ https://saigkills-backtrace.de
146
157
  email:
147
- - Sascha.Manns@mailbox.org
158
+ - Sascha.Manns@outlook.de
148
159
  executables: []
149
160
  extensions: []
150
161
  extra_rdoc_files:
162
+ - CODE_OF_CONDUCT.md
163
+ - CONTRIBUTING.md
151
164
  - History.rdoc
152
165
  - LICENSE.rdoc
166
+ - MAINTENANCE.md
153
167
  - Manifest.txt
154
168
  - README.rdoc
155
169
  files:
170
+ - CODE_OF_CONDUCT.md
171
+ - CONTRIBUTING.md
156
172
  - Gemfile
157
173
  - Gemfile.lock
158
174
  - History.rdoc
159
175
  - LICENSE.rdoc
176
+ - MAINTENANCE.md
160
177
  - Manifest.txt
161
- - NEWS
162
178
  - README.rdoc
163
179
  - Rakefile
164
180
  - lib/hoe/manns-methods.rb
@@ -179,7 +195,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
179
195
  requirements:
180
196
  - - ">="
181
197
  - !ruby/object:Gem::Version
182
- version: 2.2.0
198
+ version: 2.3.0
183
199
  required_rubygems_version: !ruby/object:Gem::Requirement
184
200
  requirements:
185
201
  - - ">="
data/NEWS DELETED
@@ -1,264 +0,0 @@
1
- ===============================================================================
2
- hoe-manns 2.1.2 - 2018-04-13
3
- ===============================================================================
4
-
5
- hoe-manns 2.1.2 is the culmination of one days' work by 1 developer.
6
-
7
- New Features:
8
-
9
- * Nothing yet
10
-
11
- Enhancements:
12
-
13
- * Nothing yet
14
-
15
- Notable Bugs Fixed:
16
-
17
- * Nothing yet
18
- * Just updated documents and projects url
19
-
20
-
21
- ===============================================================================
22
- SOURCES / PACKAGES
23
- ===============================================================================
24
-
25
- Sources
26
- -------
27
-
28
- * hoe-manns 2.1.2 Tarballs:
29
- https://launchpad.net/hoe-manns/2.x/2.1.2/+download/hoe-manns-2.1.2.tar.xz
30
-
31
- Packages
32
- --------
33
-
34
- Download and installation information is available here:
35
-
36
- * http://saigkill.tuxfamily.org/documentation/hoe-manns/
37
-
38
- Gems:
39
-
40
- * https://rubygems.org/gems/hoe-manns
41
-
42
- ===============================================================================
43
- REPORT BUGS - HELP THE PROJECT - GROW THE COMMUNITY
44
- ===============================================================================
45
-
46
- If you encounter any bad behavior with this release, please do not
47
- hesitate to file bugs!
48
-
49
- * https://smanns.myjetbrains.com/youtrack
50
-
51
-
52
- ===============================================================================
53
- VALUED HOE-MANNS CONTRIBUTORS
54
- ===============================================================================
55
-
56
- Contributors For This Release
57
- -----------------------------
58
-
59
- The following people directly contributed to the release of this version
60
- of hoe-manns. Without their help, there would be no release!
61
-
62
- Sascha Manns
63
-
64
-
65
- ===============================================================================
66
- hoe-manns 2.1.1 - 2017-11-06
67
- ===============================================================================
68
-
69
- hoe-manns 2.1.1 is the culmination of one days' work by 1 developer.
70
-
71
- New Features:
72
-
73
- * Nothing yet
74
-
75
- Enhancements:
76
-
77
- * Nothing yet
78
-
79
- Notable Bugs Fixed:
80
-
81
- * Updated reek dependency
82
-
83
-
84
- ===============================================================================
85
- SOURCES / PACKAGES
86
- ===============================================================================
87
-
88
- Sources
89
- -------
90
-
91
- * hoe-manns 2.1.1 Tarballs:
92
- https://launchpad.net/hoe-manns/2.x/2.1.1/+download/hoe-manns-2.1.1.tar.xz
93
-
94
- Packages
95
- --------
96
-
97
- Download and installation information is available here:
98
-
99
- * https://saigkill.github.io/hoe-manns/about/
100
-
101
- Gems:
102
-
103
- * https://rubygems.org/gems/hoe-manns
104
-
105
- ===============================================================================
106
- REPORT BUGS - HELP THE PROJECT - GROW THE COMMUNITY
107
- ===============================================================================
108
-
109
- If you encounter any bad behavior with this release, please do not
110
- hesitate to file bugs!
111
-
112
- * https://bugs.launchpad.net/hoe-manns
113
-
114
-
115
- ===============================================================================
116
- VALUED HOE-MANNS CONTRIBUTORS
117
- ===============================================================================
118
-
119
- Contributors For This Release
120
- -----------------------------
121
-
122
- The following people directly contributed to the release of this version
123
- of hoe-manns. Without their help, there would be no release!
124
-
125
- Sascha Manns
126
-
127
- ===============================================================================
128
- hoe-manns 2.1.0 - 2017-10-24
129
- ===============================================================================
130
-
131
- hoe-manns 2.1.0 is the culmination of two days' work by 1 developer.
132
-
133
- New Features:
134
-
135
- * Handling
136
-
137
- run
138
-
139
-
140
- Enhancements:
141
-
142
- * Nothing yet
143
-
144
-
145
- Notable Bugs Fixed:
146
-
147
- * HM-9: Split module into two seperate modules
148
- * HM-10: Remove run_after_release
149
- * HM-11: Remove system('git add recipes/recipe.rb') if File.exist?('recipes/recipe.rb')
150
-
151
-
152
- ===============================================================================
153
- SOURCES / PACKAGES
154
- ===============================================================================
155
-
156
- Sources
157
- -------
158
-
159
- * hoe-manns 2.1.0 Tarballs:
160
- https://launchpad.net/hoe-manns/2.x/2.1.0/+download/hoe-manns-2.1.0.tar.xz
161
-
162
- Packages
163
- --------
164
-
165
- Download and installation information is available here:
166
-
167
- * https://saigkill.github.io/hoe-manns/about/
168
-
169
- Gems:
170
-
171
- * https://rubygems.org/gems/hoe-manns
172
-
173
- ===============================================================================
174
- REPORT BUGS - HELP THE PROJECT - GROW THE COMMUNITY
175
- ===============================================================================
176
-
177
- If you encounter any bad behavior with this release, please do not
178
- hesitate to file bugs!
179
-
180
- * https://bugs.launchpad.net/hoe-manns
181
-
182
-
183
- ===============================================================================
184
- VALUED HOE-MANNS CONTRIBUTORS
185
- ===============================================================================
186
-
187
- Contributors For This Release
188
- -----------------------------
189
-
190
- The following people directly contributed to the release of this version
191
- of hoe-manns. Without their help, there would be no release!
192
-
193
- Sascha Manns
194
-
195
-
196
-
197
- ===============================================================================
198
- hoe-manns 2.0.0 - 2017-10-19
199
- ===============================================================================
200
-
201
- hoe 2.0.0 is the culmination of a days' work by 1 developer.
202
-
203
- New Features:
204
-
205
- * Handling
206
-
207
- run_before_release changed. The trigger for update_workspace are
208
- removed. It was written before i knew 'git -a' ;-) Also the method
209
- for running the manuals was dropped.
210
-
211
-
212
- Enhancements:
213
-
214
- * Nothing yet
215
-
216
-
217
- Notable Bugs Fixed:
218
-
219
- * HM-7: Changed license from MIT to GPL-3
220
-
221
-
222
- ===============================================================================
223
- SOURCES / PACKAGES
224
- ===============================================================================
225
-
226
- Sources
227
- -------
228
-
229
- * hoe-manns 2.0.0 Tarballs:
230
- https://launchpad.net/hoe-manns/2.x/2.0.0/+download/hoe-manns-2.0.0.tar.xz
231
-
232
- Packages
233
- --------
234
-
235
- Download and installation information is available here:
236
-
237
- * https://saigkill.github.io/hoe-manns/userdocs/en/
238
-
239
- Gems:
240
-
241
- * https://rubygems.org/gems/hoe-manns
242
-
243
- ===============================================================================
244
- REPORT BUGS - HELP THE PROJECT - GROW THE COMMUNITY
245
- ===============================================================================
246
-
247
- If you encounter any bad behavior with this release, please do not
248
- hesitate to file bugs!
249
-
250
- * https://bugs.launchpad.net/hoe-manns
251
-
252
-
253
- ===============================================================================
254
- VALUED HOE-MANNS CONTRIBUTORS
255
- ===============================================================================
256
-
257
- Contributors For This Release
258
- -----------------------------
259
-
260
- The following people directly contributed to the release of this version
261
- of hoe-manns. Without their help, there would be no release!
262
-
263
- Sascha Manns
264
-