Sha256: 4d020d22660c65309f19d778560b5c7b40c2785121432f98032ea71953fac050
Contents?: true
Size: 1.45 KB
Versions: 1
Compression:
Stored size: 1.45 KB
Contents
# encoding: utf-8 # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'azure_mgmt_redis/module_definition' require 'azure_mgmt_redis/version' Gem::Specification.new do |spec| spec.name = 'azure_mgmt_redis' spec.version = Azure::ARM::Redis::VERSION spec.authors = 'Microsoft Corporation' spec.email = 'azrubyteam@microsoft.com' spec.description = 'Microsoft Azure Redis Management Client Library for Ruby' spec.summary = 'Official Ruby client library to consume Microsoft Azure Redis Management services.' spec.homepage = 'http://github.com/azure/azure-sdk-ruby' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = 'bin' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.required_ruby_version = '>= 1.9.3' spec.add_development_dependency 'bundler', '~> 1.9' spec.add_development_dependency 'rake', '~> 10' spec.add_development_dependency 'rspec', '~> 3' spec.add_development_dependency 'dotenv', '~> 2' spec.add_development_dependency 'azure_mgmt_resources', '~> 0.3' spec.add_runtime_dependency 'ms_rest_azure', '~> 0.2.3' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
azure_mgmt_redis-0.3.1 | azure_mgmt_redis.gemspec |