mina-infinum 1.9.0 → 2.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bd98ea2a3468c54d1c4098a8c2d51625172296cdc2096f0487a9e949739c74d6
4
- data.tar.gz: 7fb28f4e8d43b5d84159df037afebb52ec86bfece6bcc74524ef9d6db996a2d6
3
+ metadata.gz: c8b7cc4a4b5015428a7103241d34ec9ce0e672ed95b555f0a04d24b65640de89
4
+ data.tar.gz: 6e9499a465eef1bd140a269351899fb08ca12ebc67def5e478c9cb4c50a535ab
5
5
  SHA512:
6
- metadata.gz: 7167f83ec9b85b7aaffe69613104752a2049ff164af56a10c820af5722578fb3265a1fff63342c3e6dd24967b110f5719f15f2d5ff7ce8dd9af9154c21559116
7
- data.tar.gz: 8918418d8ac3e1b69eba2f37ed1074fdb9ba3035279edc40d46b648eb3eaac2f14ec5807c5b369be0ef998e34aa807dddfff26ec62f9eb9bd3e8fb1ddffcb1e7
6
+ metadata.gz: b57397003d8fc8ed3f682c686bcf64ac41df029f62ec7fe65c061198f17b084bbc38ea7e3d3f1ff508f95ea76de4acbd60c3e30fd02056afeb1bb5dea387d4e7
7
+ data.tar.gz: e864d2dbebfb3ef831ffc2f1c03d07074865e515a31ff16dbbf7192fcec9b84d73fac0ea659ca5c81eae31c93606791644f1d6c751341a325017f034192d76d7
data/CHANGELOG.md ADDED
@@ -0,0 +1,12 @@
1
+ # Changelog
2
+
3
+ ## [v2.0.0](https://github.com/infinum/mina-infinum/tree/v-2.0.0) (2021-12-03)
4
+ [Full Changelog](https://github.com/infinum/mina-infinum/compare/v1.9.0...v2.0.0)
5
+
6
+ ### Enhancements
7
+
8
+ - Warns if unknown service manager is used [\#2](https://github.com/infinum/mina-infinum/pull/2)
9
+
10
+ ### Breaking changes / Deprecations
11
+
12
+ - Switched default service manager to systemd [\#2](https://github.com/infinum/mina-infinum/pull/2)
data/README.md CHANGED
@@ -17,7 +17,7 @@ github
17
17
  ``` ruby
18
18
  set :application_name, <APP_NAME> # Used in background workers tasks
19
19
  set :background_worker, <WORKER_NAME> # Used in background workers tasks (eg. 'dj')
20
- set :service_manager, <SERVICE_MANAGER> # systemd, upstart (default)
20
+ set :service_manager, <SERVICE_MANAGER> # systemd (default), upstart
21
21
  set :sidekiq_web_namespace, <SIDEKIQ_WEB_MOUNT> # Used for creating symlink to Sidekiq assets in public/
22
22
  ```
23
23
 
@@ -1,5 +1,5 @@
1
- set :service_manager, :upstart
2
1
  set :sidekiq_web_namespace, nil
2
+ set :service_manager, :systemd
3
3
 
4
4
  desc 'Restart application'
5
5
  task :restart_application do
@@ -1,5 +1,5 @@
1
1
  module Mina
2
2
  module Infinum
3
- VERSION = '1.9.0'.freeze
3
+ VERSION = '2.0.0'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mina-infinum
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.0
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stjepan Hadjic
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-05-13 00:00:00.000000000 Z
11
+ date: 2021-12-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -132,6 +132,7 @@ files:
132
132
  - ".gitignore"
133
133
  - ".rspec"
134
134
  - ".travis.yml"
135
+ - CHANGELOG.md
135
136
  - CODE_OF_CONDUCT.md
136
137
  - Gemfile
137
138
  - LICENSE.txt
@@ -149,7 +150,7 @@ licenses:
149
150
  - MIT
150
151
  metadata:
151
152
  allowed_push_host: https://rubygems.org
152
- post_install_message:
153
+ post_install_message:
153
154
  rdoc_options: []
154
155
  require_paths:
155
156
  - lib
@@ -164,8 +165,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
164
165
  - !ruby/object:Gem::Version
165
166
  version: '0'
166
167
  requirements: []
167
- rubygems_version: 3.0.3
168
- signing_key:
168
+ rubygems_version: 3.1.4
169
+ signing_key:
169
170
  specification_version: 4
170
171
  summary: Collection of mina plugins we use in infinum
171
172
  test_files: []