deviantart 0.3.8.0 → 0.3.8.1
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 +4 -4
- data/README.md +2 -0
- data/deviantart.gemspec +4 -1
- data/lib/deviantart/error.rb +1 -1
- data/lib/deviantart/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eb3d04c8fd6aba7b8d02cf0d881f6c340931fd4c
|
4
|
+
data.tar.gz: 45639b28f5008ecd6a0118a943b6f9f9df052251
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bc6479c801136190aaba238c8ae277e87370ab2123ff8d9fad38909aaa8f8ed011f239f9aa6cb557b68f7f862d5b5ab29c2a5f499ec7cd8ab1e48dae3d185ca3
|
7
|
+
data.tar.gz: 2274ab442ec11b01bc0dcb8b521a2d19ba2740da8f35317977d522250de8fac22fedd1964fd411e5ffa3eb278e38badc371901e06018c4da8ad081deab028ebf
|
data/README.md
CHANGED
@@ -83,6 +83,8 @@ The authorization code is cached at `test/fixtures/authorization_code.json`.
|
|
83
83
|
|
84
84
|
## Official API Document
|
85
85
|
|
86
|
+
REST APIs:
|
87
|
+
|
86
88
|
[DeviantArt & Sta.sh - APIs | Developers | DeviantArt](https://www.deviantart.com/developers/http/v1/20160316)
|
87
89
|
|
88
90
|
And for OAuth 2.0:
|
data/deviantart.gemspec
CHANGED
@@ -10,7 +10,10 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.email = ['aycabta@gmail.com']
|
11
11
|
|
12
12
|
spec.summary = %q{deviantART API library}
|
13
|
-
spec.description =
|
13
|
+
spec.description = <<-EOD
|
14
|
+
A Ruby interface to the deviantART API,
|
15
|
+
with some tokens from OAuth API.
|
16
|
+
EOD
|
14
17
|
spec.homepage = 'https://github.com/aycabta/deviantart'
|
15
18
|
spec.license = 'MIT'
|
16
19
|
|
data/lib/deviantart/error.rb
CHANGED
@@ -17,7 +17,7 @@ module DeviantArt
|
|
17
17
|
messages << "error: #{@error}" if @error
|
18
18
|
messages << "error_description: #{@error_description}" if @error_description
|
19
19
|
messages << "error_details: #{@error_details}" if @error_details
|
20
|
-
messages.join(
|
20
|
+
messages.join(', ')
|
21
21
|
end
|
22
22
|
end
|
23
23
|
end
|
data/lib/deviantart/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: deviantart
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.8.
|
4
|
+
version: 0.3.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Code Ass
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-08-
|
11
|
+
date: 2017-08-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -136,9 +136,9 @@ dependencies:
|
|
136
136
|
- - ">="
|
137
137
|
- !ruby/object:Gem::Version
|
138
138
|
version: '0'
|
139
|
-
description:
|
140
|
-
|
141
|
-
|
139
|
+
description: |
|
140
|
+
A Ruby interface to the deviantART API,
|
141
|
+
with some tokens from OAuth API.
|
142
142
|
email:
|
143
143
|
- aycabta@gmail.com
|
144
144
|
executables: []
|