renuo-cli 3.1.2 → 3.1.3
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 +2 -2
- data/lib/renuo/cli/app/create_heroku_app.rb +2 -2
- data/lib/renuo/cli/app/release_project.rb +1 -1
- data/lib/renuo/cli/version.rb +1 -1
- data/lib/renuo/cli.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ae956670e74e092cce3f2161073efebe67b18f87e6de498c967a10f8f6109327
|
|
4
|
+
data.tar.gz: 7cd7137d5ffcb4975dbbf39adc523b25f7271b01ac4551af353a2ca022489143
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 32ac196c93c183a57423b65873b15351e60c03eee3f4f67cbb65d37604c181cf1ea5905af409fbd9710037f9977d3abb1c6f3874138ad494836ef50f884a95d5
|
|
7
|
+
data.tar.gz: 7acedf79bb2198ae72e3b9d637e09070e0fdf652948ddb5f80caf7856f7bfc05ba143374350cd3807b311f3c3940605fb8fb2d4c7aa17ea4acbd86e81d417ff6
|
data/README.md
CHANGED
|
@@ -32,11 +32,11 @@ To release a new version, update the version number in `version.rb`, and then ru
|
|
|
32
32
|
|
|
33
33
|
## Release
|
|
34
34
|
|
|
35
|
-
* Bump the version number in `lib/renuo/cli/version.rb` and commit to `
|
|
35
|
+
* Bump the version number in `lib/renuo/cli/version.rb` and commit to `main`
|
|
36
36
|
|
|
37
37
|
### Automatic
|
|
38
38
|
|
|
39
|
-
* Deploy through Semaphore console by starting a promotion to
|
|
39
|
+
* Deploy through Semaphore console by starting a promotion to main
|
|
40
40
|
|
|
41
41
|
### Manual
|
|
42
42
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
class CreateHerokuApp
|
|
2
|
-
ADMIN_EMAIL = '
|
|
2
|
+
ADMIN_EMAIL = 'operations@renuo.ch'.freeze
|
|
3
3
|
|
|
4
4
|
def initialize; end
|
|
5
5
|
|
|
6
|
-
def run(
|
|
6
|
+
def run(args)
|
|
7
7
|
project_name = args[0]
|
|
8
8
|
abort('>> Project name must be between 2 and 22 characters.') unless project_name&.length&.between?(2, 22)
|
|
9
9
|
emails = FetchEmails.new.fetch_emails
|
|
@@ -142,7 +142,7 @@ class ReleaseProject
|
|
|
142
142
|
cmd_in_folder(
|
|
143
143
|
[
|
|
144
144
|
"GIT_MERGE_AUTOEDIT=no git checkout #{main_branch}",
|
|
145
|
-
"git merge #{develop_branch}",
|
|
145
|
+
"git merge #{develop_branch} --no-edit",
|
|
146
146
|
"git tag -a #{@version} -m \"Release with versioin: #{@version}\""
|
|
147
147
|
].join(' && ')
|
|
148
148
|
)
|
data/lib/renuo/cli/version.rb
CHANGED
data/lib/renuo/cli.rb
CHANGED
|
@@ -111,7 +111,7 @@ module Renuo
|
|
|
111
111
|
command 'create-aws-project' do |c|
|
|
112
112
|
c.syntax = 'renuo create-aws-project'
|
|
113
113
|
c.summary = 'Generates necessary commands for our project setup on AWS incl. necessary installations.'
|
|
114
|
-
c.description =
|
|
114
|
+
c.description = <<~DESCRIPTION
|
|
115
115
|
This creates commands for creating AWS users, buckets an versioning policies and CloudFront.
|
|
116
116
|
It also guides you to set up the necessary environment.
|
|
117
117
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: renuo-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.1.
|
|
4
|
+
version: 3.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Renuo AG
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-04-
|
|
11
|
+
date: 2022-04-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activeresource
|