The Cybre.Space fork of Mastodon -- https://github.com/tootsuite/mastodon
https://cybre.space
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
369 B
14 lines
369 B
# frozen_string_literal: true |
|
require 'capistrano/setup' |
|
require 'capistrano/deploy' |
|
require 'capistrano/scm/git' |
|
|
|
install_plugin Capistrano::SCM::Git |
|
|
|
require 'capistrano/rbenv' |
|
require 'capistrano/bundler' |
|
require 'capistrano/yarn' |
|
require 'capistrano/rails/assets' |
|
require 'capistrano/rails/migrations' |
|
|
|
Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }
|
|
|