Skip to content

Commit

Permalink
Bump version v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jodosha committed Jun 26, 2012
1 parent eaf42ee commit 6644a83
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion 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
2 changes: 1 addition & 1 deletion 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
2 changes: 1 addition & 1 deletion 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
2 changes: 1 addition & 1 deletion 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
14 changes: 7 additions & 7 deletions 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")
Expand Down
4 changes: 2 additions & 2 deletions 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

0 comments on commit 6644a83

Please sign in to comment.