class Jekyll::Deploy::Spaces::Config

Attributes

endpoint[R]
key[R]
region[R]
secret[R]
space[R]

Public Class Methods

new(space:, key:, secret:, endpoint: 'https://nyc3.digitaloceanspaces.com', region: 'nyc3') click to toggle source
# File lib/jekyll/deploy/spaces/config.rb, line 7
def initialize(space:, key:, secret:, endpoint: 'https://nyc3.digitaloceanspaces.com', region: 'nyc3')
  @space = space
  @key = key
  @secret = secret
  @endpoint = endpoint
  @region = region
end