Sha256: cbcc94a6b825b33aedeec301b8287dfdde4e40699bd6b06aa603fe757c3d4917

Contents?: true

Size: 1.1 KB

Versions: 6

Compression:

Stored size: 1.1 KB

Contents

module Eco
  module API
    class Session
      class Config
        class SFTP < BaseConfig

          def host=(value)
            self["host"] = value
          end

          def host
            self["host"]
          end

          def user=(value)
            self["user"] = value
          end

          def user
            self["user"]
          end

          def key_file=(key)
            self["key_file"] = key
          end

          def key_file
            self["key_file"]
          end

          def base_path=(path)
            self["base_path"] = path
          end

          def base_path
            self["base_path"]
          end

          def enviro_subpaths=(hash)
            self["enviro_subpaths"] = hash
          end

          def enviro_subpaths
            self["enviro_subpaths"]
          end

          def enviro_subpath
            enviro_subpaths[config.active_enviro]
          end

          def remote_folder
            base_path + "/" + enviro_subpath
          end
          
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
eco-helpers-1.1.3 lib/eco/api/session/config/sftp.rb
eco-helpers-1.1.2 lib/eco/api/session/config/sftp.rb
eco-helpers-1.1.1 lib/eco/api/session/config/sftp.rb
eco-helpers-1.0.14 lib/eco/api/session/config/sftp.rb
eco-helpers-1.0.13 lib/eco/api/session/config/sftp.rb
eco-helpers-1.0.12 lib/eco/api/session/config/sftp.rb