secureshare-ruby 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/secureshare/document.rb +11 -1
- data/secureshare-ruby.gemspec +1 -1
- metadata +2 -2
data/lib/secureshare/document.rb
CHANGED
@@ -4,8 +4,10 @@ module SecureShare
|
|
4
4
|
@name = json["name"]
|
5
5
|
@content_url = json["content_url"]
|
6
6
|
@description = json["description"]
|
7
|
+
@content_filename = json["content_filename"]
|
8
|
+
@tags = json["tags"]
|
7
9
|
@updated_at = json["updated_at"]
|
8
|
-
@created_at = json["created_at"]
|
10
|
+
@created_at = json["created_at"]
|
9
11
|
end
|
10
12
|
|
11
13
|
def name
|
@@ -27,5 +29,13 @@ module SecureShare
|
|
27
29
|
def created_at
|
28
30
|
@created_at
|
29
31
|
end
|
32
|
+
|
33
|
+
def content_filename
|
34
|
+
@content_filename
|
35
|
+
end
|
36
|
+
|
37
|
+
def tags
|
38
|
+
@tags
|
39
|
+
end
|
30
40
|
end
|
31
41
|
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.5"
|
8
8
|
gem.authors = ["Chris Aitchison"]
|
9
9
|
gem.email = ["chris.aitchison@sodalis.com.au"]
|
10
10
|
gem.description = %q{SecureShare Ruby API}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: secureshare-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-02-
|
12
|
+
date: 2013-02-26 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rest-client
|