hoe-packaging 1.2.2 → 1.2.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
- SHA1:
3
- metadata.gz: fc6f2b4d26b64918371c21fb91edcf93e7cec340
4
- data.tar.gz: 4daa753716a7dd0fd055a0e5b6332c8853a1e212
2
+ SHA256:
3
+ metadata.gz: b42129df7b9738892bc46a15224ec1a654ac5135a6a7034ce0f176612a4aa250
4
+ data.tar.gz: 83ea298d6b0965fd1bdc8a02d72824246dadabd5bcd44518186c2c6c94575170
5
5
  SHA512:
6
- metadata.gz: 35151b8df3ebbb8c005c450596b78c3d62c2ab2e22c53790c0551be937442eedf718ee2f1887b148c470082ff9387af6a504a16ae19e295c8d22186a0dd1ed90
7
- data.tar.gz: 52123fa64eeac562e39b0996634dbb73b111f2a59acd310b25d7cf966dbe3a975b7fd800a83235a43e610e648c78592a46f67c3252fcd421dc4a834643be33d0
6
+ metadata.gz: 1a93c50735d274928d3a968838f8cc673f7ee6527ffced6124162f871bfcfe4cb0feb2676bc4dc482d632b8f86f5d545a9e7f9cd961a61daf38634f1aeb7f773
7
+ data.tar.gz: b994bd55fb0a4cbc546bd29f99589185ffc37affb7ba4fc288d8784733a688046eb3262a79dea74151765e2bdf0ac6061236686e5a8c276a542ff0b1ddc2d045
@@ -0,0 +1,26 @@
1
+ = CONTRIBUTOR CODE OF CONDUCT:
2
+ As contributors and maintainers of this project, we pledge to respect all
3
+ people who contribute through reporting issues, posting feature requests,
4
+ updating documentation, submitting pull requests or patches, and other
5
+ activities.
6
+
7
+ We are committed to making participation in this project a harassment-free
8
+ experience for everyone, regardless of level of experience, gender, gender
9
+ identity and expression, sexual orientation, disability, personal
10
+ appearance, body size, race, age, or religion.
11
+
12
+ Examples of unacceptable behavior by participants include the use of sexual
13
+ language or imagery, derogatory comments or personal attacks, trolling,
14
+ public or private harassment, insults, or other unprofessional conduct.
15
+
16
+ Project maintainers have the right and responsibility to remove, edit, or
17
+ reject comments, commits, code, wiki edits, issues, and other contributions
18
+ that are not aligned to this Code of Conduct. Project maintainers who do
19
+ not follow the Code of Conduct may be removed from the project team.
20
+
21
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
22
+ reported by opening an issue or contacting one or more of the project
23
+ maintainers.
24
+
25
+ This Code of Conduct is adapted from the {Contributor Covenant}[http:contributor-covenant.org],
26
+ version 1.0.0, available at {http://contributor-covenant.org/version/1/0/0/}[http://contributor-covenant.org/version/1/0/0/].
@@ -0,0 +1,27 @@
1
+ = IDEAS:
2
+
3
+ * Add ideas on: https://github.com/saigkill/hoe-packaging/issues
4
+
5
+ = COOL HACKS:
6
+
7
+ * Open a bugreport on https://github.com/saigkill/hoe-packaging/issues.
8
+ * Please use the -u flag when generating the patch as it makes the patch
9
+ more readable.
10
+ * Write a good explanation of what the patch does.
11
+ * It is better to use git format-patch command: git format-patch HEAD^
12
+
13
+ = STRUCTURE:
14
+
15
+ == BRANCHES:
16
+
17
+ === `master` BRANCH:
18
+ The master branch is the last stable version.
19
+
20
+ === `develop` BRANCH:
21
+ The develop branch is the current edge of development.
22
+
23
+ === MERGE REQUESTS:
24
+ If you want to merge your branch with the trunk, join the team.
25
+
26
+ Please base all Merge requests off the `master` branch. Merges to
27
+ `X.X` only occur through the `master` branch.
data/Gemfile CHANGED
@@ -1,29 +1,19 @@
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.16"
8
- gem "fpm", "~>1.9"
9
- gem "fpm-cookery", "~>0.33"
10
- gem "parseconfig", "~>1.0.8"
11
-
12
- gem "hoe-bundler", "~>1.3", :group => [:development, :test]
13
- gem "hoe-doofus", "~>1.0", :group => [:development, :test]
14
- gem "hoe-git", "~>1.6", :group => [:development, :test]
15
- gem "hoe-manns", "~>1.6", :group => [:development, :test]
16
- gem "hoe-reek", "~>1.1", :group => [:development, :test]
17
- gem "hoe-rubocop", "~>1.0", :group => [:development, :test]
18
- gem "hoe-rubygems", "~>1.0", :group => [:development, :test]
19
- gem "hoe-travis", "~>1.3", :group => [:development, :test]
20
- gem "hoe-version", "~>1.2", :group => [:development, :test]
21
- gem "rake", "~>12.1", :group => [:development, :test]
22
- gem "rdoc", "~>5.1", :group => [:development, :test]
23
- gem "reek", "~>4.7", :group => [:development, :test]
24
- gem "rspec", "~>3.7", :group => [:development, :test]
25
- gem "rubocop", "~>0.51", :group => [:development, :test]
26
- gem "coveralls", "~>0.8", :group => [:development, :test]
27
- gem "hoe", "~>3.16", :group => [:development, :test]
28
-
29
- # vim: syntax=ruby
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 "fpm", "~>1.9"
8
+ gem "fpm-cookery", "~>0.33"
9
+ gem "parseconfig", "~>1.0.8"
10
+
11
+ gem "hoe-bundler", "~>1.4", :group => [:development, :test]
12
+ gem "hoe-version", "~>1.2", :group => [:development, :test]
13
+ gem "rake", "~>12.3", :group => [:development, :test]
14
+ gem "rdoc", "~>6.0", :group => [:development, :test]
15
+ gem "rspec", "~>3.7", :group => [:development, :test]
16
+ gem "coveralls", "~>0.8", :group => [:development, :test]
17
+ gem "hoe", "~>3.17", :group => [:development, :test]
18
+
19
+ # vim: syntax=ruby
@@ -4,37 +4,27 @@ GEM
4
4
  addressable (2.3.8)
5
5
  arr-pm (0.0.10)
6
6
  cabin (> 0)
7
- ast (2.3.0)
8
- axiom-types (0.1.1)
9
- descendants_tracker (~> 0.0.4)
10
- ice_nine (~> 0.11.0)
11
- thread_safe (~> 0.3, >= 0.3.1)
12
- backports (3.10.3)
13
- bundler-audit (0.6.0)
14
- bundler (~> 1.2)
15
- thor (~> 0.18)
7
+ backports (3.11.3)
16
8
  cabin (0.9.0)
17
- childprocess (0.8.0)
9
+ childprocess (0.9.0)
18
10
  ffi (~> 1.0, >= 1.0.11)
19
11
  clamp (1.0.1)
20
- codeclimate-engine-rb (0.4.0)
21
- virtus (~> 1.0)
22
- coercible (1.0.0)
23
- descendants_tracker (~> 0.0.1)
24
12
  coveralls (0.8.21)
25
13
  json (>= 1.8, < 3)
26
14
  simplecov (~> 0.14.1)
27
15
  term-ansicolor (~> 1.3)
28
16
  thor (~> 0.19.4)
29
17
  tins (~> 1.6)
30
- descendants_tracker (0.0.4)
31
- thread_safe (~> 0.3, >= 0.3.1)
32
18
  diff-lcs (1.3)
33
19
  docile (1.1.5)
34
- dotenv (2.2.1)
35
- equalizer (0.0.11)
20
+ dotenv (2.4.0)
36
21
  facter (2.5.1)
37
- ffi (1.9.18)
22
+ facter (2.5.1-x64-mingw32)
23
+ ffi (~> 1.9.5)
24
+ ffi (1.9.23)
25
+ ffi (1.9.23-x64-mingw32)
26
+ ffi-win32-extensions (1.0.3)
27
+ ffi
38
28
  fpm (1.9.3)
39
29
  arr-pm (~> 0.0.10)
40
30
  backports (>= 2.6.2)
@@ -57,36 +47,17 @@ GEM
57
47
  systemu
58
48
  hiera (1.3.4)
59
49
  json_pure
60
- hoe (3.16.1)
50
+ hoe (3.17.0)
61
51
  rake (>= 0.8, < 13.0)
62
- hoe-bundler (1.3.0)
63
- hoe (>= 2.2.0)
64
- hoe-doofus (1.0.0)
65
- hoe-git (1.6.0)
66
- hoe-manns (1.6.2)
67
- bundler-audit (~> 0.5)
68
- parseconfig (~> 1.0)
69
- rainbow (~> 2.2)
70
- hoe-reek (1.2.2)
71
- bundler (~> 1.16)
72
- reek (~> 4.7)
73
- hoe-rubocop (1.0.8)
74
- bundler (~> 1.14)
75
- rubocop (~> 0.47)
76
- hoe-rubygems (1.0.0)
77
- hoe-travis (1.3.1)
78
- hoe (~> 3.0)
52
+ hoe-bundler (1.4.0)
79
53
  hoe-version (1.2.0)
80
- ice_nine (0.11.2)
81
54
  insist (1.0.0)
82
55
  io-like (0.3.0)
83
56
  json (1.8.6)
84
57
  json_pure (1.8.6)
58
+ minitar (0.5.4)
85
59
  mustache (0.99.8)
86
- parallel (1.12.0)
87
60
  parseconfig (1.0.8)
88
- parser (2.4.0.0)
89
- ast (~> 2.2)
90
61
  pleaserun (0.0.30)
91
62
  cabin (> 0)
92
63
  clamp
@@ -94,24 +65,28 @@ GEM
94
65
  insist
95
66
  mustache (= 0.99.8)
96
67
  stud
97
- powerpack (0.1.1)
98
68
  puppet (3.8.7)
99
69
  facter (> 1.6, < 3)
100
70
  hiera (~> 1.0)
101
71
  json_pure
102
- rainbow (2.2.2)
103
- rake
104
- rake (12.2.1)
105
- rdoc (5.1.0)
106
- reek (4.7.3)
107
- codeclimate-engine-rb (~> 0.4.0)
108
- parser (>= 2.4.0.0, < 2.5)
109
- rainbow (~> 2.0)
72
+ puppet (3.8.7-x64-mingw32)
73
+ facter (> 1.6, < 3)
74
+ ffi (~> 1.9.5)
75
+ hiera (~> 1.0)
76
+ json_pure
77
+ minitar (~> 0.5.4)
78
+ win32-dir (~> 0.4.9)
79
+ win32-eventlog (~> 0.6.1)
80
+ win32-process (~> 0.7.4)
81
+ win32-security (~> 0.2.5)
82
+ win32-service (~> 0.8.6)
83
+ rake (12.3.1)
84
+ rdoc (6.0.3)
110
85
  rspec (3.7.0)
111
86
  rspec-core (~> 3.7.0)
112
87
  rspec-expectations (~> 3.7.0)
113
88
  rspec-mocks (~> 3.7.0)
114
- rspec-core (3.7.0)
89
+ rspec-core (3.7.1)
115
90
  rspec-support (~> 3.7.0)
116
91
  rspec-expectations (3.7.0)
117
92
  diff-lcs (>= 1.2.0, < 2.0)
@@ -119,15 +94,7 @@ GEM
119
94
  rspec-mocks (3.7.0)
120
95
  diff-lcs (>= 1.2.0, < 2.0)
121
96
  rspec-support (~> 3.7.0)
122
- rspec-support (3.7.0)
123
- rubocop (0.51.0)
124
- parallel (~> 1.10)
125
- parser (>= 2.3.3.1, < 3.0)
126
- powerpack (~> 0.1)
127
- rainbow (>= 2.2.2, < 3.0)
128
- ruby-progressbar (~> 1.7)
129
- unicode-display_width (~> 1.0, >= 1.0.1)
130
- ruby-progressbar (1.9.0)
97
+ rspec-support (3.7.1)
131
98
  ruby-xz (0.2.3)
132
99
  ffi (~> 1.9)
133
100
  io-like (~> 0.3)
@@ -142,39 +109,35 @@ GEM
142
109
  term-ansicolor (1.6.0)
143
110
  tins (~> 1.0)
144
111
  thor (0.19.4)
145
- thread_safe (0.3.6)
146
- tins (1.15.0)
147
- unicode-display_width (1.3.0)
148
- virtus (1.0.5)
149
- axiom-types (~> 0.1)
150
- coercible (~> 1.0)
151
- descendants_tracker (~> 0.0, >= 0.0.3)
152
- equalizer (~> 0.0, >= 0.0.9)
112
+ tins (1.16.3)
113
+ win32-dir (0.4.9)
114
+ ffi (>= 1.0.0)
115
+ win32-eventlog (0.6.7)
116
+ ffi
117
+ win32-process (0.7.5)
118
+ ffi (>= 1.0.0)
119
+ win32-security (0.2.5)
120
+ ffi
121
+ win32-service (0.8.10)
122
+ ffi
123
+ ffi-win32-extensions
153
124
 
154
125
  PLATFORMS
155
126
  ruby
127
+ x64-mingw32
128
+ x86_64-linux
156
129
 
157
130
  DEPENDENCIES
158
- bundler (~> 1.16)
159
131
  coveralls (~> 0.8)
160
132
  fpm (~> 1.9)
161
133
  fpm-cookery (~> 0.33)
162
- hoe (~> 3.16)
163
- hoe-bundler (~> 1.3)
164
- hoe-doofus (~> 1.0)
165
- hoe-git (~> 1.6)
166
- hoe-manns (~> 1.6)
167
- hoe-reek (~> 1.1)
168
- hoe-rubocop (~> 1.0)
169
- hoe-rubygems (~> 1.0)
170
- hoe-travis (~> 1.3)
134
+ hoe (~> 3.17)
135
+ hoe-bundler (~> 1.4)
171
136
  hoe-version (~> 1.2)
172
137
  parseconfig (~> 1.0.8)
173
- rake (~> 12.1)
174
- rdoc (~> 5.1)
175
- reek (~> 4.7)
138
+ rake (~> 12.3)
139
+ rdoc (~> 6.0)
176
140
  rspec (~> 3.7)
177
- rubocop (~> 0.51)
178
141
 
179
142
  BUNDLED WITH
180
- 1.16.0
143
+ 1.16.1
@@ -1,3 +1,9 @@
1
+ === 1.2.3 / 2018-04-27
2
+
3
+ * 1 misc enhancement
4
+
5
+ * updated dependencies and updated documentation and bugtracker url
6
+
1
7
  === 1.2.2 / 2017-11-06
2
8
 
3
9
  * 1 patch enhancement
@@ -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.
@@ -4,6 +4,8 @@ History.rdoc
4
4
  LICENSE.rdoc
5
5
  Manifest.txt
6
6
  README.rdoc
7
- NEWS
7
+ CODE_OF_CONDUCT.rdoc
8
+ DEVELOPING.rdoc
9
+ MAINTENANCE.rdoc
8
10
  Rakefile
9
11
  lib/hoe/packaging.rb
@@ -1,43 +1,44 @@
1
1
  = hoe-packaging
2
2
 
3
- code :: https://launchpad.net/hoe-packaging
4
- docs :: https://saigkill.github.io/hoe-packaging/about/
3
+ code :: https://github.com/saigkill/hoe-packaging
4
+ docs :: http://saigkill.tuxfamily.org/documentation/hoe-packaging
5
5
  apidoc :: http://www.rubydoc.info/gems/hoe-packaging
6
- bugs :: https://bugs.launchpad.net/hoe-packaging
7
- questions :: https://answers.launchpad.net/hoe-packaging
8
- feature requests :: https://blueprints.launchpad.net/hoe-packaging
6
+ bugs & feature requests :: https://github.com/saigkill/hoe-packaging/issues
9
7
  openhub statistics :: https://www.openhub.net/p/hoe-packaging
10
8
  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-packaging.
9
+ min. rubyver :: 2.3.0
10
+
11
+ last public version :: {<img src="https://badge.fury.io/rb/hoe-packaging.png" alt="Last Version" />}[http://rubygems.org/gems/hoe-packaging]
12
+ downloads latest :: {<img src="https://img.shields.io/gem/dtv/hoe-packaging.svg" alt="Downloads latest version" />}[http://rubygems.org/gems/hoe-packaging]
13
+ downloads all :: {<img src="https://img.shields.io/gem/dt/hoe-packaging.svg" alt="Downloads all versions" />}[http://rubygems.org/gems/hoe-packaging]
14
+ code quality :: {<img src="https://scrutinizer-ci.com/g/saigkill/hoe-packaging/badges/quality-score.png?b=master" />}[https://scrutinizer-ci.com/g/saigkill/hoe-packaging/]
15
+ code quality :: {<img src="https://api.codeclimate.com/v1/badges/5491c830409827e04868/maintainability" />}[https://codeclimate.com/github/saigkill/hoe-packaging/maintainability]
16
+ code quality :: {<img src="https://api.codacy.com/project/badge/Grade/ddc76c674b464b4eac7a8d05a0155c24" alt="Codacy code quality" />}[https://www.codacy.com/app/samannsml/hoe-packaging?utm_source=github.com&utm_medium=referral&utm_content=saigkill/hoe-packaging&utm_campaign=Badge_Grade]
17
+ security :: {<img src="https://hakiri.io/github/saigkill/hoe-packaging/master.svg" alt="security" />}[https://hakiri.io/github/saigkill/hoe-packaging/master]
18
+ dependency check :: {<img src="https://gemnasium.com/saigkill/hoe-packaging.svg" alt="Dependency Status" />}[https://gemnasium.com/saigkill/hoe-packaging]
19
+ documentation quality :: {<img src="http://inch-ci.org/github/saigkill/hoe-packaging.svg?branch=master" alt="Documentation Quality" />}[http://inch-ci.org/github/saigkill/hoe-packaging]
15
20
 
16
21
  == DESCRIPTION:
17
22
 
18
23
  hoe-packaging is a plugin for the hoe ruby projecthelper (https://github.com/seattlerb/hoe). It provides creation of rpm and deb packages,
19
24
  also a deployment to bintray.
20
25
 
21
- The History.rdoc contains a detailed description on what has changed. For most
22
- users the NEWS file might be a better place to look since it contains
23
- change summaries between the different versions.
26
+ The History.rdoc contains a detailed description on what has changed.
24
27
 
25
- youtube_dlhelper is released under the GPL3 License, see the file 'License.rdoc'
26
- for more information.
28
+ hoe-packaging is released under the GPL3 License, see the file 'License.rdoc' for more information.
27
29
 
28
30
  The official web site is:
29
31
 
30
- https://launchpad.net/hoe-packaging
32
+ https://github.com/saigkill/hoe-packaging
31
33
 
32
- == FEATURES/PROBLEMS:
34
+ == FEATURES:
33
35
 
34
36
  * creating of deb & rpm packages
35
37
  * deploying to bintray.
36
38
 
37
39
  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.
38
40
 
39
- See the {FAQs}[https://answers.launchpad.net/hoe-packaging/+faqs] for checking known issues.
40
- See the {status}[https://github.com/saigkill/hoe-packaging/blob/master/STATUS.rdoc] of the app.
41
+ See the {Tracker}[https://github.com/saigkill/hoe-packaging/issues] for checking known issues.
41
42
 
42
43
  == SYNOPSIS:
43
44
 
@@ -51,7 +52,7 @@ Use in your Rakefile:
51
52
 
52
53
  Also add hoe-packaging to your requirements and recreate your Gemfile.
53
54
 
54
- Read the documentation at: https://saigkill.github.io/hoe-packaging/about/
55
+ Read the documentation at: http://saigkill.tuxfamily.org/documentation/hoe-packaging
55
56
 
56
57
  == REQUIREMENTS:
57
58
 
@@ -64,8 +65,6 @@ The installation is very easy.
64
65
 
65
66
  gem install hoe-packaging
66
67
 
67
- Read the documentation at: https://saigkill.github.io/hoe-packaging/about/
68
-
69
68
  == DEVELOPERS:
70
69
 
71
70
  After checking out the source, run:
@@ -73,85 +72,4 @@ After checking out the source, run:
73
72
  $ rake newb
74
73
 
75
74
  This task will install any missing dependencies, run the tests/specs,
76
- and generate the RDoc.
77
-
78
- === IDEAS:
79
-
80
- * Add ideas on: https://blueprints.launchpad.net/hoe-packaging
81
-
82
- === COOL HACKS:
83
-
84
- * Open a bugreport on https://bugs.launchpad.net/hoe-packaging.
85
- * Please use the -u flag when generating the patch as it makes the patch
86
- more readable.
87
- * Write a good explanation of what the patch does.
88
- * It is better to use git format-patch command: git format-patch HEAD^
89
-
90
- === CONTRIBUTOR CODE OF CONDUCT:
91
-
92
- As contributors and maintainers of this project, we pledge to respect all
93
- people who contribute through reporting issues, posting feature requests,
94
- updating documentation, submitting pull requests or patches, and other
95
- activities.
96
-
97
- We are committed to making participation in this project a harassment-free
98
- experience for everyone, regardless of level of experience, gender, gender
99
- identity and expression, sexual orientation, disability, personal
100
- appearance, body size, race, age, or religion.
101
-
102
- Examples of unacceptable behavior by participants include the use of sexual
103
- language or imagery, derogatory comments or personal attacks, trolling,
104
- public or private harassment, insults, or other unprofessional conduct.
105
-
106
- Project maintainers have the right and responsibility to remove, edit, or
107
- reject comments, commits, code, wiki edits, issues, and other contributions
108
- that are not aligned to this Code of Conduct. Project maintainers who do
109
- not follow the Code of Conduct may be removed from the project team.
110
-
111
- Instances of abusive, harassing, or otherwise unacceptable behavior may be
112
- reported by opening an issue or contacting one or more of the project
113
- maintainers.
114
-
115
- This Code of Conduct is adapted from the {Contributor Covenant}[http:contributor-covenant.org],
116
- version 1.0.0, available at {http://contributor-covenant.org/version/1/0/0/}[http://contributor-covenant.org/version/1/0/0/].
117
-
118
- === MAINTANANCE POLICY:
119
-
120
- I'm following the Semantic Versioning for its releases: (Major).(Minor).(Patch).
121
-
122
- * Major version: Whenever there is something significant or any backwards
123
- incompatible changes.
124
- * Minor version: When new, backwards compatible functionality is introduced a
125
- minor feature is introduced, or when a set of smaller features is rolled out.
126
- * Patch number: When backwards compatible bug fixes are introduced that fix
127
- incorrect behavior.
128
- * The current stable release will receive security patches and bug fixes
129
- (eg. 5.0 -> 5.0.1).
130
- * Feature releases will mark the next supported stable release where the minor
131
- version is increased numerically by increments of one (eg. 5.0 -> 5.1).
132
-
133
- I encourage everyone to run the latest stable release to ensure that you can
134
- easily upgrade to the most secure and feature rich experience. In order to
135
- make sure you can easily run the most recent stable release, we are working
136
- hard to keep the update process simple and reliable.
137
-
138
- === STRUCTURE:
139
-
140
- ==== BRANCHES:
141
-
142
- ===== `master` BRANCH:
143
- The master branch is the current edge of development.
144
-
145
- ===== `X.X` BRANCH:
146
- The X.X branch is the last stable branch. It will used for tarballs.
147
-
148
- ===== MERGE REQUESTS:
149
- If you want to merge your branch with the trunk, join the team.
150
-
151
- Please base all Merge requests off the `master` branch. Merges to
152
- `X.X` only occur through the `master` branch.
153
-
154
- == PROBLEM REPORTING:
155
-
156
- Bugs should be reported to https://bugs.launchpad.net/hoe-packaging. You will need to create an
157
- account for yourself.
75
+ and generate the RDoc.
data/Rakefile CHANGED
@@ -1,19 +1,41 @@
1
1
  # -*- ruby -*-
2
+ # Copyright (C) 2013-2018 Sascha Manns <Sascha.Manns@mailbox.org>
2
3
  # Release:
3
- # See README.rdoc.releasing
4
+ # Pre-release:
5
+ #* update docs
6
+ #* Update copyright years if needed, in the following paths:
7
+ # + lib/*
8
+ #* Check version in lib/hoe-manns.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
4
32
 
5
33
  require 'rubygems'
6
34
  require 'hoe'
7
35
 
8
36
  Hoe.plugin :bundler
9
- Hoe.plugin :doofus
10
- #Hoe.plugin :git
11
- Hoe.plugin :manns
12
37
  Hoe.plugin :rdoc
13
- Hoe.plugin :reek
14
- Hoe.plugin :rubocop
15
38
  Hoe.plugin :rubygems
16
- Hoe.plugin :travis
17
39
  Hoe.plugin :version
18
40
 
19
41
 
@@ -22,32 +44,22 @@ Hoe.plugin :version
22
44
  Hoe.spec 'hoe-packaging' do
23
45
  developer('Sascha Manns', 'Sascha.Manns@mailbox.org')
24
46
  license 'GPL-3.0' # this should match the license in the README
25
- require_ruby_version '>= 2.2.0'
47
+ require_ruby_version '>= 2.3.0'
26
48
 
27
49
  self.history_file = 'History.rdoc'
28
50
  self.readme_file = 'README.rdoc'
29
51
  self.extra_rdoc_files = FileList['*.rdoc'].to_a
30
- self.post_install_message = '*** Extend your hoerc: https://saigkill.github.io/hoe-packaging/about/ *** Please file bugreports on: https://bugs.launchpad.net/hoe-packaging'
52
+ self.post_install_message = '*** Please file bugreports on: https://github.com/saigkill/hoe-packaging/issues'
31
53
 
32
- dependency 'bundler', '~> 1.16'
33
54
  dependency 'fpm', '~> 1.9'
34
55
  dependency 'fpm-cookery', '~> 0.33'
35
56
  dependency 'parseconfig', '~> 1.0.8'
36
57
 
37
- extra_dev_deps << ['hoe-bundler', '~> 1.3']
38
- extra_dev_deps << ['hoe-doofus', '~> 1.0']
39
- extra_dev_deps << ['hoe-git', '~> 1.6']
40
- extra_dev_deps << ['hoe-manns', '~> 1.6']
41
- extra_dev_deps << ['hoe-reek', '~> 1.1']
42
- extra_dev_deps << ['hoe-rubocop', '~> 1.0']
43
- extra_dev_deps << ['hoe-rubygems', '~> 1.0']
44
- extra_dev_deps << ['hoe-travis', '~> 1.3']
58
+ extra_dev_deps << ['hoe-bundler', '~> 1.4']
45
59
  extra_dev_deps << ['hoe-version', '~> 1.2']
46
- extra_dev_deps << ['rake', '~> 12.1']
47
- extra_dev_deps << ['rdoc', '~> 5.1']
48
- extra_dev_deps << ['reek', '~> 4.7']
60
+ extra_dev_deps << ['rake', '~> 12.3']
61
+ extra_dev_deps << ['rdoc', '~> 6.0']
49
62
  extra_dev_deps << ['rspec', '~> 3.7']
50
- extra_dev_deps << ['rubocop', '~> 0.51']
51
63
  extra_dev_deps << ['coveralls', '~> 0.8']
52
64
  end
53
65
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2013-2017 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ # Copyright (C) 2013-2018 Sascha Manns <Sascha.Manns@mailbox.org>
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
@@ -22,7 +22,7 @@ require 'hoe'
22
22
  # rubocop:disable Style/ClassAndModuleChildren
23
23
  module Hoe::Packaging
24
24
  # Versionizing
25
- VERSION = '1.2.2'.freeze
25
+ VERSION = '1.2.3'.freeze
26
26
  attr_accessor :create_packages
27
27
  attr_accessor :deploy_packages
28
28
 
metadata CHANGED
@@ -1,29 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hoe-packaging
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.2
4
+ version: 1.2.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: 2017-11-06 00:00:00.000000000 Z
11
+ date: 2018-04-28 00:00:00.000000000 Z
12
12
  dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: bundler
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '1.16'
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - "~>"
25
- - !ruby/object:Gem::Version
26
- version: '1.16'
27
13
  - !ruby/object:Gem::Dependency
28
14
  name: fpm
29
15
  requirement: !ruby/object:Gem::Requirement
@@ -72,112 +58,14 @@ dependencies:
72
58
  requirements:
73
59
  - - "~>"
74
60
  - !ruby/object:Gem::Version
75
- version: '1.3'
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - "~>"
81
- - !ruby/object:Gem::Version
82
- version: '1.3'
83
- - !ruby/object:Gem::Dependency
84
- name: hoe-doofus
85
- requirement: !ruby/object:Gem::Requirement
86
- requirements:
87
- - - "~>"
88
- - !ruby/object:Gem::Version
89
- version: '1.0'
90
- type: :development
91
- prerelease: false
92
- version_requirements: !ruby/object:Gem::Requirement
93
- requirements:
94
- - - "~>"
95
- - !ruby/object:Gem::Version
96
- version: '1.0'
97
- - !ruby/object:Gem::Dependency
98
- name: hoe-git
99
- requirement: !ruby/object:Gem::Requirement
100
- requirements:
101
- - - "~>"
102
- - !ruby/object:Gem::Version
103
- version: '1.6'
104
- type: :development
105
- prerelease: false
106
- version_requirements: !ruby/object:Gem::Requirement
107
- requirements:
108
- - - "~>"
109
- - !ruby/object:Gem::Version
110
- version: '1.6'
111
- - !ruby/object:Gem::Dependency
112
- name: hoe-manns
113
- requirement: !ruby/object:Gem::Requirement
114
- requirements:
115
- - - "~>"
116
- - !ruby/object:Gem::Version
117
- version: '1.6'
118
- type: :development
119
- prerelease: false
120
- version_requirements: !ruby/object:Gem::Requirement
121
- requirements:
122
- - - "~>"
123
- - !ruby/object:Gem::Version
124
- version: '1.6'
125
- - !ruby/object:Gem::Dependency
126
- name: hoe-reek
127
- requirement: !ruby/object:Gem::Requirement
128
- requirements:
129
- - - "~>"
130
- - !ruby/object:Gem::Version
131
- version: '1.1'
61
+ version: '1.4'
132
62
  type: :development
133
63
  prerelease: false
134
64
  version_requirements: !ruby/object:Gem::Requirement
135
65
  requirements:
136
66
  - - "~>"
137
67
  - !ruby/object:Gem::Version
138
- version: '1.1'
139
- - !ruby/object:Gem::Dependency
140
- name: hoe-rubocop
141
- requirement: !ruby/object:Gem::Requirement
142
- requirements:
143
- - - "~>"
144
- - !ruby/object:Gem::Version
145
- version: '1.0'
146
- type: :development
147
- prerelease: false
148
- version_requirements: !ruby/object:Gem::Requirement
149
- requirements:
150
- - - "~>"
151
- - !ruby/object:Gem::Version
152
- version: '1.0'
153
- - !ruby/object:Gem::Dependency
154
- name: hoe-rubygems
155
- requirement: !ruby/object:Gem::Requirement
156
- requirements:
157
- - - "~>"
158
- - !ruby/object:Gem::Version
159
- version: '1.0'
160
- type: :development
161
- prerelease: false
162
- version_requirements: !ruby/object:Gem::Requirement
163
- requirements:
164
- - - "~>"
165
- - !ruby/object:Gem::Version
166
- version: '1.0'
167
- - !ruby/object:Gem::Dependency
168
- name: hoe-travis
169
- requirement: !ruby/object:Gem::Requirement
170
- requirements:
171
- - - "~>"
172
- - !ruby/object:Gem::Version
173
- version: '1.3'
174
- type: :development
175
- prerelease: false
176
- version_requirements: !ruby/object:Gem::Requirement
177
- requirements:
178
- - - "~>"
179
- - !ruby/object:Gem::Version
180
- version: '1.3'
68
+ version: '1.4'
181
69
  - !ruby/object:Gem::Dependency
182
70
  name: hoe-version
183
71
  requirement: !ruby/object:Gem::Requirement
@@ -198,42 +86,28 @@ dependencies:
198
86
  requirements:
199
87
  - - "~>"
200
88
  - !ruby/object:Gem::Version
201
- version: '12.1'
89
+ version: '12.3'
202
90
  type: :development
203
91
  prerelease: false
204
92
  version_requirements: !ruby/object:Gem::Requirement
205
93
  requirements:
206
94
  - - "~>"
207
95
  - !ruby/object:Gem::Version
208
- version: '12.1'
96
+ version: '12.3'
209
97
  - !ruby/object:Gem::Dependency
210
98
  name: rdoc
211
99
  requirement: !ruby/object:Gem::Requirement
212
100
  requirements:
213
101
  - - "~>"
214
102
  - !ruby/object:Gem::Version
215
- version: '5.1'
103
+ version: '6.0'
216
104
  type: :development
217
105
  prerelease: false
218
106
  version_requirements: !ruby/object:Gem::Requirement
219
107
  requirements:
220
108
  - - "~>"
221
109
  - !ruby/object:Gem::Version
222
- version: '5.1'
223
- - !ruby/object:Gem::Dependency
224
- name: reek
225
- requirement: !ruby/object:Gem::Requirement
226
- requirements:
227
- - - "~>"
228
- - !ruby/object:Gem::Version
229
- version: '4.7'
230
- type: :development
231
- prerelease: false
232
- version_requirements: !ruby/object:Gem::Requirement
233
- requirements:
234
- - - "~>"
235
- - !ruby/object:Gem::Version
236
- version: '4.7'
110
+ version: '6.0'
237
111
  - !ruby/object:Gem::Dependency
238
112
  name: rspec
239
113
  requirement: !ruby/object:Gem::Requirement
@@ -248,20 +122,6 @@ dependencies:
248
122
  - - "~>"
249
123
  - !ruby/object:Gem::Version
250
124
  version: '3.7'
251
- - !ruby/object:Gem::Dependency
252
- name: rubocop
253
- requirement: !ruby/object:Gem::Requirement
254
- requirements:
255
- - - "~>"
256
- - !ruby/object:Gem::Version
257
- version: '0.51'
258
- type: :development
259
- prerelease: false
260
- version_requirements: !ruby/object:Gem::Requirement
261
- requirements:
262
- - - "~>"
263
- - !ruby/object:Gem::Version
264
- version: '0.51'
265
125
  - !ruby/object:Gem::Dependency
266
126
  name: coveralls
267
127
  requirement: !ruby/object:Gem::Requirement
@@ -282,55 +142,54 @@ dependencies:
282
142
  requirements:
283
143
  - - "~>"
284
144
  - !ruby/object:Gem::Version
285
- version: '3.16'
145
+ version: '3.17'
286
146
  type: :development
287
147
  prerelease: false
288
148
  version_requirements: !ruby/object:Gem::Requirement
289
149
  requirements:
290
150
  - - "~>"
291
151
  - !ruby/object:Gem::Version
292
- version: '3.16'
152
+ version: '3.17'
293
153
  description: |-
294
154
  hoe-packaging is a plugin for the hoe ruby projecthelper (https://github.com/seattlerb/hoe). It provides creation of rpm and deb packages,
295
155
  also a deployment to bintray.
296
156
 
297
- The History.rdoc contains a detailed description on what has changed. For most
298
- users the NEWS file might be a better place to look since it contains
299
- change summaries between the different versions.
157
+ The History.rdoc contains a detailed description on what has changed.
300
158
 
301
- youtube_dlhelper is released under the GPL3 License, see the file 'License.rdoc'
302
- for more information.
159
+ hoe-packaging is released under the GPL3 License, see the file 'License.rdoc' for more information.
303
160
 
304
161
  The official web site is:
305
162
 
306
- https://launchpad.net/hoe-packaging
163
+ https://github.com/saigkill/hoe-packaging
307
164
  email:
308
165
  - Sascha.Manns@mailbox.org
309
166
  executables: []
310
167
  extensions: []
311
168
  extra_rdoc_files:
169
+ - CODE_OF_CONDUCT.rdoc
170
+ - DEVELOPING.rdoc
312
171
  - History.rdoc
313
172
  - LICENSE.rdoc
173
+ - MAINTENANCE.rdoc
314
174
  - Manifest.txt
315
175
  - README.rdoc
316
- - STATUS.rdoc
317
176
  files:
177
+ - CODE_OF_CONDUCT.rdoc
178
+ - DEVELOPING.rdoc
318
179
  - Gemfile
319
180
  - Gemfile.lock
320
181
  - History.rdoc
321
182
  - LICENSE.rdoc
183
+ - MAINTENANCE.rdoc
322
184
  - Manifest.txt
323
- - NEWS
324
185
  - README.rdoc
325
186
  - Rakefile
326
- - STATUS.rdoc
327
187
  - lib/hoe/packaging.rb
328
- homepage: https://launchpad.net/hoe-packaging
188
+ homepage: https://github.com/saigkill/hoe-packaging
329
189
  licenses:
330
190
  - GPL-3.0
331
191
  metadata: {}
332
- post_install_message: "*** Extend your hoerc: https://saigkill.github.io/hoe-packaging/about/
333
- *** Please file bugreports on: https://bugs.launchpad.net/hoe-packaging"
192
+ post_install_message: "*** Please file bugreports on: https://github.com/saigkill/hoe-packaging/issues"
334
193
  rdoc_options:
335
194
  - "--main"
336
195
  - README.rdoc
@@ -340,7 +199,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
340
199
  requirements:
341
200
  - - ">="
342
201
  - !ruby/object:Gem::Version
343
- version: 2.2.0
202
+ version: 2.3.0
344
203
  required_rubygems_version: !ruby/object:Gem::Requirement
345
204
  requirements:
346
205
  - - ">="
@@ -348,7 +207,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
348
207
  version: '0'
349
208
  requirements: []
350
209
  rubyforge_project:
351
- rubygems_version: 2.6.13
210
+ rubygems_version: 2.7.6
352
211
  signing_key:
353
212
  specification_version: 4
354
213
  summary: hoe-packaging is a plugin for the hoe ruby projecthelper (https://github.com/seattlerb/hoe)
data/NEWS DELETED
@@ -1,130 +0,0 @@
1
- ===============================================================================
2
- hoe-packaging 1.2.2 - 2017-11-07
3
- ===============================================================================
4
-
5
- hoe-packaging 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 reek dependency
20
-
21
-
22
- ===============================================================================
23
- SOURCES / PACKAGES
24
- ===============================================================================
25
-
26
- Sources
27
- -------
28
-
29
- * hoe-packaging 1.2.2 Tarballs:
30
- https://launchpad.net/hoe-packaging/1.x/1.2.2/+download/hoe-packaging-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-packaging/about/
38
-
39
- Gems:
40
-
41
- * https://rubygems.org/gems/hoe-packaging
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-packaging
51
-
52
-
53
- ===============================================================================
54
- VALUED HOE-PACKAGING 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-packaging. Without their help, there would be no release!
62
-
63
- Sascha Manns
64
-
65
- ===============================================================================
66
- hoe-packaging 1.2.1 - 2017-11-02
67
- ===============================================================================
68
-
69
- hoe-packaging 1.2.1 is the culmination of two 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
- * HP-5: Changed documentation from publican to daps
84
- * HP-6: Add more targets to travis.yml
85
- * HP-7: Add parseconfig as dependency
86
- * HP-8: Fix method colour to color (Rainbow Standard)
87
-
88
-
89
- ===============================================================================
90
- SOURCES / PACKAGES
91
- ===============================================================================
92
-
93
- Sources
94
- -------
95
-
96
- * hoe-packaging 1.2.1 Tarballs:
97
- https://launchpad.net/hoe-packaging/1.x/1.2.1/+download/hoe-packaging-1.2.1.tar.xz
98
-
99
- Packages
100
- --------
101
-
102
- Download and installation information is available here:
103
-
104
- * https://saigkill.github.io/hoe-packaging/about/
105
-
106
- Gems:
107
-
108
- * https://rubygems.org/gems/hoe-packaging
109
-
110
- ===============================================================================
111
- REPORT BUGS - HELP THE PROJECT - GROW THE COMMUNITY
112
- ===============================================================================
113
-
114
- If you encounter any bad behavior with this release, please do not
115
- hesitate to file bugs!
116
-
117
- * https://bugs.launchpad.net/hoe-packaging
118
-
119
-
120
- ===============================================================================
121
- VALUED HOE-PACKAGING CONTRIBUTORS
122
- ===============================================================================
123
-
124
- Contributors For This Release
125
- -----------------------------
126
-
127
- The following people directly contributed to the release of this version
128
- of hoe-packaging. Without their help, there would be no release!
129
-
130
- Sascha Manns
@@ -1,24 +0,0 @@
1
- = Misc status badges
2
-
3
- == Gem
4
- last public version :: {<img src="https://badge.fury.io/rb/hoe-packaging.png" alt="Last Version" />}[http://rubygems.org/gems/hoe-packaging]
5
- downloads latest :: {<img src="https://img.shields.io/gem/dtv/hoe-packaging.svg" alt="Downloads latest version" />}[http://rubygems.org/gems/hoe-packaging]
6
- downloads all :: {<img src="https://img.shields.io/gem/dt/hoe-packaging.svg" alt="Downloads all versions" />}[http://rubygems.org/gems/hoe-packaging]
7
-
8
- == Code Review
9
- code quality :: {<img src="https://scrutinizer-ci.com/g/saigkill/hoe-packaging/badges/quality-score.png?b=master" />}[https://scrutinizer-ci.com/g/saigkill/hoe-packaging/]
10
- code quality :: {<img src="https://api.codeclimate.com/v1/badges/5491c830409827e04868/maintainability" />}[https://codeclimate.com/github/saigkill/hoe-packaging/maintainability]
11
- code quality :: {<img src="https://api.codacy.com/project/badge/Grade/ddc76c674b464b4eac7a8d05a0155c24" alt="Codacy code quality" />}[https://www.codacy.com/app/samannsml/hoe-packaging?utm_source=github.com&utm_medium=referral&utm_content=saigkill/hoe-packaging&utm_campaign=Badge_Grade]
12
-
13
- == Security
14
- security :: {<img src="https://hakiri.io/github/saigkill/hoe-packaging/master.svg" alt="security" />}[https://hakiri.io/github/saigkill/hoe-packaging/master]
15
-
16
- == Dependencies
17
- dependency check :: {<img src="https://gemnasium.com/saigkill/hoe-packaging.svg" alt="Dependency Status" />}[https://gemnasium.com/saigkill/hoe-packaging]
18
-
19
- == Documentation
20
- documentation quality :: {<img src="http://inch-ci.org/github/saigkill/hoe-packaging.svg?branch=master" alt="Documentation Quality" />}[http://inch-ci.org/github/saigkill/hoe-packaging]
21
-
22
- == Donations
23
- donations :: {<img src="https://pledgie.com/campaigns/30335.png?skin_name=chrome" alt="Donations" />}[https://pledgie.com/campaigns/30335]
24
- donations :: {<img src="https://saigkill.tuxfamily.org/dotclear/public/Amazon.png" alt="Donations" />}[http://www.amazon.de/registry/wishlist/D75HOEQ00BDD]