hoe-packaging 1.2.4 → 1.2.5

Sign up to get free protection for your applications and to get access to all the features.
data/Manifest.txt DELETED
@@ -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
- CONTRIBUTING.md
9
- MAINTENANCE.rdoc
10
- Rakefile
11
- lib/hoe/packaging.rb
data/README.rdoc DELETED
@@ -1,75 +0,0 @@
1
- = hoe-packaging
2
-
3
- code :: https://github.com/saigkill/hoe-packaging
4
- docs :: https://github.com/saigkill/hoe-packaging/wiki
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
- mailing list :: https://groups.google.com/forum/#!forum/saigkills-hoe-plugins
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-packaging.png" alt="Last Version" />}[http://rubygems.org/gems/hoe-packaging]
13
- downloads latest :: {<img src="https://img.shields.io/gem/dtv/hoe-packaging.svg" alt="Downloads latest version" />}[http://rubygems.org/gems/hoe-packaging]
14
- downloads all :: {<img src="https://img.shields.io/gem/dt/hoe-packaging.svg" alt="Downloads all versions" />}[http://rubygems.org/gems/hoe-packaging]
15
- 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/]
16
- code quality :: {<img src="https://api.codeclimate.com/v1/badges/5491c830409827e04868/maintainability" />}[https://codeclimate.com/github/saigkill/hoe-packaging/maintainability]
17
- 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]
18
- security :: {<img src="https://hakiri.io/github/saigkill/hoe-packaging/master.svg" alt="security" />}[https://hakiri.io/github/saigkill/hoe-packaging/master]
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: https://github.com/saigkill/hoe-packaging/wiki
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@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-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@outlook.de')
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.10'
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