Skip to content
This repository was archived by the owner on Oct 12, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 4 additions & 14 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,10 @@
/test/version_tmp/
/tmp/

# Used by dotenv library to load environment variables.
# .env

## Specific to RubyMotion:
.dat*
.repl_history
build/
*.bridgesupport
build-iPhoneOS/
build-iPhoneSimulator/

## Specific to RubyMotion (use of CocoaPods):
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# vendor/Pods/

## Documentation cache and generated files:
/.yardoc/
Expand All @@ -48,3 +34,7 @@ build-iPhoneSimulator/

# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
.rvmrc

/.idea/
.env

2 changes: 2 additions & 0 deletions .rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
--color
--require spec_helper
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ruby@compute-ruby-msi-vm
18 changes: 5 additions & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
## [project-title] Changelog

<a name="x.y.z"></a>
# x.y.z (yyyy-mm-dd)

*Features*
* ...

*Bug Fixes*
* ...

*Breaking Changes*
* ...
## 2017.09.12

*Features*
* Adding initial sample to create Managed Service Identity Azure virtual machine.

76 changes: 0 additions & 76 deletions CONTRIBUTING.md

This file was deleted.

21 changes: 21 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# 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.

source 'https://rubygems.org'

group :development, :test do
gem 'rake', '~>11.1'
gem 'rspec', '~>3.4'
gem 'dotenv', '~>2.1'
gem 'vcr', '~>3.0'
gem 'webmock', '~>2.0'
gem 'climate_control'
end

gem 'azure_mgmt_authorization', '~>0.12.0'
gem 'azure_mgmt_resources', '~>0.12.0'
gem 'azure_mgmt_compute', '~>0.12.0'
gem 'azure_mgmt_network', '~>0.12.0'
gem 'azure_mgmt_storage', '~>0.12.0'
gem 'haikunator', '~>1.1'
87 changes: 87 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
GEM
remote: https://rubygems.org/
specs:
addressable (2.5.1)
public_suffix (~> 2.0, >= 2.0.2)
azure_mgmt_authorization (0.12.0)
ms_rest_azure (~> 0.9.0)
azure_mgmt_compute (0.12.0)
ms_rest_azure (~> 0.9.0)
azure_mgmt_network (0.12.0)
ms_rest_azure (~> 0.9.0)
azure_mgmt_resources (0.12.0)
ms_rest_azure (~> 0.9.0)
azure_mgmt_storage (0.12.0)
ms_rest_azure (~> 0.9.0)
climate_control (0.2.0)
concurrent-ruby (1.0.5)
crack (0.4.3)
safe_yaml (~> 1.0.0)
diff-lcs (1.3)
domain_name (0.5.20170404)
unf (>= 0.0.5, < 1.0.0)
dotenv (2.2.1)
faraday (0.13.1)
multipart-post (>= 1.2, < 3)
faraday-cookie_jar (0.0.6)
faraday (>= 0.7.4)
http-cookie (~> 1.0.0)
haikunator (1.1.0)
hashdiff (0.3.5)
http-cookie (1.0.3)
domain_name (~> 0.5)
ms_rest (0.7.1)
concurrent-ruby (~> 1.0)
faraday (~> 0.9)
timeliness (~> 0.3)
ms_rest_azure (0.9.0)
concurrent-ruby (~> 1.0)
faraday (~> 0.9)
faraday-cookie_jar (~> 0.0.6)
ms_rest (~> 0.7.0)
multipart-post (2.0.0)
public_suffix (2.0.5)
rake (11.3.0)
rspec (3.6.0)
rspec-core (~> 3.6.0)
rspec-expectations (~> 3.6.0)
rspec-mocks (~> 3.6.0)
rspec-core (3.6.0)
rspec-support (~> 3.6.0)
rspec-expectations (3.6.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.6.0)
rspec-mocks (3.6.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.6.0)
rspec-support (3.6.0)
safe_yaml (1.0.4)
timeliness (0.3.8)
unf (0.1.4)
unf_ext
unf_ext (0.0.7.4)
vcr (3.0.3)
webmock (2.3.2)
addressable (>= 2.3.6)
crack (>= 0.3.2)
hashdiff

PLATFORMS
ruby

DEPENDENCIES
azure_mgmt_authorization (~> 0.12.0)
azure_mgmt_compute (~> 0.12.0)
azure_mgmt_network (~> 0.12.0)
azure_mgmt_resources (~> 0.12.0)
azure_mgmt_storage (~> 0.12.0)
climate_control
dotenv (~> 2.1)
haikunator (~> 1.1)
rake (~> 11.1)
rspec (~> 3.4)
vcr (~> 3.0)
webmock (~> 2.0)

BUNDLED WITH
1.14.3
Loading