oversip 1.3.6 → 1.3.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.
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  Name: OverSIP
2
2
  Maintainer: Iñaki Baz Castillo <ibc@aliax.net>
3
- Copyright (c) 2013 Iñaki Baz Castillo <ibc@aliax.net>
3
+ Copyright (c) 2012-2013 Iñaki Baz Castillo <ibc@aliax.net>
4
4
 
5
5
 
6
6
  License: The MIT License
@@ -128,6 +128,7 @@ module OverSIP::Launcher
128
128
 
129
129
  ::OverSIP.is_ready = false
130
130
  ::OverSIP.status = :loading
131
+ ::OverSIP.root_fiber = ::Fiber.current
131
132
 
132
133
  log_system_notice "using Ruby #{RUBY_VERSION}p#{RUBY_PATCHLEVEL} (#{RUBY_RELEASE_DATE} revision #{RUBY_REVISION}) [#{RUBY_PLATFORM}]"
133
134
  log_system_notice "using EventMachine-LE #{::EM::VERSION}"
@@ -5,7 +5,7 @@ module OverSIP
5
5
  module Version
6
6
  MAJOR = 1
7
7
  MINOR = 3
8
- TINY = 6
8
+ TINY = 7
9
9
  DEVEL = nil # Set to nil for stable releases.
10
10
  end
11
11
 
@@ -15,7 +15,7 @@ module OverSIP
15
15
  AUTHOR = "Inaki Baz Castillo"
16
16
  AUTHOR_EMAIL = "ibc@aliax.net"
17
17
  HOMEPAGE = "http://www.oversip.net"
18
- year = "2013"
18
+ year = "2012-2013"
19
19
  DESCRIPTION = "#{PROGRAM_NAME} #{VERSION}\n#{HOMEPAGE}\n#{year}, #{AUTHOR} <#{AUTHOR_EMAIL}>"
20
20
 
21
21
  end
data/lib/oversip.rb CHANGED
@@ -49,7 +49,8 @@ module OverSIP
49
49
  :tls_public_cert, :tls_private_cert,
50
50
  :stud_pids,
51
51
  :is_ready, # true, false
52
- :status # :loading, :running, :terminating
52
+ :status, # :loading, :running, :terminating
53
+ :root_fiber
53
54
 
54
55
  def master?
55
56
  @master_pid == $$
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oversip
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.6
4
+ version: 1.3.7
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-01-03 00:00:00.000000000 Z
12
+ date: 2013-01-31 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: eventmachine-le