hoe-packaging 1.2.4 → 1.2.5
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.
- checksums.yaml +4 -4
- data/{History.rdoc → CHANGELOG.md} +24 -14
- data/LICENSE.md +636 -0
- data/{MAINTENANCE.rdoc → MAINTENANCE.md} +1 -1
- data/README.md +79 -0
- data/lib/hoe/packaging.rb +2 -2
- metadata +29 -98
- data/CODE_OF_CONDUCT.rdoc +0 -26
- data/Gemfile +0 -19
- data/Gemfile.lock +0 -143
- data/LICENSE.rdoc +0 -619
- data/Manifest.txt +0 -11
- data/README.rdoc +0 -75
- data/Rakefile +0 -69
data/README.md
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# hoe-packaging
|
|
2
|
+
|
|
3
|
+
|What | Where |
|
|
4
|
+
|-----|--------|
|
|
5
|
+
| code | https://github.com/saigkill/hoe-packaging |
|
|
6
|
+
| docs | https://github.com/saigkill/hoe-packaging/wiki |
|
|
7
|
+
| apidoc | http://www.rubydoc.info/gems/hoe-packaging |
|
|
8
|
+
| bugs & feature requests | https://github.com/saigkill/hoe-packaging/issues |
|
|
9
|
+
| openhub statistics | https://www.openhub.net/p/hoe-packaging |
|
|
10
|
+
| mailing list | https://groups.google.com/forum/#!forum/saigkills-hoe-plugins |
|
|
11
|
+
| authors blog | https://saschamanns.de |
|
|
12
|
+
| min. rubyver | 2.3.0 |
|
|
13
|
+
|
|
14
|
+
| What | Status |
|
|
15
|
+
|-------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
16
|
+
|last public version | [](http://rubygems.org/gems/hoe-packaging) |
|
|
17
|
+
|downloads latest | [](http://rubygems.org/gems/hoe-packaging) |
|
|
18
|
+
|downloads all | [](http://rubygems.org/gems/hoe-packaging) |
|
|
19
|
+
|code quality | [](https://codeclimate.com/github/saigkill/hoe-packaging/maintainability) |
|
|
20
|
+
|dependencies|[](https://dependabot.com) |
|
|
21
|
+
|security | [](https://hakiri.io/github/saigkill/hoe-packaging/master/shield) |
|
|
22
|
+
|vulnerabilities|[](https://snyk.io/test/github/saigkill/hoe-packaging?targetFile=Gemfile.lock) |
|
|
23
|
+
|documentation quality | [](https://inch-ci.org/github/saigkill/hoe-packaging) |
|
|
24
|
+
|
|
25
|
+
## DESCRIPTION:
|
|
26
|
+
|
|
27
|
+
hoe-packaging is a plugin for the hoe ruby projecthelper (https://github.com/seattlerb/hoe). It provides creation of rpm and deb packages,
|
|
28
|
+
also a deployment to bintray.
|
|
29
|
+
|
|
30
|
+
The CHANGELOG.md contains a detailed description on what has changed.
|
|
31
|
+
|
|
32
|
+
hoe-packaging is released under the GPL3 License, see the file 'LICENSE.md' for more information.
|
|
33
|
+
|
|
34
|
+
The official web site is:
|
|
35
|
+
|
|
36
|
+
https://github.com/saigkill/hoe-packaging
|
|
37
|
+
|
|
38
|
+
## FEATURES:
|
|
39
|
+
|
|
40
|
+
* creating of deb & rpm packages
|
|
41
|
+
* deploying to bintray.
|
|
42
|
+
|
|
43
|
+
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.
|
|
44
|
+
|
|
45
|
+
See the {Tracker}[https://github.com/saigkill/hoe-packaging/issues] for checking known issues.
|
|
46
|
+
|
|
47
|
+
## SYNOPSIS:
|
|
48
|
+
|
|
49
|
+
Use in your Rakefile:
|
|
50
|
+
|
|
51
|
+
Hoe.plugin :packaging
|
|
52
|
+
|
|
53
|
+
Hoe.spec 'yourproject' do
|
|
54
|
+
...
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
Also add hoe-packaging to your requirements and recreate your Gemfile.
|
|
58
|
+
|
|
59
|
+
Read the documentation at: https://github.com/saigkill/hoe-packaging/wiki
|
|
60
|
+
|
|
61
|
+
## REQUIREMENTS:
|
|
62
|
+
|
|
63
|
+
* fpm
|
|
64
|
+
* fpm-cookery
|
|
65
|
+
|
|
66
|
+
## INSTALL:
|
|
67
|
+
|
|
68
|
+
The installation is very easy.
|
|
69
|
+
|
|
70
|
+
gem install hoe-packaging
|
|
71
|
+
|
|
72
|
+
## DEVELOPERS:
|
|
73
|
+
|
|
74
|
+
After checking out the source, run:
|
|
75
|
+
|
|
76
|
+
$ rake newb
|
|
77
|
+
|
|
78
|
+
This task will install any missing dependencies, run the tests/specs,
|
|
79
|
+
and generate the RDoc.
|
data/lib/hoe/packaging.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (C) 2013-
|
|
1
|
+
# Copyright (C) 2013-2019 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
|
|
@@ -22,7 +22,7 @@ require 'hoe'
|
|
|
22
22
|
# rubocop:disable Style/ClassAndModuleChildren
|
|
23
23
|
module Hoe::Packaging
|
|
24
24
|
# Versionizing
|
|
25
|
-
VERSION = '1.2.
|
|
25
|
+
VERSION = '1.2.5'.freeze
|
|
26
26
|
attr_accessor :create_packages
|
|
27
27
|
attr_accessor :deploy_packages
|
|
28
28
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hoe-packaging
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sascha Manns
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-05-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fpm
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '1.
|
|
19
|
+
version: '1.11'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '1.
|
|
26
|
+
version: '1.11'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: fpm-cookery
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -52,34 +52,6 @@ dependencies:
|
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: 1.0.8
|
|
55
|
-
- !ruby/object:Gem::Dependency
|
|
56
|
-
name: hoe-bundler
|
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
|
58
|
-
requirements:
|
|
59
|
-
- - "~>"
|
|
60
|
-
- !ruby/object:Gem::Version
|
|
61
|
-
version: '1.4'
|
|
62
|
-
type: :development
|
|
63
|
-
prerelease: false
|
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
-
requirements:
|
|
66
|
-
- - "~>"
|
|
67
|
-
- !ruby/object:Gem::Version
|
|
68
|
-
version: '1.4'
|
|
69
|
-
- !ruby/object:Gem::Dependency
|
|
70
|
-
name: hoe-version
|
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
|
72
|
-
requirements:
|
|
73
|
-
- - "~>"
|
|
74
|
-
- !ruby/object:Gem::Version
|
|
75
|
-
version: '1.2'
|
|
76
|
-
type: :development
|
|
77
|
-
prerelease: false
|
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
-
requirements:
|
|
80
|
-
- - "~>"
|
|
81
|
-
- !ruby/object:Gem::Version
|
|
82
|
-
version: '1.2'
|
|
83
55
|
- !ruby/object:Gem::Dependency
|
|
84
56
|
name: rake
|
|
85
57
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -100,42 +72,14 @@ dependencies:
|
|
|
100
72
|
requirements:
|
|
101
73
|
- - "~>"
|
|
102
74
|
- !ruby/object:Gem::Version
|
|
103
|
-
version: '6.
|
|
75
|
+
version: '6.1'
|
|
104
76
|
type: :development
|
|
105
77
|
prerelease: false
|
|
106
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
107
79
|
requirements:
|
|
108
80
|
- - "~>"
|
|
109
81
|
- !ruby/object:Gem::Version
|
|
110
|
-
version: '6.
|
|
111
|
-
- !ruby/object:Gem::Dependency
|
|
112
|
-
name: rspec
|
|
113
|
-
requirement: !ruby/object:Gem::Requirement
|
|
114
|
-
requirements:
|
|
115
|
-
- - "~>"
|
|
116
|
-
- !ruby/object:Gem::Version
|
|
117
|
-
version: '3.7'
|
|
118
|
-
type: :development
|
|
119
|
-
prerelease: false
|
|
120
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
-
requirements:
|
|
122
|
-
- - "~>"
|
|
123
|
-
- !ruby/object:Gem::Version
|
|
124
|
-
version: '3.7'
|
|
125
|
-
- !ruby/object:Gem::Dependency
|
|
126
|
-
name: coveralls
|
|
127
|
-
requirement: !ruby/object:Gem::Requirement
|
|
128
|
-
requirements:
|
|
129
|
-
- - "~>"
|
|
130
|
-
- !ruby/object:Gem::Version
|
|
131
|
-
version: '0.8'
|
|
132
|
-
type: :development
|
|
133
|
-
prerelease: false
|
|
134
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
135
|
-
requirements:
|
|
136
|
-
- - "~>"
|
|
137
|
-
- !ruby/object:Gem::Version
|
|
138
|
-
version: '0.8'
|
|
82
|
+
version: '6.1'
|
|
139
83
|
- !ruby/object:Gem::Dependency
|
|
140
84
|
name: hoe
|
|
141
85
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -150,49 +94,35 @@ dependencies:
|
|
|
150
94
|
- - "~>"
|
|
151
95
|
- !ruby/object:Gem::Version
|
|
152
96
|
version: '3.17'
|
|
153
|
-
description:
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
The History.rdoc contains a detailed description on what has changed.
|
|
158
|
-
|
|
159
|
-
hoe-packaging is released under the GPL3 License, see the file 'License.rdoc' for more information.
|
|
160
|
-
|
|
161
|
-
The official web site is:
|
|
162
|
-
|
|
163
|
-
https://github.com/saigkill/hoe-packaging
|
|
164
|
-
email:
|
|
165
|
-
- Sascha.Manns@outlook.de
|
|
97
|
+
description: " hoe-packaging is a plugin for the hoe ruby projecthelper (https://github.com/seattlerb/hoe).
|
|
98
|
+
It provides creation of rpm and deb packages, also a deployment to bintray.\n"
|
|
99
|
+
email: Sascha.Manns@outlook.de
|
|
166
100
|
executables: []
|
|
167
101
|
extensions: []
|
|
168
102
|
extra_rdoc_files:
|
|
169
|
-
-
|
|
170
|
-
-
|
|
171
|
-
-
|
|
172
|
-
-
|
|
173
|
-
- MAINTENANCE.rdoc
|
|
174
|
-
- Manifest.txt
|
|
175
|
-
- README.rdoc
|
|
103
|
+
- CHANGELOG.md
|
|
104
|
+
- LICENSE.md
|
|
105
|
+
- MAINTENANCE.md
|
|
106
|
+
- README.md
|
|
176
107
|
files:
|
|
177
|
-
-
|
|
108
|
+
- CHANGELOG.md
|
|
178
109
|
- CONTRIBUTING.md
|
|
179
|
-
-
|
|
180
|
-
-
|
|
181
|
-
-
|
|
182
|
-
- LICENSE.rdoc
|
|
183
|
-
- MAINTENANCE.rdoc
|
|
184
|
-
- Manifest.txt
|
|
185
|
-
- README.rdoc
|
|
186
|
-
- Rakefile
|
|
110
|
+
- LICENSE.md
|
|
111
|
+
- MAINTENANCE.md
|
|
112
|
+
- README.md
|
|
187
113
|
- lib/hoe/packaging.rb
|
|
188
114
|
homepage: https://github.com/saigkill/hoe-packaging
|
|
189
115
|
licenses:
|
|
190
116
|
- GPL-3.0
|
|
191
|
-
metadata:
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
-
|
|
195
|
-
|
|
117
|
+
metadata:
|
|
118
|
+
homepage_uri: https://github.com/saigkill/hoe-packaging
|
|
119
|
+
changelog_uri: https://github.com/saigkill/hoe-packaging/blob/master/CHANGELOG.md
|
|
120
|
+
source_code_uri: https://github.com/saigkill/hoe-packaging
|
|
121
|
+
documentation_uri: https://github.com/saigkill/hoe-packaging/wiki
|
|
122
|
+
bug_tracker_uri: https://github.com/saigkill/hoe-packaging/issues
|
|
123
|
+
mailing_list_uri: https://groups.google.com/forum/#!forum/saigkills-hoe-plugins
|
|
124
|
+
post_install_message: 'Please file bugreports on: https://github.com/saigkill/hoe-packaging/issues'
|
|
125
|
+
rdoc_options: []
|
|
196
126
|
require_paths:
|
|
197
127
|
- lib
|
|
198
128
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
@@ -207,8 +137,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
207
137
|
version: '0'
|
|
208
138
|
requirements: []
|
|
209
139
|
rubyforge_project:
|
|
210
|
-
rubygems_version: 2.7.6
|
|
140
|
+
rubygems_version: 2.7.6.2
|
|
211
141
|
signing_key:
|
|
212
142
|
specification_version: 4
|
|
213
|
-
summary:
|
|
143
|
+
summary: Collection of some personal used tasks for creating and deploying RPM and
|
|
144
|
+
DEB packages.
|
|
214
145
|
test_files: []
|
data/CODE_OF_CONDUCT.rdoc
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
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/].
|
data/Gemfile
DELETED
|
@@ -1,19 +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 "fpm", "~>1.10"
|
|
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
|
data/Gemfile.lock
DELETED
|
@@ -1,143 +0,0 @@
|
|
|
1
|
-
GEM
|
|
2
|
-
remote: https://rubygems.org/
|
|
3
|
-
specs:
|
|
4
|
-
addressable (2.3.8)
|
|
5
|
-
arr-pm (0.0.10)
|
|
6
|
-
cabin (> 0)
|
|
7
|
-
backports (3.11.3)
|
|
8
|
-
cabin (0.9.0)
|
|
9
|
-
childprocess (0.9.0)
|
|
10
|
-
ffi (~> 1.0, >= 1.0.11)
|
|
11
|
-
clamp (1.0.1)
|
|
12
|
-
coveralls (0.8.21)
|
|
13
|
-
json (>= 1.8, < 3)
|
|
14
|
-
simplecov (~> 0.14.1)
|
|
15
|
-
term-ansicolor (~> 1.3)
|
|
16
|
-
thor (~> 0.19.4)
|
|
17
|
-
tins (~> 1.6)
|
|
18
|
-
diff-lcs (1.3)
|
|
19
|
-
docile (1.1.5)
|
|
20
|
-
dotenv (2.5.0)
|
|
21
|
-
facter (2.5.1)
|
|
22
|
-
facter (2.5.1-x64-mingw32)
|
|
23
|
-
ffi (~> 1.9.5)
|
|
24
|
-
ffi (1.9.25)
|
|
25
|
-
ffi (1.9.25-x64-mingw32)
|
|
26
|
-
ffi-win32-extensions (1.0.3)
|
|
27
|
-
ffi
|
|
28
|
-
fpm (1.10.0)
|
|
29
|
-
arr-pm (~> 0.0.10)
|
|
30
|
-
backports (>= 2.6.2)
|
|
31
|
-
cabin (>= 0.6.0)
|
|
32
|
-
childprocess
|
|
33
|
-
clamp (~> 1.0.0)
|
|
34
|
-
ffi
|
|
35
|
-
json (>= 1.7.7, < 2.0)
|
|
36
|
-
pleaserun (~> 0.0.29)
|
|
37
|
-
ruby-xz (~> 0.2.3)
|
|
38
|
-
stud
|
|
39
|
-
fpm-cookery (0.33.0)
|
|
40
|
-
addressable (~> 2.3.8)
|
|
41
|
-
facter
|
|
42
|
-
fpm (~> 1.1)
|
|
43
|
-
json (>= 1.7.7, < 2.0)
|
|
44
|
-
json_pure (>= 1.7.7, < 2.0)
|
|
45
|
-
puppet (~> 3.4)
|
|
46
|
-
safe_yaml (~> 1.0.4)
|
|
47
|
-
systemu
|
|
48
|
-
hiera (1.3.4)
|
|
49
|
-
json_pure
|
|
50
|
-
hoe (3.17.0)
|
|
51
|
-
rake (>= 0.8, < 13.0)
|
|
52
|
-
hoe-bundler (1.4.0)
|
|
53
|
-
hoe-version (1.2.0)
|
|
54
|
-
insist (1.0.0)
|
|
55
|
-
io-like (0.3.0)
|
|
56
|
-
json (1.8.6)
|
|
57
|
-
json_pure (1.8.6)
|
|
58
|
-
minitar (0.5.4)
|
|
59
|
-
mustache (0.99.8)
|
|
60
|
-
parseconfig (1.0.8)
|
|
61
|
-
pleaserun (0.0.30)
|
|
62
|
-
cabin (> 0)
|
|
63
|
-
clamp
|
|
64
|
-
dotenv
|
|
65
|
-
insist
|
|
66
|
-
mustache (= 0.99.8)
|
|
67
|
-
stud
|
|
68
|
-
puppet (3.8.7)
|
|
69
|
-
facter (> 1.6, < 3)
|
|
70
|
-
hiera (~> 1.0)
|
|
71
|
-
json_pure
|
|
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.4)
|
|
85
|
-
rspec (3.7.0)
|
|
86
|
-
rspec-core (~> 3.7.0)
|
|
87
|
-
rspec-expectations (~> 3.7.0)
|
|
88
|
-
rspec-mocks (~> 3.7.0)
|
|
89
|
-
rspec-core (3.7.1)
|
|
90
|
-
rspec-support (~> 3.7.0)
|
|
91
|
-
rspec-expectations (3.7.0)
|
|
92
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
93
|
-
rspec-support (~> 3.7.0)
|
|
94
|
-
rspec-mocks (3.7.0)
|
|
95
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
96
|
-
rspec-support (~> 3.7.0)
|
|
97
|
-
rspec-support (3.7.1)
|
|
98
|
-
ruby-xz (0.2.3)
|
|
99
|
-
ffi (~> 1.9)
|
|
100
|
-
io-like (~> 0.3)
|
|
101
|
-
safe_yaml (1.0.4)
|
|
102
|
-
simplecov (0.14.1)
|
|
103
|
-
docile (~> 1.1.0)
|
|
104
|
-
json (>= 1.8, < 3)
|
|
105
|
-
simplecov-html (~> 0.10.0)
|
|
106
|
-
simplecov-html (0.10.2)
|
|
107
|
-
stud (0.0.23)
|
|
108
|
-
systemu (2.6.5)
|
|
109
|
-
term-ansicolor (1.6.0)
|
|
110
|
-
tins (~> 1.0)
|
|
111
|
-
thor (0.19.4)
|
|
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
|
|
124
|
-
|
|
125
|
-
PLATFORMS
|
|
126
|
-
ruby
|
|
127
|
-
x64-mingw32
|
|
128
|
-
x86_64-linux
|
|
129
|
-
|
|
130
|
-
DEPENDENCIES
|
|
131
|
-
coveralls (~> 0.8)
|
|
132
|
-
fpm (~> 1.10)
|
|
133
|
-
fpm-cookery (~> 0.33)
|
|
134
|
-
hoe (~> 3.17)
|
|
135
|
-
hoe-bundler (~> 1.4)
|
|
136
|
-
hoe-version (~> 1.2)
|
|
137
|
-
parseconfig (~> 1.0.8)
|
|
138
|
-
rake (~> 12.3)
|
|
139
|
-
rdoc (~> 6.0)
|
|
140
|
-
rspec (~> 3.7)
|
|
141
|
-
|
|
142
|
-
BUNDLED WITH
|
|
143
|
-
1.16.2
|