tyrantmanager 1.5.1 → 1.6.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.
data/HISTORY.rdoc CHANGED
@@ -1,4 +1,8 @@
1
1
  = Changelog
2
+ == Version 1.6.0 2010-06-17
3
+
4
+ * update to loquacious 1.6.x
5
+
2
6
  == Version 1.5.1 2010-05-19
3
7
 
4
8
  * update to logging 1.4.x
data/gemspec.rb CHANGED
@@ -20,9 +20,9 @@ TyrantManager::GEM_SPEC = Gem::Specification.new do |spec|
20
20
  spec.executables = pkg.files.bin.collect { |b| File.basename(b) }
21
21
 
22
22
  # add dependencies here
23
- spec.add_dependency( "loquacious", "~> 1.3.0")
24
- spec.add_dependency( "rufus-tokyo", "~> 1.0.0")
25
- spec.add_dependency( "logging", "~> 1.4.0" )
23
+ spec.add_dependency( "loquacious", "~> 1.6.4")
24
+ spec.add_dependency( "rufus-tokyo", "~> 1.0.1")
25
+ spec.add_dependency( "logging", "~> 1.4.3" )
26
26
  spec.add_dependency( "main", "~> 4.2.0" )
27
27
 
28
28
  # development dependencies
@@ -457,8 +457,17 @@ class TyrantManager
457
457
  # retrieve the cascading option from our config or the managers config if we
458
458
  # don't have it.
459
459
  #
460
+ # FIXME: For now this is a workaround for the warnings that are printed
461
+ # in loquacious 1.6.x for accessing undefined items. Better
462
+ # solution would be a merged config that does not alter the manager's
463
+ # config
464
+ #
460
465
  def cascading_config( name )
461
- configuration[name] || manager.configuration.instance_defaults[name]
466
+ if configuration.respond_to?( name ) then
467
+ configuration[name] || manager.configuration.instance_defaults[name]
468
+ else
469
+ manager.configuration.instance_defaults[name]
470
+ end
462
471
  end
463
472
  end
464
473
  end
@@ -6,8 +6,8 @@
6
6
  class TyrantManager
7
7
  module Version
8
8
  MAJOR = 1
9
- MINOR = 5
10
- BUILD = 1
9
+ MINOR = 6
10
+ BUILD = 0
11
11
 
12
12
  def to_a
13
13
  [MAJOR, MINOR, BUILD]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tyrantmanager
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.1
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Hinegardner
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-05-19 00:00:00 -06:00
12
+ date: 2010-06-17 00:00:00 -06:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -20,7 +20,7 @@ dependencies:
20
20
  requirements:
21
21
  - - ~>
22
22
  - !ruby/object:Gem::Version
23
- version: 1.3.0
23
+ version: 1.6.4
24
24
  version:
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: rufus-tokyo
@@ -30,7 +30,7 @@ dependencies:
30
30
  requirements:
31
31
  - - ~>
32
32
  - !ruby/object:Gem::Version
33
- version: 1.0.0
33
+ version: 1.0.1
34
34
  version:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: logging
@@ -40,7 +40,7 @@ dependencies:
40
40
  requirements:
41
41
  - - ~>
42
42
  - !ruby/object:Gem::Version
43
- version: 1.4.0
43
+ version: 1.4.3
44
44
  version:
45
45
  - !ruby/object:Gem::Dependency
46
46
  name: main