emissary 1.3.15 → 1.3.16

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.
Files changed (3) hide show
  1. data/VERSION.yml +1 -1
  2. data/lib/emissary.rb +6 -4
  3. metadata +3 -3
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 1
3
3
  :minor: 3
4
- :patch: 15
4
+ :patch: 16
@@ -14,6 +14,8 @@
14
14
  #
15
15
  #
16
16
  require 'rubygems'
17
+ require 'bundler/setup'
18
+
17
19
  require 'uuid'
18
20
  require 'digest/md5'
19
21
  require 'yaml'
@@ -31,10 +33,10 @@ module Emissary
31
33
  PATH = LIBPATH.dirname
32
34
  VERSION = ::YAML.load(File.read(PATH + 'VERSION.yml')).values.join '.'
33
35
 
34
- EXTERNALS_BASE = Pathname.new('/opt/emissary')
35
- EXTERNAL_IDENTITIES = (EXTERNALS_BASE + 'identities').to_s
36
- EXTERNAL_AGENTS = (EXTERNALS_BASE + 'agents').to_s
37
- EXTERNAL_OPERATORS = (EXTERNALS_BASE + 'operators').to_s
36
+ EXTERNALS_BASE = File.join('emissary')
37
+ EXTERNAL_IDENTITIES = File.join(EXTERNALS_BASE, 'identities').to_s
38
+ EXTERNAL_AGENTS = File.join(EXTERNALS_BASE, 'agents').to_s
39
+ EXTERNAL_OPERATORS = File.join(EXTERNALS_BASE, 'operator').to_s
38
40
 
39
41
  DEFAULT_EXCHANGE = :direct
40
42
  DAEMON_RECHECK_INTERVAL = 10
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: emissary
3
3
  version: !ruby/object:Gem::Version
4
- hash: 5
4
+ hash: 59
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 3
9
- - 15
10
- version: 1.3.15
9
+ - 16
10
+ version: 1.3.16
11
11
  platform: ruby
12
12
  authors:
13
13
  - Carl P. Corliss