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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: d70e4b04e2fac5795f89546e63a6fda6fd95187d
4
- data.tar.gz: 449e1152cdf4e908faf5a7e918808f22c977d477
2
+ SHA256:
3
+ metadata.gz: 2715dd445df7c76f331cd362fdda6911416594d06c0a2b0058a289d1aa8779d9
4
+ data.tar.gz: 54452e2a5ed60c0e69a76812a8964a96b71e97bd7ad839ab843016bbdd2ee49a
5
5
  SHA512:
6
- metadata.gz: 5c0397b2131e3288e0f5b0e6782f241bade5557e97656a20e7e6229de64c15a7de13536b7ec464e9b17ecdfde494987e7fe9292d9d03c1aa6b9b0fe51512dd58
7
- data.tar.gz: 67f16b975b9e7f0b5918cab4558779118d18bf6cd2897fead3821b5dcfd3667437ea95a2d4b75ef277aa92527ff8525b6b4daeb202401be3724e251bf0f89604
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.2.5)
11
- rake (10.4.2)
12
- rspec (3.3.0)
13
- rspec-core (~> 3.3.0)
14
- rspec-expectations (~> 3.3.0)
15
- rspec-mocks (~> 3.3.0)
16
- rspec-core (3.3.2)
17
- rspec-support (~> 3.3.0)
18
- rspec-expectations (3.3.1)
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.3.0)
21
- rspec-mocks (3.3.2)
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.3.0)
24
- rspec-support (3.3.0)
25
- thor (0.19.1)
23
+ rspec-support (~> 3.10.0)
24
+ rspec-support (3.10.2)
25
+ thor (0.20.3)
26
26
 
27
27
  PLATFORMS
28
- ruby
28
+ x86_64-linux
29
29
 
30
30
  DEPENDENCIES
31
31
  pumog!
32
- rake (~> 10.3)
32
+ rake (~> 13.0)
33
33
  rspec (~> 3.3)
34
34
 
35
35
  BUNDLED WITH
36
- 1.10.6
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
+ [![Gem Version](https://badge.fury.io/rb/pumog.svg)](http://badge.fury.io/rb/pumog)
6
+ [![CircleCI](https://circleci.com/gh/wikimatze/pumog.svg?style=svg)](https://app.circleci.com/pipelines/github/wikimatze/pumog)
7
+
5
8
 
6
9
  ## Usage & Examples
7
10
 
data/lib/pumog/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Pumog
2
- VERSION = '1.2.0'
2
+ VERSION = '1.2.1'
3
3
  end
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", "~> 10.3"
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.0
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: 2015-08-23 00:00:00.000000000 Z
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: '10.3'
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: '10.3'
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
- - ".travis.yml"
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
- rubyforge_project:
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:
data/.travis.yml DELETED
@@ -1,7 +0,0 @@
1
- lang: ruby
2
- sudo: false
3
- rvm:
4
- - 2.0.0-p643
5
- - 2.1.4
6
- - 2.2.1
7
-