https://github.com/fetch/capistrano-tasks
Fetch! Capistrano Tasks
https://github.com/fetch/capistrano-tasks
Last synced: 19 days ago
JSON representation
Fetch! Capistrano Tasks
- Host: GitHub
- URL: https://github.com/fetch/capistrano-tasks
- Owner: fetch
- License: mit
- Created: 2015-03-15T15:18:23.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-03-15T15:23:25.000Z (about 11 years ago)
- Last Synced: 2024-12-31T21:42:24.162Z (over 1 year ago)
- Language: Ruby
- Homepage:
- Size: 117 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Fetch! Capistrano Tasks
Some utility tasks and extensions for Capistrano 3.
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'fetch-capistrano-tasks', github: 'fetch/capistrano-tasks'
```
And then execute:
$ bundle
## Usage
Require in `Capfile` to include all the tasks:
```rb
require 'capistrano/fetch'
```
Or require a single taskset:
```rb
require 'capistrano/fetch/git`
```
## Tasks
- `fetch:git:update_repo_url`
When you update the `:repo_url` in your local config, use this task to also update it on the remote repo.
## Contributing
1. Fork it ( https://github.com/fetch/capistrano-tasks/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request