Mercurial support for Vlad. Using it is as simple
as passing :scm => :mercurial to Vlad when loading it up.
Plug it in, it works.
Supports deploying a patch queue on top of the deployed site (uses Mercurial Queues extension). See documentation below.
# lib/tasks/vlad.rake begin require 'vlad' Vlad.load(:scm => :mercurial) rescue LoadError end
Mercurial Queues extension enabled if using patch queue deployment (bundled with Mercurial, disabled by default)
sudo gem install vlad-hg
The mercurial command to use. Defaults to ‘hg’.
Whether to look for subrepos when exporting. Defaults to false.
The location of the MQ repository to use for :mercurial_queue.
Defaults to “#{repository}/.hg/patches”.
The revision of the _patch queue_ repository to use. See below.
vlad-hg supports deploying from a patch queue repository on
top of the main site repository. This is useful e.g. for deploying a
staging site with minor configuration changes from the production site. To
use it, pass :scm => :mercurial_queue to Vlad.load instead
of :scm => :mercurial.
For example, say your repository is at example.com/hg/my-site and you’re deploying to my-site.example.com/. You want to set up a staging site with your latest trunk code at my-staging-site.example.com/, so that you can test your changes before deploying to the live site. You set up a patch queue repository with the staging configuration like so:
$ hg qinit -c # make the patch queue version-controlled $ hg qnew -m 'staging configuration' staging.patch ...configure for staging database, etc... $ hg qrefresh $ hg qcommit -m 'commit current patch queue'
You now have a repository in <working repo>/.hg/patches that contains your configuration changes. You can clone this repository to your canonical repository location:
$ hg clone .hg/patches http://example.com/hg/my-site/.hg/patches # first time $ hg push -R .hg/patches http://example.com/hg/my-site/.hg/patches # push subsequent changes
Now when you run rake vlad:update, it will update the
repository on the server and push all the patches in the queue (hg
qpush -a) before exporting the release directory.
vlad-hg can also use a patch queue in a location other than
<repository>/.hg/patches. To do this, it adds the
queue_repo variable. For example, say you want to keep your
patch queue at example.com/hg/my-staging-site.
You would have this in config/deploy.rb:
set :repository, "http://example.com/hg/my-site" set :queue_repo, "http://example.com/hg/my-staging-site"
and you would push your patch queue like so:
$ hg push -R .hg/patches http://example.com/hg/my-staging-site
To use a revision _of the patch queue_ other than tip, specify
the queue_revision variable:
set :queue_revision, "deadbeefd00d"
(The MIT License)
Copyright © 2011 Kevin Bullock and the rest of the Ruby Hit Squad
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.