* Bump capistrano from 3.11.2 to 3.12.1 Bumps [capistrano](https://github.com/capistrano/capistrano) from 3.11.2 to 3.12.1. - [Release notes](https://github.com/capistrano/capistrano/releases) - [Commits](https://github.com/capistrano/capistrano/compare/v3.11.2...v3.12.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> * Bump capistrano from 3.11.2 to 3.12.1 Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh>
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			428 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			428 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| lock '3.12.1'
 | |
| 
 | |
| set :repo_url, ENV.fetch('REPO', 'https://github.com/tootsuite/mastodon.git')
 | |
| set :branch, ENV.fetch('BRANCH', 'master')
 | |
| 
 | |
| set :application, 'mastodon'
 | |
| set :rbenv_type, :user
 | |
| set :rbenv_ruby, File.read('.ruby-version').strip
 | |
| set :migration_role, :app
 | |
| 
 | |
| append :linked_files, '.env.production', 'public/robots.txt'
 | |
| append :linked_dirs, 'vendor/bundle', 'node_modules', 'public/system'
 |