hoe-packaging 1.2.3 → 1.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,19 +0,0 @@
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.
@@ -1,11 +0,0 @@
1
- Gemfile
2
- Gemfile.lock
3
- History.rdoc
4
- LICENSE.rdoc
5
- Manifest.txt
6
- README.rdoc
7
- CODE_OF_CONDUCT.rdoc
8
- DEVELOPING.rdoc
9
- MAINTENANCE.rdoc
10
- Rakefile
11
- lib/hoe/packaging.rb
@@ -1,75 +0,0 @@
1
- = hoe-packaging
2
-
3
- code :: https://github.com/saigkill/hoe-packaging
4
- docs :: http://saigkill.tuxfamily.org/documentation/hoe-packaging
5
- apidoc :: http://www.rubydoc.info/gems/hoe-packaging
6
- bugs & feature requests :: https://github.com/saigkill/hoe-packaging/issues
7
- openhub statistics :: https://www.openhub.net/p/hoe-packaging
8
- authors blog :: https://saigkill.tuxfamily.org
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]
20
-
21
- == DESCRIPTION:
22
-
23
- hoe-packaging is a plugin for the hoe ruby projecthelper (https://github.com/seattlerb/hoe). It provides creation of rpm and deb packages,
24
- also a deployment to bintray.
25
-
26
- The History.rdoc contains a detailed description on what has changed.
27
-
28
- hoe-packaging is released under the GPL3 License, see the file 'License.rdoc' for more information.
29
-
30
- The official web site is:
31
-
32
- https://github.com/saigkill/hoe-packaging
33
-
34
- == FEATURES:
35
-
36
- * creating of deb & rpm packages
37
- * deploying to bintray.
38
-
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.
40
-
41
- See the {Tracker}[https://github.com/saigkill/hoe-packaging/issues] for checking known issues.
42
-
43
- == SYNOPSIS:
44
-
45
- Use in your Rakefile:
46
-
47
- Hoe.plugin :packaging
48
-
49
- Hoe.spec 'yourproject' do
50
- ...
51
- end
52
-
53
- Also add hoe-packaging to your requirements and recreate your Gemfile.
54
-
55
- Read the documentation at: http://saigkill.tuxfamily.org/documentation/hoe-packaging
56
-
57
- == REQUIREMENTS:
58
-
59
- * fpm
60
- * fpm-cookery
61
-
62
- == INSTALL:
63
-
64
- The installation is very easy.
65
-
66
- gem install hoe-packaging
67
-
68
- == DEVELOPERS:
69
-
70
- After checking out the source, run:
71
-
72
- $ rake newb
73
-
74
- This task will install any missing dependencies, run the tests/specs,
75
- and generate the RDoc.
data/Rakefile DELETED
@@ -1,69 +0,0 @@
1
- # -*- ruby -*-
2
- # Copyright (C) 2013-2018 Sascha Manns <Sascha.Manns@mailbox.org>
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-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
32
-
33
- require 'rubygems'
34
- require 'hoe'
35
-
36
- Hoe.plugin :bundler
37
- Hoe.plugin :rdoc
38
- Hoe.plugin :rubygems
39
- Hoe.plugin :version
40
-
41
-
42
- ###########################################DEVELOPING ZONE##############################################################
43
- # rubocop:disable Metrics/LineLength
44
- Hoe.spec 'hoe-packaging' do
45
- developer('Sascha Manns', 'Sascha.Manns@mailbox.org')
46
- license 'GPL-3.0' # this should match the license in the README
47
- require_ruby_version '>= 2.3.0'
48
-
49
- self.history_file = 'History.rdoc'
50
- self.readme_file = 'README.rdoc'
51
- self.extra_rdoc_files = FileList['*.rdoc'].to_a
52
- self.post_install_message = '*** Please file bugreports on: https://github.com/saigkill/hoe-packaging/issues'
53
-
54
- dependency 'fpm', '~> 1.9'
55
- dependency 'fpm-cookery', '~> 0.33'
56
- dependency 'parseconfig', '~> 1.0.8'
57
-
58
- extra_dev_deps << ['hoe-bundler', '~> 1.4']
59
- extra_dev_deps << ['hoe-version', '~> 1.2']
60
- extra_dev_deps << ['rake', '~> 12.3']
61
- extra_dev_deps << ['rdoc', '~> 6.0']
62
- extra_dev_deps << ['rspec', '~> 3.7']
63
- extra_dev_deps << ['coveralls', '~> 0.8']
64
- end
65
-
66
- ##################################################SETUP ZONE############################################################
67
-
68
-
69
- # vim: syntax=ruby