foreman_openbolt 0.0.1 → 0.1.0
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/README.md +10 -1
- data/Rakefile +0 -7
- data/lib/foreman_openbolt/version.rb +1 -1
- data/package.json +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 662513946ef47d3b6657f8b98dfd7c4fb915f0c78b407e2943fea6303096e187
|
|
4
|
+
data.tar.gz: 55de42be30683108335628dd10ab51c05a46c2b7af2f58b6c20b247800f4ca8d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7d269b00ccec436fabfa1959afdb69625131ed15aa1375cd5474691619065662721faf23f0bf30118b8bcac4fe22836f5b4d60d214a9bb542f104011a1df1258
|
|
7
|
+
data.tar.gz: 6698b0083f5e8d6e33c822c94dc5910df990ba87826f44a53a375174988749d9af4f94da82abc30e389efa7a1c0c97ead2a7aae5d833b190a9adfcb82a0bfef3
|
data/README.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# ForemanPluginTemplate
|
|
2
2
|
|
|
3
|
+
[](https://github.com/overlookinfra/foreman_openbolt/blob/master/LICENSE)
|
|
4
|
+
[](https://github.com/overlookinfra/foreman_openbolt/actions/workflows/test.yml)
|
|
5
|
+
[](https://github.com/overlookinfra/foreman_openbolt/actions/workflows/release.yml)
|
|
6
|
+
[](https://rubygems.org/gems/foreman_openbolt)
|
|
7
|
+
[](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|
|
data/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "foreman_openbolt",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
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": "
|
|
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",
|