jetfuel 1.19.6 → 1.19.7

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
  SHA1:
3
- metadata.gz: aaf3b1c82432a40c0ac6e7b31b8c07616e54a69a
4
- data.tar.gz: 9585bdbbb686060755434c92f0c7e0de86ad4d4f
3
+ metadata.gz: b1cb7c092fe5077070a6a33af5db17748361352f
4
+ data.tar.gz: cc7f24e7852085ba183a1351a7100e4ae3f2023f
5
5
  SHA512:
6
- metadata.gz: 599407cc07253d4f81364b1179b8171b20a122d52b4c8ada1ee958d250ab50c3280c5025f62c91c8a4cf1584bb2d26c8a94be72eb6e4af39256a46543373e408
7
- data.tar.gz: a246e3a6a7f53b0c1b587d7f530481a24187dd9f93d830fe739038a1f1b84c9ec068e0ef4cfaf3664a606828d511b3889efc074186399f6d4b03cf64db9c3347
6
+ metadata.gz: f56b9ef7fac2f869e4a9c6f05d367e94e2845b8a51b6cb0646e73aec0ff9045811e725d14694178bbcdd1012384b288bef3b1b42ffcbccae5d609f1ff15a5efd
7
+ data.tar.gz: 43b9f53ff27d7130521a981f9cceb4564aacec5e904bdc9a990524abf951c27ecc8f6f4c24d488868957d8a2e10ec24ec02862f36fddf241ea9f45a66ebab8c1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- jetfuel (1.19.6)
4
+ jetfuel (1.19.7)
5
5
  bundler (~> 1.3)
6
6
  rails (= 4.1.1)
7
7
 
@@ -1,5 +1,5 @@
1
1
  module Jetfuel
2
2
  RAILS_VERSION = '4.1.1'
3
3
  RUBY_VERSION = IO.read("#{File.dirname(__FILE__)}/../../.ruby-version").strip
4
- VERSION = '1.19.6'
4
+ VERSION = '1.19.7'
5
5
  end
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['SECRET_KEY_BASE']
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.6
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-16 00:00:00.000000000 Z
11
+ date: 2014-07-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler