Mina: バンドラーのキャッシュなし

作成日 2016年09月24日  ·  3コメント  ·  ソース: mina-deploy/mina

私はこのスクリプトを使用しています(mina 0.3からアップグレードされています)

require 'mina/bundler'
require 'mina/rails'
require 'mina/git'
require 'mina/rbenv'

set :shared_dirs, %w(log public/uploads node_modules)
set :current_path, 'current'
set :term_mode, nil

task :environment do
  invoke :'rbenv:load'
end

task setup: :environment do
  command %[mkdir -p "#{fetch(:shared_path)}/log"]
  command %[chmod g+rx,u+rwx "#{fetch(:shared_path)}/log"]

  command %[mkdir -p "#{fetch(:shared_path)}/public/uploads"]
  command %[chmod g+rx,u+rwx "#{fetch(:shared_path)}/public/uploads"]
  command %[mkdir -p "#{fetch(:shared_path)}/node_modules"]
  command %[chmod g+rx,u+rwx "#{fetch(:shared_path)}/node_modules"]
end

desc 'Deploys the current version to the server.'
task deploy: :environment do
  deploy do
    invoke :'git:clone'
    invoke :'deploy:link_shared_paths'
    invoke :'bundle:install'
    invoke :'rails:db_migrate'
    invoke :'npm_install'
    invoke :'rails:assets_precompile'
    invoke :'deploy:cleanup'

    on :launch do
      command "mkdir -p #{fetch(:current_path)}/tmp/"
      command "touch #{fetch(:current_path)}/tmp/restart.txt"
    end
  end
end

task :restart do
  command "touch #{fetch(:current_path)}/tmp/restart.txt"
end

task :logs do
  command 'echo "Contents of the log file are as follows:"'
  command "tail -f #{fetch(:current_path)}/log/#{fetch(:rails_env)}.log"
end

task :npm_install do
  command 'npm install --production'
end

問題は- bundle installは、デプロイが完了するたびにすべてのgemを最初からダウンロードすることです。 バージョン0.3ではうまく機能していました。

私が間違っていることは何ですか?

最も参考になるコメント

何が問題なのかわかりました。 バージョン1では、テーブル全体を作成する代わりに、shared_dirsに追加する必要があります。 だから私はやった:

set :shared_dirs, fetch(:shared_dirs, []).push('log').push('public/uploads').push('node_modules')

そしてそれは今働いています

全てのコメント3件

何が問題なのかわかりました。 バージョン1では、テーブル全体を作成する代わりに、shared_dirsに追加する必要があります。 だから私はやった:

set :shared_dirs, fetch(:shared_dirs, []).push('log').push('public/uploads').push('node_modules')

そしてそれは今働いています

ありがとう! 私は同じ問題を抱えていました!

閉じたスレッドに取り組むつもりはありませんが、次のようなこともできます。

shared_dires = %w{log public/uploads node_modules}
set :shared_dirs, fetch(:shared_dirs, []).push(*shared_dirs)
このページは役に立ちましたか?
0 / 5 - 0 評価