22 lines
417 B
Plaintext
22 lines
417 B
Plaintext
|
#!/usr/bin/env ruby
|
||
|
|
||
|
pwd = Dir.pwd
|
||
|
|
||
|
Dir.chdir '..' do
|
||
|
File.readlines(File.join(pwd, 'Gemfile.erb')).find_all { |line| line[':git'] }.each do |line|
|
||
|
repo = line[%r{:git => (['"])(.*)\1}, 2]
|
||
|
|
||
|
puts "Installing #{repo}"
|
||
|
system %{git clone #{repo}}
|
||
|
end
|
||
|
end
|
||
|
|
||
|
puts "Bundling for local environment"
|
||
|
system %{script/gemfile local}
|
||
|
|
||
|
puts "Installing git hooks"
|
||
|
system %{script/install-git-hooks}
|
||
|
|
||
|
puts "Done!"
|
||
|
|