secureshare-ruby 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/secureshare/document.rb +5 -0
- data/secureshare-ruby.gemspec +1 -1
- metadata +1 -1
data/lib/secureshare/document.rb
CHANGED
@@ -5,6 +5,7 @@ module SecureShare
|
|
5
5
|
@content_url = json["content_url"]
|
6
6
|
@description = json["description"]
|
7
7
|
@content_filename = json["content_filename"]
|
8
|
+
@content_type = json["content_type"]
|
8
9
|
@tags = json["tags"]
|
9
10
|
@updated_at = json["updated_at"]
|
10
11
|
@created_at = json["created_at"]
|
@@ -37,5 +38,9 @@ module SecureShare
|
|
37
38
|
def tags
|
38
39
|
@tags
|
39
40
|
end
|
41
|
+
|
42
|
+
def content_type
|
43
|
+
@content_type
|
44
|
+
end
|
40
45
|
end
|
41
46
|
end
|
data/secureshare-ruby.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |gem|
|
6
6
|
gem.name = "secureshare-ruby"
|
7
|
-
gem.version = "0.0.
|
7
|
+
gem.version = "0.0.6"
|
8
8
|
gem.authors = ["Chris Aitchison"]
|
9
9
|
gem.email = ["chris.aitchison@sodalis.com.au"]
|
10
10
|
gem.description = %q{SecureShare Ruby API}
|