atlas_rb 0.0.52 → 0.0.53

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ae8bf67d4dd9fe248752287c0e9e5c1f8fa4bf5ba2d58f1d14e548b8db58deb2
4
- data.tar.gz: 6f13b61d2fed2849c684215b26d9d89415f89af36a482de358f84ba8daeaf998
3
+ metadata.gz: a7d9df70b466e4b62db94dd27024137fccb16c3f18b06821a93124ce0b6c15a9
4
+ data.tar.gz: e8fbecc7b36ae97725201ed0b3db1fdbf3f81d1b0085ea3d0ce3526bbcd5e9b2
5
5
  SHA512:
6
- metadata.gz: bd8689e06a59fa123f4b6230a024ac72db29a4f6d6084f3bed6e8371d322af3bbda463f1614a56398280faf1966f479ff702ed0b8e1e896ac1bd8bfe1efef475
7
- data.tar.gz: d2901be08a1327ff92afba81d64ce80d803b987ebca00b21d8c9bf8b53576d2121826c6b251c97f0ae7ce0f070fbfe35c4ae461ba3c6566b0222becc2859bf61
6
+ metadata.gz: 3f655fc91584e99757f706e417fa8480ae53dc4d913227f885ef9e981d0a0056c3456bbce50bc71fe6e536f6a9dea712fabedecf54f1c7869d0fe66df407bd20
7
+ data.tar.gz: c7b0b663ca55eefe8c7fb5c35e53cd2f0dfac9facfb938094532dc0d05c494c9138ee159409c023fa155b55edf83e0cd88221e78ef6260ee67ecb2bcbf5e26f8
data/.version CHANGED
@@ -1 +1 @@
1
- 0.0.52
1
+ 0.0.53
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.53)
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]
11
+ def self.create(id, xml_path = nil)
13
12
  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.53
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Cliff