12
13
14
15
16
17
18
19
20
21
22
23
|
# File 'lib/crane_rails/cli.rb', line 12
def bootstrap
template 'Vagrantfile', 'Vagrantfile'
get 'https://raw.githubusercontent.com/shicholas/Dockerfile-rails/master/Gemfile', 'Gemfile'
get 'https://raw.githubusercontent.com/shicholas/Dockerfile-rails/master/Gemfile.lock', 'Gemfile.lock'
copy_file '../templates/database.yml', 'config/database.yml'
template 'override-plugin.rb', 'override-plugin.rb'
template 'rails.yml', 'tmuxinator-sample.yml'
template 'Guardfile', 'Guardfile'
end
|