-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
ra10ke | ||
====== | ||
|
||
[![Gem Version](https://badge.fury.io/rb/ra10ke.svg)](https://badge.fury.io/rb/ra10ke) | ||
|
||
Rake tasks related to [R10K](https://github.com/puppetlabs/r10k) and | ||
[Puppetfile](https://github.com/puppetlabs/r10k/blob/master/doc/puppetfile.mkd). | ||
|
||
## Usage | ||
|
||
Simply add the following line in your `Gemfile`: | ||
|
||
```ruby | ||
require 'ra10ke' | ||
``` | ||
|
||
## Rake tasks | ||
|
||
### r10k:syntax | ||
|
||
Syntax check for the Puppetfile. Similar to the `r10k puppetfile check` | ||
command. | ||
|
||
### r10k:dependencies | ||
|
||
This rake task goes through the modules that are declared in the Puppetfile, | ||
and prints outdated modules. | ||
|
||
#### Limitations | ||
|
||
* It works only with modules from the [Forge](https://forge.puppetlabs.com). | ||
Git and SVN modules will be ignored. | ||
* The version has to be specified explicitly. If it is omitted, or it is | ||
`:latest`, the module will be ignored. |