1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

Fix pro banner display, don't go messing with app boot in the future, dummy

This commit is contained in:
Mike Perham 2014-05-26 13:34:24 -07:00
parent 9f721e382b
commit 5553e58b5c
3 changed files with 8 additions and 4 deletions

View file

@ -1,3 +1,9 @@
3.1.2
-----------
- Suitably chastised, @mperham reverts the Bundler change.
3.1.1
-----------

View file

@ -40,9 +40,6 @@ module Sidekiq
daemonize
write_pid
load_celluloid
Bundler.require(:default, environment)
print_banner
end
# Code within this method is not tested because it alters
@ -50,6 +47,7 @@ module Sidekiq
# test coverage of Sidekiq::CLI are welcomed.
def run
boot_system
print_banner
self_read, self_write = IO.pipe

View file

@ -1,3 +1,3 @@
module Sidekiq
VERSION = "3.1.1"
VERSION = "3.1.2"
end