Sha256: 9dbac6eb4be47bf0298d6830932ae2683057e6b48e104ba3b28b07c43080da14
Contents?: true
Size: 1.89 KB
Versions: 4
Compression:
Stored size: 1.89 KB
Contents
# -*- encoding: utf-8 -*- # Author:: Couchbase <info@couchbase.com> # Copyright:: 2011, 2012 Couchbase, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # $:.push File.expand_path('../lib', __FILE__) require 'couchbase/version' Gem::Specification.new do |s| s.name = 'couchbase' s.version = Couchbase::VERSION s.author = 'Couchbase' s.email = 'support@couchbase.com' s.license = 'ASL-2' s.homepage = 'http://couchbase.org' s.summary = %q{Couchbase ruby driver} s.description = %q{The official client library for use with Couchbase Server.} s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.extensions = `git ls-files -- ext/**/extconf.rb`.split("\n") s.require_paths = ['lib'] s.add_runtime_dependency 'yaji', '~> 0.3.2' s.add_runtime_dependency 'multi_json', '~> 1.0' s.add_runtime_dependency 'connection_pool', '~> 1.0.0' s.add_development_dependency 'rake' s.add_development_dependency 'minitest', '~> 5.0.4' s.add_development_dependency 'rake-compiler', '>= 0.7.5' s.add_development_dependency 'mini_portile' s.add_development_dependency 'yajl-ruby', '~> 1.1.0' s.add_development_dependency 'active_support' s.add_development_dependency 'eventmachine' end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
couchbase-1.3.3-x86-mingw32 | couchbase.gemspec |
couchbase-1.3.3 | couchbase.gemspec |
couchbase-1.3.2 | couchbase.gemspec |
couchbase-1.3.2-x86-mingw32 | couchbase.gemspec |