From 657f577158b4d493f936b8e60c79a4d02ed608df Mon Sep 17 00:00:00 2001 From: Cyril David Date: Wed, 28 Nov 2012 13:08:35 -0800 Subject: [PATCH] Release 0.1.5. This is primarily a bug fix release which fixes the problem of not passing in the proper connection settings into `Nest.new`. --- lib/ost.rb | 1 - ost.gemspec | 4 +--- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/ost.rb b/lib/ost.rb index 8bf19e4..bf33bf1 100644 --- a/lib/ost.rb +++ b/lib/ost.rb @@ -1,7 +1,6 @@ require "nest" module Ost - VERSION = "0.1.4" TIMEOUT = ENV["OST_TIMEOUT"] || 2 class Queue diff --git a/ost.gemspec b/ost.gemspec index 6c00967..d1a3ab7 100644 --- a/ost.gemspec +++ b/ost.gemspec @@ -1,8 +1,6 @@ -require "./lib/ost" - Gem::Specification.new do |s| s.name = "ost" - s.version = Ost::VERSION + s.version = "0.1.5" s.summary = "Redis based queues and workers." s.description = "Ost lets you manage queues and workers with Redis." s.authors = ["Michel Martens"]