authify-core 0.1.1 → 0.2.0

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: 1978addbf478136a40cdf73afc7618a840f551f5
4
- data.tar.gz: 1aa0eaf1b4d5a298fb1c755486368c66553dea5f
3
+ metadata.gz: b355c9154659137c929240517153c9ff102c1f92
4
+ data.tar.gz: cab650ae80c17244a310656dc7101c3a2201aedc
5
5
  SHA512:
6
- metadata.gz: 057299072b709a99f6166506b2dbf449eb5dd593c4dcda7cc8d2ff8d5cf280c2c1a162d04f26d5016568396002b1f0dd7aff769f50d2817d431282e24ea2e614
7
- data.tar.gz: d31a3da6b20b38bd08a044c2af2e6e56684c3a1c40ee1c88358155fe21a0b5f714c663e768a7fde5925c940b1bf2db6c93712e269efba5e022ae8ecd28c380a7
6
+ metadata.gz: 4a0cbdcb93ba946bc136c67b6b18b099417b23739467aaf3851bbfb1ae20a3b7f56f35ac368157323ce4e4b2e6a4db3fc1878ed1b655bcc712fdda81a1e32a27
7
+ data.tar.gz: 1f1e931c425ea6a348d1a8d9312004b4c1485c1afa0846d87aa2d4158103b34aa9be6bc157acd56b8b669af99bed8e3e04e990f07e37cfed2f476d066a3c9d6a
data/Rakefile CHANGED
@@ -7,4 +7,4 @@ RSpec::Core::RakeTask.new(:spec)
7
7
  RuboCop::RakeTask.new(:rubocop)
8
8
  YARD::Rake::YardocTask.new
9
9
 
10
- task default: %i(spec rubocop yard)
10
+ task default: %i[spec rubocop yard]
@@ -17,10 +17,10 @@ module Authify
17
17
  },
18
18
  mail: {
19
19
  server: {
20
- address: 'smtp.myawesomecompany.com',
21
- port: '25'
20
+ address: ENV['AUTHIFY_MAIL_ADDRESS'] || 'smtp.myawesomecompany.com',
21
+ port: ENV['AUTHIFY_MAIL_PORT'] || '25'
22
22
  },
23
- from: 'noreply@myawesomecompany.com'
23
+ from: ENV['AUTHIFY_MAIL_FROM'] || 'noreply@myawesomecompany.com'
24
24
  },
25
25
  jwt: {
26
26
  algorithm: ENV['AUTHIFY_JWT_ALGORITHM'] || 'ES512',
@@ -2,8 +2,8 @@ module Authify
2
2
  module Core
3
3
  VERSION = [
4
4
  0, # Major
5
- 1, # Minor
6
- 1 # Patch
5
+ 2, # Minor
6
+ 0 # Patch
7
7
  ].join('.')
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: authify-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Gnagy
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-03-28 00:00:00.000000000 Z
11
+ date: 2017-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jwt