alchemy-mission_control-jobs 0.1.2 → 0.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
2
  SHA256:
3
- metadata.gz: af01c11785c2d528f44eb812c4f4ef1c42a6d8b6f52e3f70c416bd3861d0255b
4
- data.tar.gz: 2159258722893986bd4ce2538a5f20d60b5ada60fd0be7f45c0e93bdf6bc7b55
3
+ metadata.gz: 889bd26404e3b02947c344c3d7db4a76f218a0432bff103a9fe391cb6517b0ce
4
+ data.tar.gz: 919d1644f16b9d7b7d92da723780947aed4b67b4767d9b834a6f9fcbb10f4d1d
5
5
  SHA512:
6
- metadata.gz: ce9d6ef498b9bbcb10eb7899330015ee23a2692cb73d5c9492280aa16ca9383891e96d517ef7ba19bd7581acebe9ae0bb97bb40b57d0d0da81f7747c7097e6a2
7
- data.tar.gz: baf9bc8fec9b9e83fd4a38da7fd8c49e97dc70c8b67ad40aca6302e5ce8d5fefaefd6598e0141a67867f20df6f2606be25db92fa0313ab3a14fb22a26352d8a2
6
+ metadata.gz: 8e0cd250a6587092b5de171acaaa7fe935bed7af66c2b813e609314ab5a9779b0112be243763f7ba93bfa74d09256f94fa09b16f434e08e215f5575a4a97a4c9
7
+ data.tar.gz: ba41920f96a01d55c09241f1318f9269c53d743d58af3ef3fe12fbdd7d65435c2892d7d5d65e53b5e17fc0176dce46ddfc4301eea45428e00962c687505a19cd
data/README.md CHANGED
@@ -12,3 +12,20 @@ Add the gem to your Gemfile and restart the application.
12
12
  $ bundle add alchemy-mission_control-jobs
13
13
  ```
14
14
 
15
+ ## Release a new version
16
+
17
+ First, bump the version with [gem-release](https://bundler.io/guides/creating_gem.html#releasing-the-gem):
18
+
19
+ ```shell
20
+ gem bump --version minor
21
+ ```
22
+
23
+ Second, generate the changelog entries. Set the version parameter with the upcoming version number.
24
+
25
+ ```shell
26
+ VERSION=x.y.z rake changelog
27
+ ```
28
+
29
+ Amend that changelog into the previous commit. After that go to [Releases Page](https://github.com/sitediver/alchemy-mission_control-jobs/releases)
30
+ and create a new release. Be aware the the tag has to start with `v` (e.g `v0.2.0`). Otherwise, the Release action will fail.
31
+
data/Rakefile CHANGED
@@ -15,3 +15,23 @@ namespace :spec do
15
15
  system "cd spec/dummy; RAILS_ENV=test bin/rake db:setup db:seed; cd -"
16
16
  end
17
17
  end
18
+
19
+ # add changelog task
20
+ require "github_changelog_generator/task"
21
+
22
+ # Temporary fix for SSL error
23
+ # Ref: https://github.com/ruby/openssl/issues/949#issuecomment-3367944960
24
+ require "openssl"
25
+ s = OpenSSL::X509::Store.new.tap(&:set_default_paths)
26
+ begin
27
+ OpenSSL::SSL::SSLContext.send(:remove_const, :DEFAULT_CERT_STORE)
28
+ rescue
29
+ nil
30
+ end
31
+ OpenSSL::SSL::SSLContext.const_set(:DEFAULT_CERT_STORE, s.freeze)
32
+
33
+ GitHubChangelogGenerator::RakeTask.new :changelog do |config|
34
+ config.user = "sitediver"
35
+ config.project = "alchemy-mission_control-jobs"
36
+ config.future_release = ENV["VERSION"]
37
+ end
@@ -1,7 +1,7 @@
1
1
  module Alchemy
2
2
  module MissionControl
3
3
  module Jobs
4
- VERSION = "0.1.2"
4
+ VERSION = "0.2.1"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alchemy-mission_control-jobs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sascha Karnatz
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-09 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: rails
@@ -38,7 +38,7 @@ dependencies:
38
38
  version: 7.4.0
39
39
  - - "<"
40
40
  - !ruby/object:Gem::Version
41
- version: '8.0'
41
+ version: '8.1'
42
42
  type: :runtime
43
43
  prerelease: false
44
44
  version_requirements: !ruby/object:Gem::Requirement
@@ -48,7 +48,7 @@ dependencies:
48
48
  version: 7.4.0
49
49
  - - "<"
50
50
  - !ruby/object:Gem::Version
51
- version: '8.0'
51
+ version: '8.1'
52
52
  - !ruby/object:Gem::Dependency
53
53
  name: mission_control-jobs
54
54
  requirement: !ruby/object:Gem::Requirement
@@ -190,7 +190,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
190
190
  - !ruby/object:Gem::Version
191
191
  version: '0'
192
192
  requirements: []
193
- rubygems_version: 3.6.5
193
+ rubygems_version: 3.6.9
194
194
  specification_version: 4
195
195
  summary: A simple integration of Mission Control — Jobs into AlchemyCMS
196
196
  test_files: []