alchemy-mission_control-jobs 0.1.2 → 0.2.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 +16 -0
- data/Rakefile +20 -0
- data/lib/alchemy/mission_control/jobs/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4c1b51cc9926fb27845697bd30f9ecd641586d39a31351919a928538f9865c71
|
|
4
|
+
data.tar.gz: 3f0a6c9facb8936f7f8e713eb545d3a7f5de9a98a526cb09f5c3dff9820fafff
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8523b1320c0dda0f591c3a8bada520f9405f3032aa742f4ae67324b56e2bd53e2511117837713bebe47c4c87d149a474c1c3d203a8582ad42c2dc9e078a34a5a
|
|
7
|
+
data.tar.gz: 7f89e98163daed019fb3ec289dc80bd195e1ba15e64f1be64dc769bdf168ca83698f8b1b416fae834e3b141d637bd5308b6e0972b8ac1fd32e20350ffc997da7
|
data/README.md
CHANGED
|
@@ -12,3 +12,19 @@ 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.
|
|
30
|
+
|
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
|
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.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sascha Karnatz
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date:
|
|
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.
|
|
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.
|
|
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.
|
|
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: []
|