diff options
author | Lukasz Strzalkowski <lukaszstrzalkowski@squareup.com> | 2014-01-31 16:07:35 +0100 |
---|---|---|
committer | Lukasz Strzalkowski <lukaszstrzalkowski@squareup.com> | 2014-02-03 23:19:34 +0100 |
commit | afd25ecbd880778a83591241035ee8259ed61023 (patch) | |
tree | b4a484e0f45aeefb5d2c71913cdfe59f065d7d14 /CHANGELOG.md | |
parent | 664746efac73cd0052ea8077f3d11adb7c371c79 (diff) | |
download | bundler-afd25ecbd880778a83591241035ee8259ed61023.tar.gz |
Add #git_source to define custom git sources
Adds ability to register custom git sources like :github and :gist.
Example:
git_source(:acme){ |repo_name| "git@git.acme.org:#{repo_name}.git" }
gem "secret", :acme => "strzalek/secret"
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 5460aa15d5..8a753bc250 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## Unreleased + +Features: + + - add ability to define custom git source to use as an option like :github, :gist by using `git_source` (@strzalek) + ## 1.6.0 Bugfixes: |