A curated list of libraries & SDKs for the Bluesky API and AT Protocol

updated deploy config for new bundler

+3 -8
+3 -8
config/deploy.rb
··· 1 - # TODO: migrate to capistrano3 bundler integration 2 - require 'bundler/capistrano' 3 - set :bundle_dir, '' 4 - set :bundle_flags, '--quiet' 5 - set :bundle_without, [] 6 - 7 set :application, "sdk.blue" 8 set :repository, "https://github.com/mackuba/sdk.blue.git" 9 set :scm, :git ··· 15 16 server "sdk.blue", :app, :web, :db, :primary => true 17 18 - before 'bundle:install', 'deploy:set_bundler_options' 19 20 after 'deploy:update_code', 'deploy:link_shared' 21 before 'deploy:create_symlink', 'deploy:build' 22 after 'deploy', 'deploy:cleanup' 23 24 namespace :deploy do 25 - task :set_bundler_options do 26 run "cd #{release_path} && bundle config set --local deployment 'true'" 27 run "cd #{release_path} && bundle config set --local path '#{shared_path}/bundle'" 28 run "cd #{release_path} && bundle config set --local without 'development test'" 29 end 30 31 task :link_shared do
··· 1 set :application, "sdk.blue" 2 set :repository, "https://github.com/mackuba/sdk.blue.git" 3 set :scm, :git ··· 9 10 server "sdk.blue", :app, :web, :db, :primary => true 11 12 + before 'deploy:finalize_update', 'deploy:bundle_install' 13 14 after 'deploy:update_code', 'deploy:link_shared' 15 before 'deploy:create_symlink', 'deploy:build' 16 after 'deploy', 'deploy:cleanup' 17 18 namespace :deploy do 19 + task :bundle_install do 20 run "cd #{release_path} && bundle config set --local deployment 'true'" 21 run "cd #{release_path} && bundle config set --local path '#{shared_path}/bundle'" 22 run "cd #{release_path} && bundle config set --local without 'development test'" 23 + run "cd #{release_path} && bundle install --quiet" 24 end 25 26 task :link_shared do