Created
February 17, 2015 08:42
-
-
Save launchkit-codes/ae2e22f308af8af97d1d to your computer and use it in GitHub Desktop.
Specify similar configuration in groups of a Gemfile
This file contains hidden or 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
| # Gemfile consists of plain Ruby | |
| # So it's authorized to do this: | |
| branch = 'develop' | |
| group :development do | |
| %(a b c d).each do |lib| | |
| gem lib, :git => "https://github.com/abc/#{lib}.git", :branch => branch | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment