Skip to content

Commit

Permalink
Merge remote-tracking branch 'ivmaykov/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan King committed Aug 22, 2011
2 parents 1020d08 + dd4bea9 commit 5e9eeb9
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 11 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
@@ -1,3 +1,5 @@
v0.12.0 Changed thrift_client dependency to 0.7.0

v0.11.4
- Fix get_range to invoke blocks
- Fix current distribution urls in Rakfile. Resolves Issue# 97.
Expand Down
Empty file modified Gemfile 100644 → 100755
Empty file.
8 changes: 4 additions & 4 deletions Gemfile.lock 100644 → 100755
Expand Up @@ -5,7 +5,7 @@ PATH
json
rake
simple_uuid (>= 0.1.0)
thrift_client (>= 0.6.3)
thrift_client (>= 0.7.0)

GEM
remote: http://rubygems.org/
Expand All @@ -26,9 +26,9 @@ GEM
rubyforge (2.0.4)
json_pure (>= 1.1.7)
simple_uuid (0.1.2)
thrift (0.6.0)
thrift_client (0.6.3)
thrift (~> 0.6.0)
thrift (0.7.0)
thrift_client (0.7.0)
thrift (~> 0.7.0)

PLATFORMS
ruby
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -9,7 +9,7 @@ unless ENV['FROM_BIN_CASSANDRA_HELPER']
p.project = "fauna"
p.summary = "A Ruby client for the Cassandra distributed database."
p.rubygems_version = ">= 0.8"
p.dependencies = ['thrift_client >=0.6.3', 'json', 'rake', 'simple_uuid >=0.1.0']
p.dependencies = ['thrift_client >=0.7.0', 'json', 'rake', 'simple_uuid >=0.1.0']
p.ignore_pattern = /^(data|vendor\/cassandra|cassandra|vendor\/thrift|.*\.rbc)/
p.rdoc_pattern = /^(lib|bin|tasks|ext)|^README|^CHANGELOG|^TODO|^LICENSE|^COPYING$/
p.retain_gemspec = true
Expand Down
10 changes: 5 additions & 5 deletions cassandra.gemspec
Expand Up @@ -2,11 +2,11 @@

Gem::Specification.new do |s|
s.name = %q{cassandra}
s.version = "0.11.4"
s.version = "0.12.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0.8") if s.respond_to? :required_rubygems_version=
s.authors = [%q{Evan Weaver, Ryan King}]
s.date = %q{2011-07-22}
s.date = %q{2011-08-16}
s.description = %q{A Ruby client for the Cassandra distributed database.}
s.email = %q{}
s.executables = [%q{cassandra_helper}]
Expand All @@ -24,18 +24,18 @@ Gem::Specification.new do |s|
s.specification_version = 3

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<thrift_client>, [">= 0.6.3"])
s.add_runtime_dependency(%q<thrift_client>, [">= 0.7.0"])
s.add_runtime_dependency(%q<json>, [">= 0"])
s.add_runtime_dependency(%q<rake>, [">= 0"])
s.add_runtime_dependency(%q<simple_uuid>, [">= 0.1.0"])
else
s.add_dependency(%q<thrift_client>, [">= 0.6.3"])
s.add_dependency(%q<thrift_client>, [">= 0.7.0"])
s.add_dependency(%q<json>, [">= 0"])
s.add_dependency(%q<rake>, [">= 0"])
s.add_dependency(%q<simple_uuid>, [">= 0.1.0"])
end
else
s.add_dependency(%q<thrift_client>, [">= 0.6.3"])
s.add_dependency(%q<thrift_client>, [">= 0.7.0"])
s.add_dependency(%q<json>, [">= 0"])
s.add_dependency(%q<rake>, [">= 0"])
s.add_dependency(%q<simple_uuid>, [">= 0.1.0"])
Expand Down
2 changes: 1 addition & 1 deletion lib/cassandra.rb
@@ -1,5 +1,5 @@
require 'rubygems'
gem 'thrift_client', '~> 0.6.3'
gem 'thrift_client', '~> 0.7.0'
require 'thrift_client'
gem 'simple_uuid' , '~> 0.1.0'
require 'simple_uuid'
Expand Down

0 comments on commit 5e9eeb9

Please sign in to comment.