Hi Kenneth,
Can we get a release of DK at some point please? Specifically, I need the fixes that are in the git repo only. This means that all projects I have dependent need to use :git => in their Gemfile which adds noise to deployments. Furthermore, DK as it stands doesn't build cleanly because of Rubygems validation errors [1]. Safely is also not a listed dependency [2].
$ git clone git://github.com/kennethkalmer/daemon-kit
$ cd daemon-kit
$ git rev-parse HEAD
e0dbe938eb2b3d4d38ec0ae78226fb3a4e4194bc
[1]
$ gem build daemon-kit.gemspec
ERROR: While executing gem ... (Gem::InvalidSpecificationException)
["lib/daemon_kit/error_handlers/base.rb", "lib/daemon_kit/error_handlers/hoptoad.rb", "lib/daemon_kit/safety.rb", "spec/error_handlers_spec.rb"] are not files
[2]
$ git grep require|grep safely
lib/daemon_kit/initializer.rb:require 'safely'
$ grep safely daemon-kit.gemspec|wc -l
0
I can add pull requests to fix all these issues, provided you're OK with pushing out a release for this? The fixes in git vs the latest gem release are critical for me (specifically around AMQP and Bundler). There are a number of issues on the GH tracker which relate to this but they all seem to be tackling larger issues. I think just adding in the missing dependency and cleaning up the manifest is good enough for a point release.
Cheers