Mix.install([
{:plug_cowboy, "~> 2.6"}
])
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
#!/usr/bin/env ruby | |
# For pulling git repo into a destination directory based on global path of the repo | |
# example: [email protected]:rabbitmq/rabbitmq-server.git => ~/projects/github.com/rabbitmq/rabbitmq-server | |
require 'fileutils' | |
PROJECTS_DIR="#{Dir.home}/projects" | |
url = ARGV[0] |