daemon-kit 0.1.8 → 0.1.8.1

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.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.1.18.1 2010-08-04
2
+
3
+ * Fixed issue with our own amqp.rb file causing havoc on Ruby 1.8.7
4
+
1
5
  == 0.1.18 2010-08-03
2
6
 
3
7
  * Generators rewritten to use Thor
data/daemon-kit.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{daemon-kit}
8
- s.version = "0.1.8"
8
+ s.version = "0.1.8.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["kenneth.kalmer@gmail.com"]
12
- s.date = %q{2010-08-03}
12
+ s.date = %q{2010-08-04}
13
13
  s.default_executable = %q{daemon-kit}
14
14
  s.description = %q{daemon-kit aims to simplify creating Ruby daemons by providing a sound application skeleton (through a generator), task specific generators (jabber bot, etc) and robust environment management code.}
15
15
  s.email = %q{kenneth.kalmer@gmail.com}
@@ -40,7 +40,6 @@ Gem::Specification.new do |s|
40
40
  "daemon-kit.gemspec",
41
41
  "lib/daemon_kit.rb",
42
42
  "lib/daemon_kit/abstract_logger.rb",
43
- "lib/daemon_kit/amqp.rb",
44
43
  "lib/daemon_kit/application.rb",
45
44
  "lib/daemon_kit/arguments.rb",
46
45
  "lib/daemon_kit/commands/console.rb",
@@ -54,6 +53,7 @@ Gem::Specification.new do |s|
54
53
  "lib/daemon_kit/cron.rb",
55
54
  "lib/daemon_kit/cucumber/world.rb",
56
55
  "lib/daemon_kit/deployment/capistrano.rb",
56
+ "lib/daemon_kit/dk_amqp.rb",
57
57
  "lib/daemon_kit/em.rb",
58
58
  "lib/daemon_kit/error_handlers/base.rb",
59
59
  "lib/daemon_kit/error_handlers/hoptoad.rb",
data/lib/daemon_kit.rb CHANGED
@@ -13,7 +13,7 @@ $LOAD_PATH.unshift( File.dirname(__FILE__).to_absolute_path ) unless
13
13
  $LOAD_PATH.include?( File.dirname(__FILE__).to_absolute_path )
14
14
 
15
15
  module DaemonKit
16
- VERSION = '0.1.8'
16
+ VERSION = '0.1.8.1'
17
17
 
18
18
  autoload :Initializer, 'daemon_kit/initializer'
19
19
  autoload :Application, 'daemon_kit/application'
@@ -28,7 +28,7 @@ module DaemonKit
28
28
 
29
29
  autoload :Cron, 'daemon_kit/cron'
30
30
  autoload :Jabber, 'daemon_kit/jabber'
31
- autoload :AMQP, 'daemon_kit/amqp'
31
+ autoload :AMQP, 'daemon_kit/dk_amqp'
32
32
  autoload :Nanite, 'daemon_kit/nanite'
33
33
  autoload :RuoteParticipants, 'daemon_kit/ruote_participants'
34
34
  autoload :RuoteWorkitem, 'daemon_kit/ruote_workitem'
File without changes
@@ -1,8 +1,12 @@
1
1
  # If you need to 'vendor your gems' for deploying your daemons, bundler is a
2
2
  # great option. Update this Gemfile with any additional dependencies and run
3
- # 'gem bundle' to get them all unpacked in vendor/gems.
3
+ # 'bundle install' to get them all installed. Daemon-kit's capistrano
4
+ # deployment will ensure that the bundle required by your daemon is properly
5
+ # installed.
6
+
7
+ source :gemcutter
4
8
 
5
9
  # daemon-kit
6
10
  gem 'daemon-kit'
7
11
 
8
- # For more information on bundler, please visit http://github.com/carlhuda/bundler
12
+ # For more information on bundler, please visit http://gembundler.com
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: daemon-kit
3
3
  version: !ruby/object:Gem::Version
4
- hash: 11
4
+ hash: 101
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
9
  - 8
10
- version: 0.1.8
10
+ - 1
11
+ version: 0.1.8.1
11
12
  platform: ruby
12
13
  authors:
13
14
  - kenneth.kalmer@gmail.com
@@ -15,7 +16,7 @@ autorequire:
15
16
  bindir: bin
16
17
  cert_chain: []
17
18
 
18
- date: 2010-08-03 00:00:00 +02:00
19
+ date: 2010-08-04 00:00:00 +02:00
19
20
  default_executable: daemon-kit
20
21
  dependencies:
21
22
  - !ruby/object:Gem::Dependency
@@ -93,7 +94,6 @@ files:
93
94
  - daemon-kit.gemspec
94
95
  - lib/daemon_kit.rb
95
96
  - lib/daemon_kit/abstract_logger.rb
96
- - lib/daemon_kit/amqp.rb
97
97
  - lib/daemon_kit/application.rb
98
98
  - lib/daemon_kit/arguments.rb
99
99
  - lib/daemon_kit/commands/console.rb
@@ -107,6 +107,7 @@ files:
107
107
  - lib/daemon_kit/cron.rb
108
108
  - lib/daemon_kit/cucumber/world.rb
109
109
  - lib/daemon_kit/deployment/capistrano.rb
110
+ - lib/daemon_kit/dk_amqp.rb
110
111
  - lib/daemon_kit/em.rb
111
112
  - lib/daemon_kit/error_handlers/base.rb
112
113
  - lib/daemon_kit/error_handlers/hoptoad.rb