daemon-kit 0.1.8 → 0.1.8.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +4 -0
- data/daemon-kit.gemspec +3 -3
- data/lib/daemon_kit.rb +2 -2
- data/lib/daemon_kit/{amqp.rb → dk_amqp.rb} +0 -0
- data/lib/generators/daemon_kit/app/templates/Gemfile +6 -2
- metadata +5 -4
data/History.txt
CHANGED
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-
|
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/
|
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
|
-
# '
|
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://
|
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:
|
4
|
+
hash: 101
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
9
|
- 8
|
10
|
-
|
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-
|
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
|