Sha256: f7963dd42b07ba1bbc7538facc57322a453abed4d2fc955819e5acd54af715d6
Contents?: true
Size: 1.83 KB
Versions: 4
Compression:
Stored size: 1.83 KB
Contents
# Copyright 2020 Couchbase, Inc. # # 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. lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "couchbase/version" Gem::Specification.new do |spec| spec.name = "couchbase" spec.version = Couchbase::VERSION[:sdk] spec.authors = ["Sergey Avseyev"] spec.email = ["sergey.avseyev@gmail.com"] spec.summary = "SDK for Couchbase Server" spec.description = "Modern SDK for Couchbase Server" spec.homepage = "https://github.com/couchbase/couchbase.rb" spec.license = "MIT" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/couchbase/couchbase-ruby-client" spec.metadata["changelog_uri"] = "#{spec.metadata["source_code_uri"]}/releases" spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do `git ls-files --recurse-submodules -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.extensions = ["ext/extconf.rb"] spec.add_development_dependency "bundler", "~> 2.1" spec.add_development_dependency "rake", "~> 13.0" spec.add_development_dependency "minitest", "~> 5.14" spec.add_development_dependency "minitest-reporters", "~> 1.4" end
Version data entries
4 entries across 4 versions & 1 rubygems