hoe-packaging 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +4 -0
- data/.autotest +25 -0
- data/.codeclimate.yml +8 -0
- data/.coveralls.yml +2 -0
- data/.gemnasium.yml +5 -0
- data/.rspec +2 -0
- data/.rubocop.yml +39 -0
- data/.scrutinizer.yml +17 -0
- data/.travis.yml +29 -0
- data/CODE_OF_CONDUCT.md +17 -0
- data/CONTRIBUTING.md +33 -0
- data/Gemfile +43 -0
- data/Gemfile.lock +291 -0
- data/History.rdoc +7 -0
- data/LICENSE.rdoc +24 -0
- data/MAINTENANCE.md +11 -0
- data/Manifest.txt +25 -0
- data/README.rdoc +103 -0
- data/Rakefile +101 -0
- data/VERSION +1 -0
- data/config.reek +111 -0
- data/etc/hoe-packaging.cfg +2 -0
- data/lib/hoe/packaging.rb +83 -0
- data/post-commit +1 -0
- data/recipes/recipe.rb +6 -0
- data/test/hoe/test_packaging.rb +9 -0
- data.tar.gz.sig +0 -0
- metadata +580 -0
- metadata.gz.sig +0 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: dd09e0b99f57652dc92a12e8ff1886d3e7affe89
|
4
|
+
data.tar.gz: 745aed5c0340e29b44ed40690db4ee4d21ad0c21
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 7a0376a376d2179161452e290f0fccf364729b92629e95bdd80ff63b2ff114d98eca78177749ab64733b42af246cefc23ffcdcf57d05b3979dd7ff7988149065
|
7
|
+
data.tar.gz: 80b3ccffcadca43232fd828081678df53e231dd6df3475deb3108b751bce1cc2957b2fdd041b20d6ee2c56a45c9e4aff26f9d116deb3eb6ed0436ad9fa1087fa
|
checksums.yaml.gz.sig
ADDED
data/.autotest
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# -*- ruby -*-
|
2
|
+
|
3
|
+
require "autotest/restart"
|
4
|
+
|
5
|
+
# Autotest.add_hook :initialize do |at|
|
6
|
+
# at.testlib = "minitest/unit"
|
7
|
+
#
|
8
|
+
# at.extra_files << "../some/external/dependency.rb"
|
9
|
+
#
|
10
|
+
# at.libs << ":../some/external"
|
11
|
+
#
|
12
|
+
# at.add_exception "vendor"
|
13
|
+
#
|
14
|
+
# at.add_mapping(/dependency.rb/) do |f, _|
|
15
|
+
# at.files_matching(/test_.*rb$/)
|
16
|
+
# end
|
17
|
+
#
|
18
|
+
# %w(TestA TestB).each do |klass|
|
19
|
+
# at.extra_class_map[klass] = "test/test_misc.rb"
|
20
|
+
# end
|
21
|
+
# end
|
22
|
+
|
23
|
+
# Autotest.add_hook :run_command do |at|
|
24
|
+
# system "rake build"
|
25
|
+
# end
|
data/.codeclimate.yml
ADDED
data/.coveralls.yml
ADDED
data/.gemnasium.yml
ADDED
@@ -0,0 +1,5 @@
|
|
1
|
+
# api_endpoint: http://private-77f5-gemnasium.apiary-mock.com
|
2
|
+
api_key: c916184c3e0892558476535b216f7442 # You personal (secret) API key. Get it at https://gemnasium.com/settings/api_access
|
3
|
+
project_name: hoe-packaging # A name to remember your project.
|
4
|
+
project_slug: 22929d60895d5b3958c980e115239bbc # Unique slug for this project. Get it on the "project settings" page.
|
5
|
+
project_branch: master # /!\ If you don't use git, remove this line
|
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
AllCops:
|
2
|
+
|
3
|
+
Include:
|
4
|
+
- 'lib/**/*.rb'
|
5
|
+
- 'test/**/*.rb'
|
6
|
+
|
7
|
+
Exclude:
|
8
|
+
- 'Rakefile'
|
9
|
+
|
10
|
+
DisplayCopNames: true
|
11
|
+
|
12
|
+
Metrics/LineLength:
|
13
|
+
Enabled: true
|
14
|
+
Max: 80
|
15
|
+
|
16
|
+
Metrics/CyclomaticComplexity:
|
17
|
+
Severity: warning
|
18
|
+
|
19
|
+
Style/PerlBackrefs:
|
20
|
+
AutoCorrect: true
|
21
|
+
|
22
|
+
Metrics/ParameterLists:
|
23
|
+
Max: 10
|
24
|
+
CountKeywordArgs: true
|
25
|
+
|
26
|
+
Metrics/ClassLength:
|
27
|
+
CountComments: false # count full line comments?
|
28
|
+
Max: 150
|
29
|
+
|
30
|
+
Metrics/ModuleLength:
|
31
|
+
CountComments: false # count full line comments?
|
32
|
+
Max: 190
|
33
|
+
|
34
|
+
Metrics/MethodLength:
|
35
|
+
CountComments: false # count full line comments?
|
36
|
+
Max: 20
|
37
|
+
|
38
|
+
Style/RedundantReturn:
|
39
|
+
Enabled: false
|
data/.scrutinizer.yml
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
checks:
|
2
|
+
ruby:
|
3
|
+
code_rating: true
|
4
|
+
duplicate_code: true
|
5
|
+
style_while_until_do: true
|
6
|
+
style_signal_exception:
|
7
|
+
enforced_style: semantic
|
8
|
+
style_redundant_exception: true
|
9
|
+
style_raise_args:
|
10
|
+
enforced_style: exploded
|
11
|
+
style_predicate_name: true
|
12
|
+
style_comment_annotation: true
|
13
|
+
rails_output: true
|
14
|
+
|
15
|
+
filter:
|
16
|
+
excluded_paths:
|
17
|
+
- 'test/*'
|
data/.travis.yml
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
language: ruby
|
2
|
+
rvm:
|
3
|
+
- 2.2.0
|
4
|
+
- 2.2.1
|
5
|
+
- 2.2.2
|
6
|
+
- 2.2.3
|
7
|
+
|
8
|
+
dist: trusty
|
9
|
+
|
10
|
+
os:
|
11
|
+
- linux
|
12
|
+
|
13
|
+
env:
|
14
|
+
global:
|
15
|
+
- JRUBY_OPTS=-Xcext.enabled=true
|
16
|
+
- CI=true
|
17
|
+
- TRAVIS=true
|
18
|
+
- LANG=en_US.UTF-8
|
19
|
+
- LC_ALL=en_US.UTF-8
|
20
|
+
|
21
|
+
before_install:
|
22
|
+
- gem install bundler
|
23
|
+
|
24
|
+
after_success:
|
25
|
+
- CI=true TRAVIS=true coveralls --verbose
|
26
|
+
|
27
|
+
notifications:
|
28
|
+
email:
|
29
|
+
- samannsml@directbox.com
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -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,33 @@
|
|
1
|
+
# Contributing
|
2
|
+
|
3
|
+
## Branches
|
4
|
+
|
5
|
+
### `master` branch
|
6
|
+
|
7
|
+
The master branch is the current stable released version.
|
8
|
+
|
9
|
+
### `develop` branch
|
10
|
+
|
11
|
+
The develop branch is the current edge of development.
|
12
|
+
|
13
|
+
## Forking
|
14
|
+
|
15
|
+
1. Fork it
|
16
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
17
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
18
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
19
|
+
5. Create new Pull Request
|
20
|
+
|
21
|
+
## Pull requests
|
22
|
+
|
23
|
+
* https://gitlab.com/saigkill/hoe-packaging/merge_requests
|
24
|
+
|
25
|
+
Please base all pull requests off the `develop` branch. Merges to
|
26
|
+
`master` only occur through the `develop` branch. Pull requests
|
27
|
+
based on `master` will likely be cherry picked.
|
28
|
+
|
29
|
+
## Issues
|
30
|
+
|
31
|
+
Need to report an issue? Use that issue tracker:
|
32
|
+
|
33
|
+
* https://gitlab.com/saigkill/hoe-packaging/issues
|
data/Gemfile
ADDED
@@ -0,0 +1,43 @@
|
|
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.10"
|
8
|
+
gem "setup", "~>5.2"
|
9
|
+
gem "fpm", "~>1.4"
|
10
|
+
gem "fpm-cookery", "~>0.30.1"
|
11
|
+
|
12
|
+
gem "hoe-highline", "~>0.2", :group => [:development, :test]
|
13
|
+
gem "hoe-yard", ">=0.1.2", :group => [:development, :test]
|
14
|
+
gem "coveralls", "~>0.8", :group => [:development, :test]
|
15
|
+
gem "gem-release", "~>0.7", :group => [:development, :test]
|
16
|
+
gem "hoe-bundler", "~>1.2", :group => [:development, :test]
|
17
|
+
gem "hoe-deveiate", "~>0.7", :group => [:development, :test]
|
18
|
+
gem "hoe-doofus", "~>1.0", :group => [:development, :test]
|
19
|
+
gem "hoe-gemspec", "~>1.0", :group => [:development, :test]
|
20
|
+
gem "hoe-git", "~>1.6", :group => [:development, :test]
|
21
|
+
gem "hoe-manns", "~>1.0", :group => [:development, :test]
|
22
|
+
gem "hoe-packaging", "~>1.0", :group => [:development, :test]
|
23
|
+
gem "hoe-reek", "~>1.0", :group => [:development, :test]
|
24
|
+
gem "hoe-rubocop", "~>0.1", :group => [:development, :test]
|
25
|
+
gem "hoe-rubygems", "~>1.0", :group => [:development, :test]
|
26
|
+
gem "hoe-seattlerb", "~>1.3", :group => [:development, :test]
|
27
|
+
gem "hoe-travis", "~>1.2", :group => [:development, :test]
|
28
|
+
gem "hoe-version", "~>1.2", :group => [:development, :test]
|
29
|
+
gem "indexer", "~>0.3", :group => [:development, :test]
|
30
|
+
gem "minitest", "~>5.8.1", :group => [:development, :test]
|
31
|
+
gem "rake", "~>10.0", :group => [:development, :test]
|
32
|
+
gem "reek", "~>3.3", :group => [:development, :test]
|
33
|
+
gem "rspec", "~>3.3", :group => [:development, :test]
|
34
|
+
gem "rubocop", "~>0.34", :group => [:development, :test]
|
35
|
+
gem "simplecov", "~>0.10", :group => [:development, :test]
|
36
|
+
gem "test", "~>1.0.0", :group => [:development, :test]
|
37
|
+
gem "test-unit", "~>3.1.4", :group => [:development, :test]
|
38
|
+
gem "ZenTest", "~>4.11", :group => [:development, :test]
|
39
|
+
gem "bundler-audit", "~>0.4.0", :group => [:development, :test]
|
40
|
+
gem "manns_shared", "~>1.0.0", :group => [:development, :test]
|
41
|
+
gem "hoe", "~>3.14", :group => [:development, :test]
|
42
|
+
|
43
|
+
# vim: syntax=ruby
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,291 @@
|
|
1
|
+
GEM
|
2
|
+
remote: https://rubygems.org/
|
3
|
+
specs:
|
4
|
+
CFPropertyList (2.2.8)
|
5
|
+
RubyInline (3.12.4)
|
6
|
+
ZenTest (~> 4.3)
|
7
|
+
ZenTest (4.11.0)
|
8
|
+
abstract_type (0.0.7)
|
9
|
+
adamantium (0.2.0)
|
10
|
+
ice_nine (~> 0.11.0)
|
11
|
+
memoizable (~> 0.4.0)
|
12
|
+
addressable (2.3.8)
|
13
|
+
arr-pm (0.0.10)
|
14
|
+
cabin (> 0)
|
15
|
+
ast (2.1.0)
|
16
|
+
astrolabe (1.3.1)
|
17
|
+
parser (~> 2.2)
|
18
|
+
aws-sdk (2.1.28)
|
19
|
+
aws-sdk-resources (= 2.1.28)
|
20
|
+
aws-sdk-core (2.1.28)
|
21
|
+
jmespath (~> 1.0)
|
22
|
+
aws-sdk-resources (2.1.28)
|
23
|
+
aws-sdk-core (= 2.1.28)
|
24
|
+
backports (3.6.6)
|
25
|
+
bundler-audit (0.4.0)
|
26
|
+
bundler (~> 1.2)
|
27
|
+
thor (~> 0.18)
|
28
|
+
cabin (0.7.1)
|
29
|
+
chef-config (12.5.0.alpha.1)
|
30
|
+
mixlib-config (~> 2.0)
|
31
|
+
mixlib-shellout (~> 2.0)
|
32
|
+
chef-sugar (3.1.1)
|
33
|
+
childprocess (0.5.6)
|
34
|
+
ffi (~> 1.0, >= 1.0.11)
|
35
|
+
clamp (0.6.5)
|
36
|
+
cleanroom (1.0.0)
|
37
|
+
concord (0.1.5)
|
38
|
+
adamantium (~> 0.2.0)
|
39
|
+
equalizer (~> 0.0.9)
|
40
|
+
coveralls (0.8.3)
|
41
|
+
json (~> 1.8)
|
42
|
+
rest-client (>= 1.6.8, < 2)
|
43
|
+
simplecov (~> 0.10.0)
|
44
|
+
term-ansicolor (~> 1.3)
|
45
|
+
thor (~> 0.19.1)
|
46
|
+
diff-lcs (1.2.5)
|
47
|
+
docile (1.1.5)
|
48
|
+
domain_name (0.5.25)
|
49
|
+
unf (>= 0.0.5, < 1.0.0)
|
50
|
+
equalizer (0.0.11)
|
51
|
+
facter (2.4.4)
|
52
|
+
CFPropertyList (~> 2.2.6)
|
53
|
+
ffi (1.9.10)
|
54
|
+
ffi-yajl (2.2.2)
|
55
|
+
libyajl2 (~> 1.2)
|
56
|
+
fpm (1.4.0)
|
57
|
+
arr-pm (~> 0.0.10)
|
58
|
+
backports (>= 2.6.2)
|
59
|
+
cabin (>= 0.6.0)
|
60
|
+
childprocess
|
61
|
+
clamp (~> 0.6)
|
62
|
+
ffi
|
63
|
+
json (>= 1.7.7)
|
64
|
+
fpm-cookery (0.30.1)
|
65
|
+
addressable
|
66
|
+
facter
|
67
|
+
fpm (~> 1.1)
|
68
|
+
puppet (~> 3.4)
|
69
|
+
systemu
|
70
|
+
gem-release (0.7.4)
|
71
|
+
hashr (0.0.22)
|
72
|
+
hiera (1.3.4)
|
73
|
+
json_pure
|
74
|
+
highline (1.7.7)
|
75
|
+
hoe (3.14.2)
|
76
|
+
rake (>= 0.8, < 11.0)
|
77
|
+
hoe-bundler (1.2.0)
|
78
|
+
hoe (>= 2.2.0)
|
79
|
+
hoe-deveiate (0.7.0)
|
80
|
+
hoe (~> 3.13)
|
81
|
+
hoe-highline (~> 0.2)
|
82
|
+
hoe-mercurial (~> 1.4)
|
83
|
+
mail (~> 2.6)
|
84
|
+
rdoc (~> 4.2)
|
85
|
+
rspec (~> 3.2)
|
86
|
+
hoe-doofus (1.0.0)
|
87
|
+
hoe-gemspec (1.0.0)
|
88
|
+
hoe (>= 2.2.0)
|
89
|
+
hoe-git (1.6.0)
|
90
|
+
hoe-highline (0.2.1)
|
91
|
+
highline (~> 1.6)
|
92
|
+
hoe (~> 3.11)
|
93
|
+
hoe-manns (1.2.0)
|
94
|
+
bundler-audit (~> 0.4.0)
|
95
|
+
fpm (~> 1.4)
|
96
|
+
fpm-cookery (~> 0.30.1)
|
97
|
+
indexer (~> 0.3)
|
98
|
+
omnibus (~> 4.1)
|
99
|
+
parseconfig (~> 1.0)
|
100
|
+
rainbow (~> 2.0)
|
101
|
+
setup (~> 5.2)
|
102
|
+
hoe-mercurial (1.4.1)
|
103
|
+
hoe (~> 3.9)
|
104
|
+
hoe-packaging (1.0.0)
|
105
|
+
bundler (~> 1.10)
|
106
|
+
fpm (~> 1.4)
|
107
|
+
fpm-cookery (~> 0.30.1)
|
108
|
+
rest-client (~> 1.8)
|
109
|
+
setup (~> 5.2)
|
110
|
+
hoe-reek (1.1.1)
|
111
|
+
bundler (~> 1.10)
|
112
|
+
setup (~> 5.2)
|
113
|
+
hoe-rubocop (0.1.1)
|
114
|
+
RubyInline (~> 3.9)
|
115
|
+
setup (~> 5.2)
|
116
|
+
hoe-rubygems (1.0.0)
|
117
|
+
hoe-seattlerb (1.3.4)
|
118
|
+
hoe-travis (1.2)
|
119
|
+
hoe (~> 3.0)
|
120
|
+
travis-lint (~> 1.2)
|
121
|
+
hoe-version (1.2.0)
|
122
|
+
hoe-yard (0.1.2)
|
123
|
+
yard (>= 0.2.3.1)
|
124
|
+
http-cookie (1.0.2)
|
125
|
+
domain_name (~> 0.5)
|
126
|
+
ice_nine (0.11.1)
|
127
|
+
indexer (0.3.1)
|
128
|
+
ipaddress (0.8.0)
|
129
|
+
jmespath (1.1.3)
|
130
|
+
json (1.8.3)
|
131
|
+
json_pure (1.8.2)
|
132
|
+
libyajl2 (1.2.0)
|
133
|
+
mail (2.6.3)
|
134
|
+
mime-types (>= 1.16, < 3)
|
135
|
+
manns_shared (1.0.0)
|
136
|
+
nokogiri (~> 1.6.6.2)
|
137
|
+
setup (~> 5.2)
|
138
|
+
memoizable (0.4.2)
|
139
|
+
thread_safe (~> 0.3, >= 0.3.1)
|
140
|
+
mime-types (2.6.2)
|
141
|
+
mini_portile (0.6.2)
|
142
|
+
minitest (5.8.1)
|
143
|
+
mixlib-cli (1.5.0)
|
144
|
+
mixlib-config (2.2.1)
|
145
|
+
mixlib-log (1.6.0)
|
146
|
+
mixlib-shellout (2.2.1)
|
147
|
+
mixlib-versioning (1.1.0)
|
148
|
+
netrc (0.10.3)
|
149
|
+
nokogiri (1.6.6.2)
|
150
|
+
mini_portile (~> 0.6.0)
|
151
|
+
ohai (8.6.0)
|
152
|
+
chef-config (>= 12.5.0.alpha.1, < 13)
|
153
|
+
ffi (~> 1.9)
|
154
|
+
ffi-yajl (~> 2.2)
|
155
|
+
ipaddress
|
156
|
+
mime-types (~> 2.0)
|
157
|
+
mixlib-cli
|
158
|
+
mixlib-config (~> 2.0)
|
159
|
+
mixlib-log
|
160
|
+
mixlib-shellout (~> 2.0)
|
161
|
+
rake (~> 10.1)
|
162
|
+
systemu (~> 2.6.4)
|
163
|
+
wmi-lite (~> 1.0)
|
164
|
+
omnibus (4.1.0)
|
165
|
+
aws-sdk (~> 2)
|
166
|
+
chef-sugar (~> 3.0)
|
167
|
+
cleanroom (~> 1.0)
|
168
|
+
mixlib-shellout (~> 2.0)
|
169
|
+
mixlib-versioning
|
170
|
+
ohai (~> 8.0)
|
171
|
+
ruby-progressbar (~> 1.7)
|
172
|
+
thor (~> 0.18)
|
173
|
+
parseconfig (1.0.6)
|
174
|
+
parser (2.2.2.6)
|
175
|
+
ast (>= 1.1, < 3.0)
|
176
|
+
power_assert (0.2.4)
|
177
|
+
powerpack (0.1.1)
|
178
|
+
private_attr (1.1.0)
|
179
|
+
procto (0.0.2)
|
180
|
+
puppet (3.8.3)
|
181
|
+
facter (> 1.6, < 3)
|
182
|
+
hiera (~> 1.0)
|
183
|
+
json_pure
|
184
|
+
rainbow (2.0.0)
|
185
|
+
rake (10.4.2)
|
186
|
+
rdoc (4.2.0)
|
187
|
+
reek (3.5.0)
|
188
|
+
parser (~> 2.2.2.5)
|
189
|
+
private_attr (~> 1.1)
|
190
|
+
rainbow (~> 2.0)
|
191
|
+
unparser (~> 0.2.2)
|
192
|
+
rest-client (1.8.0)
|
193
|
+
http-cookie (>= 1.0.2, < 2.0)
|
194
|
+
mime-types (>= 1.16, < 3.0)
|
195
|
+
netrc (~> 0.7)
|
196
|
+
rspec (3.3.0)
|
197
|
+
rspec-core (~> 3.3.0)
|
198
|
+
rspec-expectations (~> 3.3.0)
|
199
|
+
rspec-mocks (~> 3.3.0)
|
200
|
+
rspec-core (3.3.2)
|
201
|
+
rspec-support (~> 3.3.0)
|
202
|
+
rspec-expectations (3.3.1)
|
203
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
204
|
+
rspec-support (~> 3.3.0)
|
205
|
+
rspec-mocks (3.3.2)
|
206
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
207
|
+
rspec-support (~> 3.3.0)
|
208
|
+
rspec-support (3.3.0)
|
209
|
+
rubocop (0.34.2)
|
210
|
+
astrolabe (~> 1.3)
|
211
|
+
parser (>= 2.2.2.5, < 3.0)
|
212
|
+
powerpack (~> 0.1)
|
213
|
+
rainbow (>= 1.99.1, < 3.0)
|
214
|
+
ruby-progressbar (~> 1.4)
|
215
|
+
ruby-progressbar (1.7.5)
|
216
|
+
rubytest (0.8.1)
|
217
|
+
safe_yaml (0.9.7)
|
218
|
+
setup (5.2.0)
|
219
|
+
simplecov (0.10.0)
|
220
|
+
docile (~> 1.1.0)
|
221
|
+
json (~> 1.8)
|
222
|
+
simplecov-html (~> 0.10.0)
|
223
|
+
simplecov-html (0.10.0)
|
224
|
+
systemu (2.6.5)
|
225
|
+
term-ansicolor (1.3.2)
|
226
|
+
tins (~> 1.0)
|
227
|
+
test (1.0.0)
|
228
|
+
rubytest
|
229
|
+
test-unit (3.1.4)
|
230
|
+
power_assert
|
231
|
+
thor (0.19.1)
|
232
|
+
thread_safe (0.3.5)
|
233
|
+
tins (1.6.0)
|
234
|
+
travis-lint (1.8.0)
|
235
|
+
hashr (~> 0.0.22)
|
236
|
+
safe_yaml (~> 0.9.0)
|
237
|
+
unf (0.1.4)
|
238
|
+
unf_ext
|
239
|
+
unf_ext (0.0.7.1)
|
240
|
+
unparser (0.2.4)
|
241
|
+
abstract_type (~> 0.0.7)
|
242
|
+
adamantium (~> 0.2.0)
|
243
|
+
concord (~> 0.1.5)
|
244
|
+
diff-lcs (~> 1.2.5)
|
245
|
+
equalizer (~> 0.0.9)
|
246
|
+
parser (~> 2.2.2)
|
247
|
+
procto (~> 0.0.2)
|
248
|
+
wmi-lite (1.0.0)
|
249
|
+
yard (0.8.7.6)
|
250
|
+
|
251
|
+
PLATFORMS
|
252
|
+
ruby
|
253
|
+
|
254
|
+
DEPENDENCIES
|
255
|
+
ZenTest (~> 4.11)
|
256
|
+
bundler (~> 1.10)
|
257
|
+
bundler-audit (~> 0.4.0)
|
258
|
+
coveralls (~> 0.8)
|
259
|
+
fpm (~> 1.4)
|
260
|
+
fpm-cookery (~> 0.30.1)
|
261
|
+
gem-release (~> 0.7)
|
262
|
+
hoe (~> 3.14)
|
263
|
+
hoe-bundler (~> 1.2)
|
264
|
+
hoe-deveiate (~> 0.7)
|
265
|
+
hoe-doofus (~> 1.0)
|
266
|
+
hoe-gemspec (~> 1.0)
|
267
|
+
hoe-git (~> 1.6)
|
268
|
+
hoe-highline (~> 0.2)
|
269
|
+
hoe-manns (~> 1.0)
|
270
|
+
hoe-packaging (~> 1.0)
|
271
|
+
hoe-reek (~> 1.0)
|
272
|
+
hoe-rubocop (~> 0.1)
|
273
|
+
hoe-rubygems (~> 1.0)
|
274
|
+
hoe-seattlerb (~> 1.3)
|
275
|
+
hoe-travis (~> 1.2)
|
276
|
+
hoe-version (~> 1.2)
|
277
|
+
hoe-yard (>= 0.1.2)
|
278
|
+
indexer (~> 0.3)
|
279
|
+
manns_shared (~> 1.0.0)
|
280
|
+
minitest (~> 5.8.1)
|
281
|
+
rake (~> 10.0)
|
282
|
+
reek (~> 3.3)
|
283
|
+
rspec (~> 3.3)
|
284
|
+
rubocop (~> 0.34)
|
285
|
+
setup (~> 5.2)
|
286
|
+
simplecov (~> 0.10)
|
287
|
+
test (~> 1.0.0)
|
288
|
+
test-unit (~> 3.1.4)
|
289
|
+
|
290
|
+
BUNDLED WITH
|
291
|
+
1.10.6
|
data/History.rdoc
ADDED
data/LICENSE.rdoc
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
= LICENSE:
|
2
|
+
|
3
|
+
(The MIT License)
|
4
|
+
|
5
|
+
Copyright (c) 2015 Sascha Manns <samannsml@directbox.com>
|
6
|
+
|
7
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
8
|
+
a copy of this software and associated documentation files (the
|
9
|
+
'Software'), to deal in the Software without restriction, including
|
10
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
11
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
12
|
+
permit persons to whom the Software is furnished to do so, subject to
|
13
|
+
the following conditions:
|
14
|
+
|
15
|
+
The above copyright notice and this permission notice shall be
|
16
|
+
included in all copies or substantial portions of the Software.
|
17
|
+
|
18
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
19
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
20
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
21
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
22
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
23
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
24
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/MAINTENANCE.md
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
# hoe-packaging Maintenance Policy
|
2
|
+
|
3
|
+
hoe-packaging is following the [Semantic Versioning](http://semver.org/) for its releases: `(Major).(Minor).(Patch)`.
|
4
|
+
|
5
|
+
- **Major version**: Whenever there is something significant or any backwards incompatible changes.
|
6
|
+
- **Minor version**: When new, backwards compatible functionality is introduced a minor feature is introduced, or when a set of smaller features is rolled out.
|
7
|
+
- **Patch number**: When backwards compatible bug fixes are introduced that fix incorrect behavior.
|
8
|
+
|
9
|
+
The current stable release will receive security patches and bug fixes (eg. `5.0` -> `5.0.1`). Feature releases will mark the next supported stable release where the minor version is increased numerically by increments of one (eg. `5.0 -> 5.1`).
|
10
|
+
|
11
|
+
I encourage everyone to run the latest stable release to ensure that you can easily upgrade to the most secure and feature rich experience. In order to make sure you can easily run the most recent stable release, we are working hard to keep the update process simple and reliable.
|
data/Manifest.txt
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
.autotest
|
2
|
+
.codeclimate.yml
|
3
|
+
.coveralls.yml
|
4
|
+
.gemnasium.yml
|
5
|
+
.rspec
|
6
|
+
.rubocop.yml
|
7
|
+
.scrutinizer.yml
|
8
|
+
.travis.yml
|
9
|
+
CODE_OF_CONDUCT.md
|
10
|
+
CONTRIBUTING.md
|
11
|
+
Gemfile
|
12
|
+
Gemfile.lock
|
13
|
+
History.rdoc
|
14
|
+
LICENSE.rdoc
|
15
|
+
MAINTENANCE.md
|
16
|
+
Manifest.txt
|
17
|
+
README.rdoc
|
18
|
+
Rakefile
|
19
|
+
VERSION
|
20
|
+
config.reek
|
21
|
+
etc/hoe-packaging.cfg
|
22
|
+
lib/hoe/packaging.rb
|
23
|
+
post-commit
|
24
|
+
recipes/recipe.rb
|
25
|
+
test/hoe/test_packaging.rb
|