Sha256: c02145e44123ad65d0ecbcd43898bd070ae2aeccdfbc1cce815ada4b33a90da7

Contents?: true

Size: 605 Bytes

Versions: 6

Compression:

Stored size: 605 Bytes

Contents

#! /usr/bin/env ruby

require 'stash/sword'

include Stash::Sword

password = ARGV[0]
username = 'ucop_dash_submitter'
collection = 'dash_cdl'
collection_uri = "http://uc3-mrtsword-dev.cdlib.org:39001/mrtsword/collection/#{collection}"
zipfile = File.expand_path('../uploads/example.zip', __FILE__)

edit_iri = 'http://sword-aws-dev.cdlib.org:39001/mrtsword/edit/dash_cdl/doi%3A10.5072%2FFK1465424720'

client = Client.new(
  username: username,
  password: password,
  collection_uri: URI(collection_uri)
)

code = client.update(edit_iri: edit_iri, zipfile: zipfile)
puts "update response code: #{code}"

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
stash-sword-0.1.6 examples/update.rb
stash-sword-0.1.5 examples/update.rb
stash-sword-0.1.4 examples/update.rb
stash-sword-0.1.3 examples/update.rb
stash-sword-0.1.2 examples/update.rb
stash-sword-0.1.1 examples/update.rb