prima-twig 0.31.17 → 0.31.19

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
  SHA1:
3
- metadata.gz: e4e191f664373d03358bfa314def410207d2f003
4
- data.tar.gz: 39409a9caf44f8b302daba9ad7430c9429f3aca6
3
+ metadata.gz: 2c48cd6afe3d2b5063126ce074d5c1b3ac461802
4
+ data.tar.gz: 6a7d1edcc74a61eb2629e49b832b04b19780cbf0
5
5
  SHA512:
6
- metadata.gz: 055fb211b488c519ff6e18b52123a2c1b46d6ec8b26530b1880a0a17620e995d0423e108241b841269a36679a2e7fafbd205db740929e29a3ab50bfdd3cb406a
7
- data.tar.gz: 960a11c5a00f7c05717e78de24bde86a71b9e21c6062da1d15cf4a40f1c336df6c02a4fbb23ff2b21a62cde2663fbd8d2af05735011de95dec73bfa12ac6762a
6
+ metadata.gz: 44c87b8eb539c18701bd327709936915f46ea1ebff7f6b50ffc720855ec6591f4d046d1ae817d4bbae52a85820ce23db5624e161fdd84fa0ba0ab03e29ca2596
7
+ data.tar.gz: a629f3570744c6ef731e5f83032687f630034692ab8722eadd4711f9371af74f4f465d49f0720b6533afc85bd8021acbcb53ac8e36bffb2d11a79181803f6cd0
@@ -132,9 +132,9 @@ class Review
132
132
  mail.html_part = html_part
133
133
  mail.text_part = text_part
134
134
 
135
- opts = {address: 'smtp.sparkpostmail.com', port: '587'}
136
- opts[:user_name] = 'SMTP_Injection'
137
- opts[:password] = @prima.config['sparkpost']
135
+ opts = {address: 'email-smtp.eu-west-1.amazonaws.com', port: '587'}
136
+ opts[:user_name] = @prima.config['aws_username']
137
+ opts[:password] = @prima.config['aws_password']
138
138
 
139
139
  mail.delivery_method(:smtp, opts)
140
140
  mail.deliver
@@ -6,6 +6,7 @@ require 'colorize'
6
6
  require 'highline/import'
7
7
  require 'launchy'
8
8
 
9
+
9
10
  def help_content
10
11
  <<-HELP
11
12
 
@@ -33,6 +33,7 @@ if args.include?('--help')
33
33
  exit
34
34
  end
35
35
 
36
+
36
37
  class PickIssue
37
38
  include Command
38
39
 
@@ -63,7 +64,7 @@ class PickIssue
63
64
  issue_number = choose_issue issues
64
65
  end
65
66
 
66
- issue_type = 'feature'
67
+ issue_type = 'feature'
67
68
  base_branch_name_default = 'master'
68
69
  branch_name = ask('Inserisci il nome del branch (puoi omettere feature/): '.cyan)
69
70
  if branch_name.length == 0
@@ -13,7 +13,7 @@ class Prima
13
13
  LABEL_HOTFIX='hotfix'
14
14
  LABEL_NEXT_RELEASE='next release'
15
15
  LABEL_IN_STAGING='in staging'
16
- CONFIG_KEYS=['github', 'mandrill', 'sparkpost', 'cloudflare_email', 'cloudflare_apikey']
16
+ CONFIG_KEYS=['github', 'mandrill', 'sparkpost', 'cloudflare_email', 'cloudflare_apikey', 'aws_username', 'aws_password']
17
17
  attr_reader :gh, :twig, :config, :rugged, :aws
18
18
 
19
19
  def initialize
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: prima-twig
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.31.17
4
+ version: 0.31.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matteo Giachino