diff --git a/redis-i18n/Gemfile b/redis-i18n/Gemfile index ee1d6a24..8ed3c364 100644 --- a/redis-i18n/Gemfile +++ b/redis-i18n/Gemfile @@ -1,5 +1,5 @@ source "http://rubygems.org" gemspec -gem 'redis-store', '1.1.0', :path => File.expand_path('../../redis-store', __FILE__) +gem 'redis-store', '~> 1.1.0', :path => File.expand_path('../../redis-store', __FILE__) gem 'SystemTimer', :platform => :mri_18 diff --git a/redis-rack-cache/Gemfile b/redis-rack-cache/Gemfile index ee1d6a24..8ed3c364 100644 --- a/redis-rack-cache/Gemfile +++ b/redis-rack-cache/Gemfile @@ -1,5 +1,5 @@ source "http://rubygems.org" gemspec -gem 'redis-store', '1.1.0', :path => File.expand_path('../../redis-store', __FILE__) +gem 'redis-store', '~> 1.1.0', :path => File.expand_path('../../redis-store', __FILE__) gem 'SystemTimer', :platform => :mri_18 diff --git a/redis-sinatra/Gemfile b/redis-sinatra/Gemfile index ee1d6a24..8ed3c364 100644 --- a/redis-sinatra/Gemfile +++ b/redis-sinatra/Gemfile @@ -1,5 +1,5 @@ source "http://rubygems.org" gemspec -gem 'redis-store', '1.1.0', :path => File.expand_path('../../redis-store', __FILE__) +gem 'redis-store', '~> 1.1.0', :path => File.expand_path('../../redis-store', __FILE__) gem 'SystemTimer', :platform => :mri_18 diff --git a/redis-store/lib/redis/store/version.rb b/redis-store/lib/redis/store/version.rb index 0260ee1d..4d93ac52 100644 --- a/redis-store/lib/redis/store/version.rb +++ b/redis-store/lib/redis/store/version.rb @@ -1,5 +1,5 @@ class Redis class Store < self - VERSION = '1.1.0' + VERSION = '1.1.1' end end diff --git a/redis-store/redis-store.gemspec b/redis-store/redis-store.gemspec index 6f52f933..3c5b7bdb 100644 --- a/redis-store/redis-store.gemspec +++ b/redis-store/redis-store.gemspec @@ -1,17 +1,17 @@ # -*- encoding: utf-8 -*- -$:.push File.expand_path("../lib", __FILE__) -require "redis/store/version" +$:.push File.expand_path('../lib', __FILE__) +require 'redis/store/version' Gem::Specification.new do |s| - s.name = "redis-store" + s.name = 'redis-store' s.version = Redis::Store::VERSION - s.authors = ["Luca Guidi", "Matt Horan"] - s.email = ["me@lucaguidi.com"] - s.homepage = "http://jodosha.github.com/redis-store" + s.authors = ['Luca Guidi', 'Matt Horan'] + s.email = ['me@lucaguidi.com'] + s.homepage = 'http://jodosha.github.com/redis-store' s.summary = %q{Redis stores for Ruby frameworks} s.description = %q{Namespaced Rack::Session, Rack::Cache, I18n and cache Redis stores for Ruby web frameworks.} - s.rubyforge_project = "redis-store" + s.rubyforge_project = 'redis-store' s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") diff --git a/redis-store/test/redis/store/version_test.rb b/redis-store/test/redis/store/version_test.rb index 1420ae77..3af0b123 100644 --- a/redis-store/test/redis/store/version_test.rb +++ b/redis-store/test/redis/store/version_test.rb @@ -1,7 +1,7 @@ require 'test_helper' describe Redis::Store::VERSION do - it "must be equal to 1.1.0" do - Redis::Store::VERSION.must_equal '1.1.0' + it "must be equal to 1.1.1" do + Redis::Store::VERSION.must_equal '1.1.1' end end