Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andyexeter/capistrano-mod-group
Capistrano v3.* extension to change the group of shared folders/files after deployment
https://github.com/andyexeter/capistrano-mod-group
capistrano capistrano-tasks
Last synced: 8 days ago
JSON representation
Capistrano v3.* extension to change the group of shared folders/files after deployment
- Host: GitHub
- URL: https://github.com/andyexeter/capistrano-mod-group
- Owner: andyexeter
- License: mit
- Created: 2018-05-21T16:21:10.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-23T12:34:23.000Z (almost 6 years ago)
- Last Synced: 2024-04-14T22:14:02.919Z (8 months ago)
- Topics: capistrano, capistrano-tasks
- Language: Ruby
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
capistrano-mod-group
=====================Capistrano v3.* extension to change the group of shared folders/files after deployment
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'capistrano', '~> 3.3.0'
gem 'capistrano-mod-group'
```And then execute:
$ bundle
Or install it yourself as:
$ gem install capistrano-mod-group
## Usage
Require in `Capfile` to use the default task:
```ruby
require 'capistrano/mod_group'
```## Example
```ruby
set :mod_group, 'apache'
set :mod_directories, [
'web/cache'
]
```## License
Released under the [MIT license](LICENSE)