pumog 1.2.0 → 1.2.1
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 +5 -5
- data/.circleci/config.yml +30 -0
- data/Gemfile.lock +17 -17
- data/README.md +3 -0
- data/lib/pumog/version.rb +1 -1
- data/pumog.gemspec +1 -1
- metadata +6 -8
- data/.travis.yml +0 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 2715dd445df7c76f331cd362fdda6911416594d06c0a2b0058a289d1aa8779d9
|
|
4
|
+
data.tar.gz: 54452e2a5ed60c0e69a76812a8964a96b71e97bd7ad839ab843016bbdd2ee49a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d714f9beeadd45e33e4361d69f03ddfb8ae7a53bde6e44033d592402695e0b7d590c3ec70a79fa8e463f63bae02edda7c98429a9ee335141567e9ae07f2b2d42
|
|
7
|
+
data.tar.gz: be0e196ba6719712f2aaa3ff3d394278d3b18c869a23a1007b38d51745df0901703d8eb0c03c5cc7cbdd279bf79357935a9c2e9f1efb58ef12922491a9c88e9e
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
version: 2.1
|
|
2
|
+
orbs:
|
|
3
|
+
ruby: circleci/ruby@0.1.2
|
|
4
|
+
|
|
5
|
+
jobs:
|
|
6
|
+
build:
|
|
7
|
+
parameters:
|
|
8
|
+
ruby-version:
|
|
9
|
+
type: string
|
|
10
|
+
docker:
|
|
11
|
+
- image: circleci/ruby:<< parameters.ruby-version >>
|
|
12
|
+
executor: ruby/default
|
|
13
|
+
steps:
|
|
14
|
+
- checkout
|
|
15
|
+
- run:
|
|
16
|
+
name: Which bundler?
|
|
17
|
+
command: gem install bundler:2.2.26
|
|
18
|
+
- ruby/bundle-install
|
|
19
|
+
- run:
|
|
20
|
+
name: Run rspec tests
|
|
21
|
+
command: bundle exec rake spec
|
|
22
|
+
workflows:
|
|
23
|
+
build_and_test:
|
|
24
|
+
jobs:
|
|
25
|
+
- build:
|
|
26
|
+
matrix:
|
|
27
|
+
parameters:
|
|
28
|
+
# https://github.com/CircleCI-Public/cimg-ruby
|
|
29
|
+
# only supports the last three ruby versions
|
|
30
|
+
ruby-version: ["2.6.0", "2.6.5", "2.7.4", "3.0.2"]
|
data/Gemfile.lock
CHANGED
|
@@ -7,30 +7,30 @@ PATH
|
|
|
7
7
|
GEM
|
|
8
8
|
remote: http://rubygems.org/
|
|
9
9
|
specs:
|
|
10
|
-
diff-lcs (1.
|
|
11
|
-
rake (
|
|
12
|
-
rspec (3.
|
|
13
|
-
rspec-core (~> 3.
|
|
14
|
-
rspec-expectations (~> 3.
|
|
15
|
-
rspec-mocks (~> 3.
|
|
16
|
-
rspec-core (3.
|
|
17
|
-
rspec-support (~> 3.
|
|
18
|
-
rspec-expectations (3.
|
|
10
|
+
diff-lcs (1.4.4)
|
|
11
|
+
rake (13.0.6)
|
|
12
|
+
rspec (3.10.0)
|
|
13
|
+
rspec-core (~> 3.10.0)
|
|
14
|
+
rspec-expectations (~> 3.10.0)
|
|
15
|
+
rspec-mocks (~> 3.10.0)
|
|
16
|
+
rspec-core (3.10.1)
|
|
17
|
+
rspec-support (~> 3.10.0)
|
|
18
|
+
rspec-expectations (3.10.1)
|
|
19
19
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
20
|
-
rspec-support (~> 3.
|
|
21
|
-
rspec-mocks (3.
|
|
20
|
+
rspec-support (~> 3.10.0)
|
|
21
|
+
rspec-mocks (3.10.2)
|
|
22
22
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
23
|
-
rspec-support (~> 3.
|
|
24
|
-
rspec-support (3.
|
|
25
|
-
thor (0.
|
|
23
|
+
rspec-support (~> 3.10.0)
|
|
24
|
+
rspec-support (3.10.2)
|
|
25
|
+
thor (0.20.3)
|
|
26
26
|
|
|
27
27
|
PLATFORMS
|
|
28
|
-
|
|
28
|
+
x86_64-linux
|
|
29
29
|
|
|
30
30
|
DEPENDENCIES
|
|
31
31
|
pumog!
|
|
32
|
-
rake (~>
|
|
32
|
+
rake (~> 13.0)
|
|
33
33
|
rspec (~> 3.3)
|
|
34
34
|
|
|
35
35
|
BUNDLED WITH
|
|
36
|
-
|
|
36
|
+
2.2.26
|
data/README.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
Stands for **PuppetModuleGenerator** and can be used to generate a basic structure for new puppet modules with or without documentation.
|
|
4
4
|
|
|
5
|
+
[](http://badge.fury.io/rb/pumog)
|
|
6
|
+
[](https://app.circleci.com/pipelines/github/wikimatze/pumog)
|
|
7
|
+
|
|
5
8
|
|
|
6
9
|
## Usage & Examples
|
|
7
10
|
|
data/lib/pumog/version.rb
CHANGED
data/pumog.gemspec
CHANGED
|
@@ -18,6 +18,6 @@ Gem::Specification.new do |s|
|
|
|
18
18
|
|
|
19
19
|
# specify any dependencies here; for example:
|
|
20
20
|
s.add_development_dependency "rspec", "~> 3.3"
|
|
21
|
-
s.add_development_dependency "rake", "~>
|
|
21
|
+
s.add_development_dependency "rake", "~> 13.0"
|
|
22
22
|
s.add_runtime_dependency "thor", "~>0.19"
|
|
23
23
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pumog
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matthias Guenther
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-08-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|
|
@@ -30,14 +30,14 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '
|
|
33
|
+
version: '13.0'
|
|
34
34
|
type: :development
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '
|
|
40
|
+
version: '13.0'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: thor
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -60,7 +60,7 @@ executables:
|
|
|
60
60
|
extensions: []
|
|
61
61
|
extra_rdoc_files: []
|
|
62
62
|
files:
|
|
63
|
-
- ".
|
|
63
|
+
- ".circleci/config.yml"
|
|
64
64
|
- Gemfile
|
|
65
65
|
- Gemfile.lock
|
|
66
66
|
- README.md
|
|
@@ -97,10 +97,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
97
97
|
- !ruby/object:Gem::Version
|
|
98
98
|
version: '0'
|
|
99
99
|
requirements: []
|
|
100
|
-
|
|
101
|
-
rubygems_version: 2.4.8
|
|
100
|
+
rubygems_version: 3.1.2
|
|
102
101
|
signing_key:
|
|
103
102
|
specification_version: 4
|
|
104
103
|
summary: Create new puppet module with this template.
|
|
105
104
|
test_files: []
|
|
106
|
-
has_rdoc:
|