armrest 0.1.0 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -1
- data/lib/armrest/services/storage_account.rb +0 -1
- data/lib/armrest/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c71bf4e05a81863670d3bcd12082b1e1a66d741447f29f92b14f63476b9a512
|
4
|
+
data.tar.gz: ef9eaaf7123fa427bb94e617e5954b035bbc7eae6a7821bccb332122c6e5aac9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0cafa6a7d6d921ace8c3efe990a1dd0d9e32867b4dbd30225c36e8f34ada07e7a2daeeb2d12b4fde1fd681295173c0a4df5ad872a574db400e22a74ba882d285
|
7
|
+
data.tar.gz: fb7038646e5d815ff1cf5fd03bbcf150b812ae42d30f04a24f7984a245893b1e37c75f8d8a7520d56e0e88b9560382d87c19bebcbef2106dfe48f365b041c6f4
|
data/CHANGELOG.md
CHANGED
@@ -3,5 +3,11 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
5
5
|
|
6
|
-
## [0.1.
|
6
|
+
## [0.1.2] - 2022-01-20
|
7
|
+
- fix syntax error
|
8
|
+
|
9
|
+
## [0.1.1] - 2022-01-20
|
10
|
+
- remove debugging puts
|
11
|
+
|
12
|
+
## [0.1.0] - 2022-01-20
|
7
13
|
- Initial release.
|
@@ -29,7 +29,6 @@ module Armrest::Services
|
|
29
29
|
allow_blob_public_access: false
|
30
30
|
}
|
31
31
|
path = "subscriptions/#{subscription_id}/resourceGroups/#{group}/providers/Microsoft.Storage/storageAccounts/#{name}"
|
32
|
-
puts "StorageAccount#create attrs #{attrs}".color(:purple)
|
33
32
|
resp = api.put(path, attrs)
|
34
33
|
end
|
35
34
|
end
|
data/lib/armrest/version.rb
CHANGED