Repository is archived
No commit activity in last 3 years
No release in over 3 years
Deploy using Thor by executing Ruby remotely
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 3.0.0
>= 1.2.0
>= 0.11.7
 Project Readme

Robot Army

Robot Army is deploy scripting which offers remote execution of Ruby in addition to the usual shell scripting offered by other deploy packages.

If you want to test this, be sure that the robot-army gem is installed on both the client and server machines. You should get an error if you try to execute it against a server with it installed.

Example

class AppServer < RobotArmy::TaskMaster
  host 'app1.prod.example.com'
  
  desc "time", "Get the time on the server (delta will be slightly off depending on SSH delay)"
  def time
    rtime = remote{ Time.now }
    ltime = Time.now
    
    say "The time on #{host} is #{rtime}, " +
        "#{(rtime-ltime).abs} seconds #{rtime < ltime ? 'behind' : 'ahead of'} localhost"
  end
  
  desc "deployed_revision", "Gets the deployed revision"
  def deployed_revision
    say "Checking deployed revision on #{host}"
    say "Deployed revision: #{remote{ File.read("/opt/app/current/REVISION") }}"
  end
end

Known Issues

  • Code executed in remote has no access to instance variables or globals
  • Probably doesn't work with Windows