Sha256: 97c84e131896e67a88fd8414bf6321a031a0cd03f3f4c96f25867b666e88f727
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_web/module_definition' require 'azure_mgmt_web/version' Gem::Specification.new do |spec| spec.name = 'azure_mgmt_web' spec.version = Azure::ARM::Web::VERSION spec.authors = 'Microsoft Corporation' spec.email = 'azrubyteam@microsoft.com' spec.description = 'Microsoft Azure Web Apps Management Client Library for Ruby' spec.summary = 'Official Ruby client library to consume Microsoft Azure Web Apps Management services.' spec.homepage = 'http://github.com/azure/azure-sdk-for-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_web-0.3.0 | azure_mgmt_web.gemspec |