Skip to content

Commit

Permalink
v0.2.6.2 - dependency on iproto 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
funny-falcon committed Jun 29, 2012
1 parent 696f0d5 commit 0932d41
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/tarantool.rb
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'iproto' require 'iproto'


class Tarantool class Tarantool
VERSION = '0.2.6.1' VERSION = '0.2.6.2'


require 'tarantool/space' require 'tarantool/space'
require 'tarantool/requests' require 'tarantool/requests'
Expand Down
1 change: 0 additions & 1 deletion lib/tarantool/request.rb
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ def initialize(space, *args)


def perform def perform
data = connection.send_request self.class.request_type, make_body data = connection.send_request self.class.request_type, make_body
raise data if Exception === data
make_response data make_response data
end end


Expand Down
8 changes: 4 additions & 4 deletions tarantool.gemspec
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Gem::Specification.new do |s|
s.rubygems_version = '1.3.5' s.rubygems_version = '1.3.5'


s.name = 'tarantool' s.name = 'tarantool'
s.version = '0.2.6.1' s.version = '0.2.6.2'
s.date = '2012-06-28' s.date = '2012-06-29'
s.rubyforge_project = 'tarantool' s.rubyforge_project = 'tarantool'


s.summary = "Tarantool KV-storage client." s.summary = "Tarantool KV-storage client."
Expand All @@ -20,7 +20,7 @@ Gem::Specification.new do |s|
s.rdoc_options = ["--charset=UTF-8"] s.rdoc_options = ["--charset=UTF-8"]
s.extra_rdoc_files = %w[README.md LICENSE] s.extra_rdoc_files = %w[README.md LICENSE]


s.add_dependency('iproto', [">= 0.3"]) s.add_dependency('iproto', [">= 0.3.1"])
s.add_dependency('activemodel', [">= 3.1", "< 4.0"]) s.add_dependency('activemodel', [">= 3.1", "< 4.0"])




Expand Down Expand Up @@ -66,4 +66,4 @@ Gem::Specification.new do |s|
## Test files will be grabbed from the file list. Make sure the path glob ## Test files will be grabbed from the file list. Make sure the path glob
## matches what you actually use. ## matches what you actually use.
s.test_files = s.files.select { |path| path =~ /^spec\/.*_spec\.rb/ } s.test_files = s.files.select { |path| path =~ /^spec\/.*_spec\.rb/ }
end end

0 comments on commit 0932d41

Please sign in to comment.