foreman_openbolt 0.0.1 → 0.1.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
2
  SHA256:
3
- metadata.gz: 1bbfdd9110830f98a8521ca880aec780f78bb7ed9d9f558f393d45152294eae1
4
- data.tar.gz: 30e345245ed395839475582b17f34ec35bb0b1d5b67416a8ac7c2afa094ea9ee
3
+ metadata.gz: 9c2932001d70466f491793accaaf126a6995e8278da33c771c8e74802dee996c
4
+ data.tar.gz: 7ce6c51f49107dfefe7e28ed9a62eb4b5f41e838ba0fdb057cecf97e67957cfc
5
5
  SHA512:
6
- metadata.gz: '05894ef87de8f9421cfeb10828bf15ef207d467b96a2f0fd5503b16c6d6a1995bd1111ce553e0fd0746426b22424ee7c5d11e854a10cdd1e63adea9ddf640c11'
7
- data.tar.gz: c0a08ac979853c547bc612b9ad0602cded2299c587dab3c16c77227955aeff52473950d5b585758b5c9e2bcf817e749c67b65dddd9d8d8db30beb398aae1a303
6
+ metadata.gz: f3667fe230f4417c35b7acf87411132be4122999bb858e6f753b214891809d33732ca3cd2b7f49ee23994f8a4d9d9e969266532989d4a54e1a86c3d0bfccf4cc
7
+ data.tar.gz: c1e2ade0752b6546fd5e3146128e8454fd89455fb291d5cedc774de6b340bc61b7b45683af3594fd9df381841c395b3156ce462b4f33fa89cbb345a075068a7e
data/README.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # ForemanPluginTemplate
2
2
 
3
+ [![License](https://img.shields.io/github/license/overlookinfra/foreman_openbolt.svg)](https://github.com/overlookinfra/foreman_openbolt/blob/master/LICENSE)
4
+ [![Test](https://github.com/overlookinfra/foreman_openbolt/actions/workflows/test.yml/badge.svg)](https://github.com/overlookinfra/foreman_openbolt/actions/workflows/test.yml)
5
+ [![Release](https://github.com/overlookinfra/foreman_openbolt/actions/workflows/release.yml/badge.svg)](https://github.com/overlookinfra/foreman_openbolt/actions/workflows/release.yml)
6
+ [![RubyGem Version](https://img.shields.io/gem/v/foreman_openbolt.svg)](https://rubygems.org/gems/foreman_openbolt)
7
+ [![RubyGem Downloads](https://img.shields.io/gem/dt/foreman_openbolt.svg)](https://rubygems.org/gems/foreman_openbolt)
8
+
3
9
  *Introdction here*
4
10
 
5
11
  ## Installation
@@ -38,9 +44,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
38
44
 
39
45
  ## how to release
40
46
 
41
- * bump version in `lib/foreman_openbolt/version.rb`
47
+ * bump version in `lib/foreman_openbolt/version.rb` and `package.json`
42
48
  * run `CHANGELOG_GITHUB_TOKEN=github_pat... bundle exec rake changelog`
43
49
  * create a PR
44
50
  * get a review & merge
45
51
  * create and push a tag
46
52
  * github actions will publish the tag
53
+
54
+ The Foreman team packages this gem as Debian package (deb) and as RedHat package (rpm).
55
+ They have a bot that will automatically propose an rpm/deb update at [github.com/theforeman/foreman-packaging](https://github.com/theforeman/foreman-packaging/pulls).
data/Rakefile CHANGED
@@ -2,11 +2,6 @@
2
2
 
3
3
  # !/usr/bin/env rake
4
4
 
5
- begin
6
- require 'bundler/setup'
7
- rescue LoadError
8
- puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
9
- end
10
5
  begin
11
6
  require 'rdoc/task'
12
7
  rescue LoadError
@@ -23,8 +18,6 @@ RDoc::Task.new(:rdoc) do |rdoc|
23
18
  rdoc.rdoc_files.include('lib/**/*.rb')
24
19
  end
25
20
 
26
- Bundler::GemHelper.install_tasks
27
-
28
21
  require 'rake/testtask'
29
22
 
30
23
  Rake::TestTask.new(:test) do |t|
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ForemanOpenbolt
4
- VERSION = '0.0.1'
4
+ VERSION = '0.1.1'
5
5
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "foreman_openbolt",
3
- "version": "0.0.1",
3
+ "version": "0.1.1",
4
4
  "description": "OpenBolt integration into Foreman",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -27,7 +27,7 @@
27
27
  "devDependencies": {
28
28
  "@babel/core": "^7.7.0",
29
29
  "@sheerun/mutationobserver-shim": "^0.3.3",
30
- "@theforeman/builder": "^6.0.0",
30
+ "@theforeman/builder": ">= 6.0.0",
31
31
  "@theforeman/eslint-plugin-foreman": "6.0.0",
32
32
  "@theforeman/find-foreman": "^4.8.0",
33
33
  "@theforeman/test": "^8.0.0",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman_openbolt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Overlook InfraTech
@@ -16,9 +16,6 @@ dependencies:
16
16
  - - "~>"
17
17
  - !ruby/object:Gem::Version
18
18
  version: '11.0'
19
- - - ">="
20
- - !ruby/object:Gem::Version
21
- version: 11.0.6
22
19
  type: :runtime
23
20
  prerelease: false
24
21
  version_requirements: !ruby/object:Gem::Requirement
@@ -26,9 +23,6 @@ dependencies:
26
23
  - - "~>"
27
24
  - !ruby/object:Gem::Version
28
25
  version: '11.0'
29
- - - ">="
30
- - !ruby/object:Gem::Version
31
- version: 11.0.6
32
26
  - !ruby/object:Gem::Dependency
33
27
  name: erb_lint
34
28
  requirement: !ruby/object:Gem::Requirement