plate_api 1.1.1 → 1.1.2
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 522a7eca99fa4cbfe69b6c62e3b3dcc1af33a89344eb807b5623d6c8c7095d27
|
|
4
|
+
data.tar.gz: 3790ba562e95a4519ec147c246f4a7b7b2bc6a246aa8aff221dee434b3be1326
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3eab81c7024b5d115aaa8c5cbb48287fb90c6af13fa04f0b2619c22027e2c1ccd24ef1d66eaba19b76d4240abfd57c71b05a87ef7b15889043757768f5ce61d0
|
|
7
|
+
data.tar.gz: 318db8f1736f4a9896665b24a16db630e0b31d9f2f4bce96fd4384d780d5fd328608ec1fd0851dd491ee5f1a7fc768b17f1d303e69228da817e859a3a82743e5
|
data/Gemfile.lock
CHANGED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
module PlateApi::PlateObject
|
|
2
|
+
class AttachmentFolder < Base
|
|
3
|
+
|
|
4
|
+
has_one :site, "PlateApi::PlateObject::Site"
|
|
5
|
+
has_many :attachments, :attachment, "PlateApi::PlateObject::Attachment"
|
|
6
|
+
|
|
7
|
+
def self.api_name
|
|
8
|
+
"attachment_folders"
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def self.parent_class
|
|
12
|
+
Site
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
@@ -9,6 +9,7 @@ module PlateApi::PlateObject
|
|
|
9
9
|
has_many :rows, :row, "PlateApi::PlateObject::Row"
|
|
10
10
|
has_many :columns, :column, "PlateApi::PlateObject::Column"
|
|
11
11
|
has_many :elements, :element, "PlateApi::PlateObject::Element"
|
|
12
|
+
has_many :attachment_folders, :attachment_folder, "PlateApi::PlateObject::AttachmentFolder"
|
|
12
13
|
has_many :attachments, :attachment, "PlateApi::PlateObject::Attachment"
|
|
13
14
|
|
|
14
15
|
def self.api_name
|
data/lib/plate_api/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: plate_api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Kortleven
|
|
@@ -190,6 +190,7 @@ files:
|
|
|
190
190
|
- lib/plate_api/get_request.rb
|
|
191
191
|
- lib/plate_api/object_handler.rb
|
|
192
192
|
- lib/plate_api/plate_object/attachment.rb
|
|
193
|
+
- lib/plate_api/plate_object/attachment_folder.rb
|
|
193
194
|
- lib/plate_api/plate_object/base.rb
|
|
194
195
|
- lib/plate_api/plate_object/column.rb
|
|
195
196
|
- lib/plate_api/plate_object/company.rb
|