-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move Ruby SDK config to its own config file (#4451)
The package-name variable for Ruby was colliding with the Go build. Moved the Ruby config to its own file to avoid the collision.
- Loading branch information
1 parent
dc782b3
commit 2ca50c8
Showing
2 changed files
with
27 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
## Ruby | ||
|
||
These settings apply only when `--ruby` is specified on the command line. | ||
|
||
``` yaml $(ruby) | ||
package-name: azure_mgmt_databox | ||
package-version: "0.0.1" | ||
azure-arm: true | ||
``` | ||
### Ruby multi-api | ||
``` yaml $(ruby) && $(multiapi) | ||
batch: | ||
- tag: package-2018-01 | ||
``` | ||
### Tag: package-2018-01 and ruby | ||
These settings apply only when `--tag=package-2018-01 --ruby` is specified on the command line. | ||
Please also specify `--ruby-sdks-folder=<path to the root directory of your azure-sdk-for-ruby clone>`. | ||
|
||
``` yaml $(tag) == 'package-2018-01' && $(ruby) | ||
namespace: "Azure::Compute::Mgmt::V2018_01_01" | ||
output-folder: $(ruby-sdks-folder)/management/azure_mgmt_databox/lib | ||
``` |