Sha256: 170dddfa970bae677b1a71369d419702c920790acd3c683e0c6b148d0f55bb94

Contents?: true

Size: 1.11 KB

Versions: 8

Compression:

Stored size: 1.11 KB

Contents

require 'terminal_helpers'
require 'net/ssh/session'
require 'chronic_duration'
require 'toml'
require 'hashr'
require 'yaml'
require 'safe_yaml'
require 'toml'
require 'digest/sha1'
require 'logger'

require 'shuttle/version'
require 'shuttle/errors'

module Shuttle
  autoload :CLI,         'shuttle/cli'
  autoload :Session,     'shuttle/session'
  autoload :Runner,      'shuttle/runner'
  autoload :Deploy,      'shuttle/deploy'
  autoload :Target,      'shuttle/target'
  autoload :Helpers,     'shuttle/helpers'
  autoload :PathHelpers, 'shuttle/path_helpers'
  autoload :Strategy,    'shuttle/strategy'
  autoload :Hook,        'shuttle/hook'
  autoload :Generator,   'shuttle/generator'

  autoload :Static,      'shuttle/deployment/static'
  autoload :Php,         'shuttle/deployment/php'
  autoload :Wordpress,   'shuttle/deployment/wordpress'
  autoload :Ruby,        'shuttle/deployment/ruby'
  autoload :Rails,       'shuttle/deployment/rails'
  autoload :Nodejs,      'shuttle/deployment/nodejs'

  module Support
    autoload :Bundler,   'shuttle/support/bundler'
    autoload :Thin,      'shuttle/support/thin'
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
shuttle-deploy-0.2.0.beta16 lib/shuttle.rb
shuttle-deploy-0.2.0.beta15 lib/shuttle.rb
shuttle-deploy-0.2.0.beta14 lib/shuttle.rb
shuttle-deploy-0.2.0.beta13 lib/shuttle.rb
shuttle-deploy-0.2.0.beta12 lib/shuttle.rb
shuttle-deploy-0.2.0.beta11 lib/shuttle.rb
shuttle-deploy-0.2.0.beta10 lib/shuttle.rb
shuttle-deploy-0.2.0.beta9 lib/shuttle.rb