atlas_rb 0.0.52 → 0.0.54

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ae8bf67d4dd9fe248752287c0e9e5c1f8fa4bf5ba2d58f1d14e548b8db58deb2
4
- data.tar.gz: 6f13b61d2fed2849c684215b26d9d89415f89af36a482de358f84ba8daeaf998
3
+ metadata.gz: 3783dac3e90e0710de6cb63dbefd12858c5cc6bbbab5d8bbc74100af52b56ce3
4
+ data.tar.gz: 5df48e147258911c1dcba2e637f94619c293cc398b602c76bfaaa31f1adc7129
5
5
  SHA512:
6
- metadata.gz: bd8689e06a59fa123f4b6230a024ac72db29a4f6d6084f3bed6e8371d322af3bbda463f1614a56398280faf1966f479ff702ed0b8e1e896ac1bd8bfe1efef475
7
- data.tar.gz: d2901be08a1327ff92afba81d64ce80d803b987ebca00b21d8c9bf8b53576d2121826c6b251c97f0ae7ce0f070fbfe35c4ae461ba3c6566b0222becc2859bf61
6
+ metadata.gz: bb90d3591825c493b7ce4bd9ebaf2149e98f8708d5f1052961c4e842f34fefd41c61b7509998b4d326133ba4ab04d0ad3f372d553bfbb409c8cfafd5cf8f3055
7
+ data.tar.gz: 250613ec50dd638dfaacda8fb237aaa688d23a2a8dff561927bd79aaa27fed7e8d9ca2cdc29dee8d950f96c45041cf58add1835489d95889d5309bcd72aa9c3a
data/.version CHANGED
@@ -1 +1 @@
1
- 0.0.52
1
+ 0.0.54
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- atlas_rb (0.0.52)
4
+ atlas_rb (0.0.54)
5
5
  faraday (~> 2.7)
6
6
  faraday-follow_redirects (~> 0.3.0)
7
7
  faraday-multipart (~> 1)
@@ -8,9 +8,12 @@ module AtlasRb
8
8
  JSON.parse(connection({}).get(ROUTE + id)&.body)["collection"]
9
9
  end
10
10
 
11
- def self.create(id)
12
- # params[:parent_id]
13
- JSON.parse(connection({ parent_id: id }).post(ROUTE)&.body)["collection"]
11
+ def self.create(id, xml_path = nil)
12
+ result = JSON.parse(connection({ parent_id: id }).post(ROUTE)&.body)["collection"]
13
+ return unless xml_path.present?
14
+
15
+ update(result["id"], xml_path)
16
+ find(result["id"])
14
17
  end
15
18
 
16
19
  def self.destroy(id)
data/lib/atlas_rb/work.rb CHANGED
@@ -8,9 +8,12 @@ module AtlasRb
8
8
  JSON.parse(connection({}).get(ROUTE + id)&.body)["work"]
9
9
  end
10
10
 
11
- def self.create(id)
12
- # params[:collection_id]
13
- JSON.parse(connection({ collection_id: id }).post(ROUTE)&.body)["work"]
11
+ def self.create(id, xml_path = nil)
12
+ result = JSON.parse(connection({ collection_id: id }).post(ROUTE)&.body)["work"]
13
+ return unless xml_path.present?
14
+
15
+ update(result["id"], xml_path)
16
+ find(result["id"])
14
17
  end
15
18
 
16
19
  def self.destroy(id)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: atlas_rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.52
4
+ version: 0.0.54
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Cliff