renuo-cli 3.1.2 → 3.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b15431d56265376a769e662fd9b467c0c1b0753a5b27e4429821ec37e87f9e01
4
- data.tar.gz: 29a10806d01da5cbb8b2a2946fdeb5226fd3cdafc36c4bec15cf0cc20a6f88ec
3
+ metadata.gz: ae956670e74e092cce3f2161073efebe67b18f87e6de498c967a10f8f6109327
4
+ data.tar.gz: 7cd7137d5ffcb4975dbbf39adc523b25f7271b01ac4551af353a2ca022489143
5
5
  SHA512:
6
- metadata.gz: 69a90927c91e4b854c7cf2d9ed57ac4d3a27573c446c9232d951815e36e66cdc46cbdeecf299579837cedaa1536ab9190610645e747626628d713cb61af0fc23
7
- data.tar.gz: ce3f379d8e365792f82024d3aa12a1d13ed697ffd85b50ff41bc10f112ee230a3c2c78991fb9b484faaf716906624f2786114b035c63d0f3cb9ca9598c887382
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 `master`
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 master
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 = 'admin@renuo.ch'.freeze
2
+ ADMIN_EMAIL = 'operations@renuo.ch'.freeze
3
3
 
4
4
  def initialize; end
5
5
 
6
- def run(*args)
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
  )
@@ -1,6 +1,6 @@
1
1
  module Renuo
2
2
  module Cli
3
- VERSION = '3.1.2'.freeze
3
+ VERSION = '3.1.3'.freeze
4
4
  NAME = 'renuo-cli'.freeze
5
5
  end
6
6
  end
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 = <<-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.2
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-12 00:00:00.000000000 Z
11
+ date: 2022-04-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activeresource