No commit activity in last 3 years
No release in over 3 years
General "I have a command which generates things" deploy strategy for capistrano
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.7

Runtime

~> 1.1.7
 Project Readme

capistrano-scm-copy-command

Gem Version

Deploy anything which can be generated with a command with the help of capistrano (Vers. 3):

I use this to deploy a site generated with Gulp, but you could use it to deploy all static sites, e.g. Jekyll, Grunt, even Middleman!

capistrano-scm-copy was quite helpful as template for this gem. (I just changed 3 lines.)

Installation

Add this line to your application's Gemfile:

gem 'capistrano-scm-copy-command', require: false

and require it in your Capfile:

require 'capistrano-scm-copy-command'

And then execute:

$ bundle

Or install it yourself as:

$ gem install capistrano-scm-copy-command

Usage

Activate plugin

You just need to change :scm to :scm_copy_command in your deploy.rb and define your :build_command:

set :scm, :scm_copy_command
set :build_command, [:gulp, :default, "--env=#{fetch(:stage)}"]

Configuration

You can configure capistrano-scm-copy-command by using the following options:

# Local name of archive build
set :archive_name, 'archive.zip'

# Name of build_directory
set :build_dir, 'build'

# Keep permissions from filesystem
set :keep_filesystem_permissions, false

# Overwrite permissions of directories
set :directory_permissions, 2775

# Overwrite permissions of files
set :file_permissions, 0664

Required Software

Machine running capistrano: capistrano 3

Servers:

  • mktemp
  • unzip

Contributing

  1. Fork it ( https://github.com/siebertm/capistrano-scm-copy-command/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request