jetfuel 1.19.6 → 1.19.7
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/Gemfile.lock +1 -1
- data/lib/jetfuel/version.rb +1 -1
- data/templates/devise.rb +1 -1
- data/templates/smtp.rb +4 -4
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b1cb7c092fe5077070a6a33af5db17748361352f
|
|
4
|
+
data.tar.gz: cc7f24e7852085ba183a1351a7100e4ae3f2023f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f56b9ef7fac2f869e4a9c6f05d367e94e2845b8a51b6cb0646e73aec0ff9045811e725d14694178bbcdd1012384b288bef3b1b42ffcbccae5d609f1ff15a5efd
|
|
7
|
+
data.tar.gz: 43b9f53ff27d7130521a981f9cceb4564aacec5e904bdc9a990524abf951c27ecc8f6f4c24d488868957d8a2e10ec24ec02862f36fddf241ea9f45a66ebab8c1
|
data/Gemfile.lock
CHANGED
data/lib/jetfuel/version.rb
CHANGED
data/templates/devise.rb
CHANGED
|
@@ -5,7 +5,7 @@ Devise.setup do |config|
|
|
|
5
5
|
# random tokens. Changing this key will render invalid all existing
|
|
6
6
|
# confirmation, reset password and unlock tokens in the database.
|
|
7
7
|
# config.secret_key = 'afa7efc91e2f4ef9c31474e2a523805c32280219154ec2d1a27697031ed52f36a32f064fd0ead0602173cb41de11efdec66a5d0e903caed6cfb979137a5654d2'
|
|
8
|
-
config.secret_key = ENV
|
|
8
|
+
config.secret_key = ENV.fetch('SECRET_KEY_BASE', 'production_secret')
|
|
9
9
|
|
|
10
10
|
# ==> Mailer Configuration
|
|
11
11
|
# Configure the e-mail address which will be shown in Devise::Mailer,
|
data/templates/smtp.rb
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
SMTP_SETTINGS = {
|
|
2
|
-
address: ENV.fetch('SMTP_ADDRESS'), # example: 'smtp.sendgrid.net'
|
|
2
|
+
address: ENV.fetch('SMTP_ADDRESS', 'smpt.sendgrid.net'), # example: 'smtp.sendgrid.net'
|
|
3
3
|
authentication: :plain,
|
|
4
|
-
domain: ENV.fetch('SMTP_DOMAIN'), # example: 'this-app.com'
|
|
4
|
+
domain: ENV.fetch('SMTP_DOMAIN', 'appname.com'), # example: 'this-app.com'
|
|
5
5
|
enable_starttls_auto: true,
|
|
6
|
-
password: ENV.fetch('SMTP_PASSWORD'),
|
|
6
|
+
password: ENV.fetch('SMTP_PASSWORD', 'defaultpassword'),
|
|
7
7
|
port: '587',
|
|
8
|
-
user_name: ENV.fetch('SMTP_USERNAME')
|
|
8
|
+
user_name: ENV.fetch('SMTP_USERNAME', 'defaultusername')
|
|
9
9
|
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jetfuel
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.19.
|
|
4
|
+
version: 1.19.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- FlyoverWorks
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-07-
|
|
11
|
+
date: 2014-07-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|