azure_mgmt_subscriptions 0.5.0 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4661be76b66d37171ea0104d0e36a051d9bf8f78
4
- data.tar.gz: 53aa1178e9a7d6db45e93aa577c5c6bd0a095619
3
+ metadata.gz: 8714091e5ffee00f348303e0b2c4bb29c8b9c4e6
4
+ data.tar.gz: 79f0524cee72e360193d5e08875b4162d39792d3
5
5
  SHA512:
6
- metadata.gz: ff0f4fea17b61c76fcc9ddc232cdf5aa47235c6ad72c738257f7a6a5c798bca6b4507937e4f4f36ffd88726e424e0850fc2b4ed7ca705703f429fc7536c719e6
7
- data.tar.gz: 81e44a01465b765e6b1a7769cc76de2c635285d71be3c734b50be226f269c1cff18cb9f54756fec8351741242f3cc3cb61598ca0637435148bf37b953d23224c
6
+ metadata.gz: 7066b61568f68d2f09e0dd0cb2c296d25a605493d6b68ca4ac850b49467fc1f06c4a05ecdb87f770c2b456edafd264e2b03e5e4dbc140d4322e9d9846e3244f1
7
+ data.tar.gz: ea4b7b8ba76cd5380b7fab14b13450c31562761b4aa179716915a12dff7fa0bbaf289c55124bf2885c39a435e84d65f1ebdd3cb46cc4c466b147bbf958b34a07
@@ -4,5 +4,5 @@
4
4
  # regenerated.
5
5
 
6
6
  module Azure::ARM::Subscriptions
7
- VERSION = '0.5.0'
7
+ VERSION = '0.6.0'
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: azure_mgmt_subscriptions
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Microsoft Corporation
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-11 00:00:00.000000000 Z
11
+ date: 2016-09-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -72,24 +72,21 @@ dependencies:
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: 0.4.0
75
+ version: 0.5.0
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: 0.4.0
82
+ version: 0.5.0
83
83
  description: Microsoft Azure Subscription Management Client Library for Ruby
84
84
  email: azrubyteam@microsoft.com
85
85
  executables: []
86
86
  extensions: []
87
87
  extra_rdoc_files: []
88
88
  files:
89
- - ".rspec"
90
89
  - LICENSE.txt
91
- - Rakefile
92
- - azure_mgmt_subscriptions.gemspec
93
90
  - lib/azure_mgmt_subscriptions.rb
94
91
  - lib/generated/azure_mgmt_subscriptions.rb
95
92
  - lib/generated/azure_mgmt_subscriptions/models/location.rb
@@ -124,7 +121,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
124
121
  version: '0'
125
122
  requirements: []
126
123
  rubyforge_project:
127
- rubygems_version: 2.4.6
124
+ rubygems_version: 2.5.1
128
125
  signing_key:
129
126
  specification_version: 4
130
127
  summary: Official ruby client library to consume Microsoft Azure Subscription Management
data/.rspec DELETED
@@ -1,3 +0,0 @@
1
- --require spec_helper
2
- --color
3
- --format documentation
data/Rakefile DELETED
@@ -1,5 +0,0 @@
1
- # encoding: utf-8
2
- # Copyright (c) Microsoft Corporation. All rights reserved.
3
- # Licensed under the MIT License. See License.txt in the project root for license information.
4
-
5
- require "bundler/gem_tasks"
@@ -1,34 +0,0 @@
1
- # encoding: utf-8
2
- # Copyright (c) Microsoft Corporation. All rights reserved.
3
- # Licensed under the MIT License. See License.txt in the project root for license information.
4
-
5
- lib = File.expand_path('../lib', __FILE__)
6
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
7
-
8
- require 'generated/azure_mgmt_subscriptions/module_definition'
9
- require 'generated/azure_mgmt_subscriptions/version'
10
-
11
- Gem::Specification.new do |spec|
12
- spec.name = 'azure_mgmt_subscriptions'
13
- spec.version = Azure::ARM::Subscriptions::VERSION
14
- spec.authors = 'Microsoft Corporation'
15
- spec.email = 'azrubyteam@microsoft.com'
16
- spec.description = 'Microsoft Azure Subscription Management Client Library for Ruby'
17
- spec.summary = 'Official ruby client library to consume Microsoft Azure Subscription Management services.'
18
- spec.homepage = 'https://aka.ms/azure-sdk-for-ruby'
19
- spec.license = 'MIT'
20
-
21
- spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
22
- spec.bindir = 'bin'
23
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
24
- spec.require_paths = ['lib']
25
-
26
- spec.required_ruby_version = '>= 1.9.3'
27
-
28
- spec.add_development_dependency 'bundler', '~> 1.9'
29
- spec.add_development_dependency 'rake', '~> 10'
30
- spec.add_development_dependency 'rspec', '~> 3'
31
- spec.add_development_dependency 'dotenv', '~> 2'
32
-
33
- spec.add_runtime_dependency 'ms_rest_azure', '~> 0.4.0'
34
- end