azure 0.7.9 → 0.7.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 41257a1d4a6916910efedb0dd9396fe6721f2af9
4
- data.tar.gz: 6095e46dd6f60c0bb7c01299de3b9ac58137b90b
3
+ metadata.gz: 35eddc1080e57f02ea73769668099b7fe5db4a06
4
+ data.tar.gz: 1d2deb190b6b6d749a73d190da68e86d6106cb56
5
5
  SHA512:
6
- metadata.gz: 83b590011096ee0f8dd6b40f98e965d2c06e951763658a2d689d62a9ddfabb5615f538667144df637bf050f4300d71aeb4b10c4f9aa63ecfb9e82946d685f896
7
- data.tar.gz: 59c933a16b43d9e2cd20fbea5d5c33cae018db45d6ed7503dfe5d8e2acafa0c2f5c258346e10ea8b3fe4fa187c1b6c7a1d66004e85e14f266c702cd7a62d4d95
6
+ metadata.gz: fb3976466f0467bb6b2da4b3145a396d6900b07dcfaaa71aabf0850cb6635f45d3defdede166985dd5a4cfb2c33b032c64abe5ada471252159ea37a55ed490b8
7
+ data.tar.gz: 62927722a9cff6a034e031b7aaffbc6c5f2f4c677a3ecf8f84d6e7917200b580b1fa3ffdd052a838b32e89023040a4b7ed5d7e77c16764fe791ecb6542b150bf
@@ -5,6 +5,8 @@ rvm:
5
5
  - 2.1.5
6
6
  - 2.2.0
7
7
  - 2.3.0
8
+ before_install:
9
+ - gem install bundler
8
10
  script:
9
11
  - bundle install && bundle exec rake test:unit
10
12
  - if [ "$INTEG_RECORDED" == "true" ] ; then bundle exec rake test:recorded ; fi
@@ -1,3 +1,6 @@
1
+ ## 2017.09.07 - Azure Gems @version 0.7.10
2
+ * This version is released to fix the dependency issue on nokogiri. [#946](https://github.com/Azure/azure-sdk-for-ruby/pull/946)
3
+
1
4
  ## 2017.04.19 - Azure Gems @version 0.7.9
2
5
  * No new changes in this release. This version is released to fix the checksum issue in the rubygems. [#755](https://github.com/Azure/azure-sdk-for-ruby/issues/755)
3
6
 
data/README.md CHANGED
@@ -28,6 +28,9 @@ Information on Azure deployment models: [https://azure.microsoft.com/en-us/docum
28
28
 
29
29
  Note: x64 Ruby for Windows is known to have some compatibility issues.
30
30
 
31
+ ### Notice
32
+ For ruby version >= 1.9.3 and < 2.2.0, please install compatible Nokogiri(version >= 1.6.8), otherwise the installation using old version of bundler or all version of rubygems will report failure.
33
+
31
34
  # Getting Started with Azure Service Management
32
35
 
33
36
  ## Install the rubygem package
@@ -36,11 +36,7 @@ Gem::Specification.new do |s|
36
36
  s.add_runtime_dependency('faraday', '~> 0.9')
37
37
  s.add_runtime_dependency('faraday_middleware', '~> 0.10')
38
38
  s.add_runtime_dependency('mime-types', ['>= 1', '< 4.0']) # vagrant-share and other stuff relies on 1
39
- if RUBY_VERSION < "2.1.0"
40
- s.add_runtime_dependency('nokogiri', '~> 1.6.0')
41
- else
42
- s.add_runtime_dependency('nokogiri', '~> 1.7')
43
- end
39
+ s.add_runtime_dependency('nokogiri', '~> 1.6')
44
40
  s.add_runtime_dependency('systemu', '~> 2.6')
45
41
  s.add_runtime_dependency('thor', '~> 0.19')
46
42
 
@@ -17,7 +17,7 @@ module Azure
17
17
  class Version
18
18
  MAJOR = 0 unless defined? MAJOR
19
19
  MINOR = 7 unless defined? MINOR
20
- UPDATE = 9 unless defined? UPDATE
20
+ UPDATE = 10 unless defined? UPDATE
21
21
  PRE = nil unless defined? PRE
22
22
 
23
23
  class << self
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: azure
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.9
4
+ version: 0.7.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Microsoft Corporation
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-04-19 00:00:00.000000000 Z
12
+ date: 2017-09-07 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: addressable
@@ -93,14 +93,14 @@ dependencies:
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: '1.7'
96
+ version: '1.6'
97
97
  type: :runtime
98
98
  prerelease: false
99
99
  version_requirements: !ruby/object:Gem::Requirement
100
100
  requirements:
101
101
  - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: '1.7'
103
+ version: '1.6'
104
104
  - !ruby/object:Gem::Dependency
105
105
  name: systemu
106
106
  requirement: !ruby/object:Gem::Requirement
@@ -367,7 +367,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
367
367
  version: '0'
368
368
  requirements: []
369
369
  rubyforge_project:
370
- rubygems_version: 2.4.5
370
+ rubygems_version: 2.6.13
371
371
  signing_key:
372
372
  specification_version: 4
373
373
  summary: Official ruby client library to consume Microsoft Azure services.