pastvu 1.0.2 → 1.0.3
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/CHANGELOG.md +3 -0
- data/README.md +18 -0
- data/lib/pastvu/version.rb +1 -1
- data/pastvu.gemspec +1 -1
- metadata +4 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '0521681372061872678ff69ce3e4e931f4afc6b7a6d36b4631cf4ea7386090db'
|
|
4
|
+
data.tar.gz: 99096efab3c33d055c58b701e6f5a4adac7f138082f722161ca1d30a552b86c7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 94126b5684af6e0e294a1462a28eb3628a39a8e2cac62e06d49b60513a340bfd767745990c798309ab2f4446abe6f9b2f4faa86af13b83838bbf44862b3ae06d
|
|
7
|
+
data.tar.gz: 13b4602a7bd61ae5ea2e9732cc1578eae93f1de6a02ee9f74ea7f65d1436187ce1d78ac31b9833024508c5138716237a13d7188d9d5d035c7d8c97cb7a50a175
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -28,6 +28,24 @@ require "pastvu"
|
|
|
28
28
|
|
|
29
29
|
Refer to [PastVu API documentation](https://docs.pastvu.com/en/dev/api) for available interactions, parameters, parameter types and response examples.
|
|
30
30
|
|
|
31
|
+
Here are several use-cases for the gem depending on what you may want to request from PastVu:
|
|
32
|
+
|
|
33
|
+
- [Nearest Photos](#scenario-getting-nearest-photos)
|
|
34
|
+
- [Requesting](#step-one---request-data)
|
|
35
|
+
- [Working with the requested data](#step-two---work-with-data)
|
|
36
|
+
- [Manipulating attributes](#manipulate-attributes)
|
|
37
|
+
- [Downloading photos](#download-photos)
|
|
38
|
+
- [Requesting additional info](#request-more-data-about-the-photo)
|
|
39
|
+
- [Photos inside geographical bounds](#scenario-getting-photos-inside-geographical-bounds)
|
|
40
|
+
- [Preparing request](#step-one---prepare-request)
|
|
41
|
+
- [Requesting](#step-two---request-data)
|
|
42
|
+
- [Manipulating requested data](#step-three---manipulate-data)
|
|
43
|
+
- [Working with requested photos](#photos)
|
|
44
|
+
- [Working with requested clusters](#clusters)
|
|
45
|
+
- [Full photo information](#scenario-getting-full-photo-information)
|
|
46
|
+
- [Commentaries for a photo](#scenario-getting-commentaries-for-a-photo)
|
|
47
|
+
- [Adjusting gem's configuration](#configuration)
|
|
48
|
+
|
|
31
49
|
### Scenario: Getting nearest photos
|
|
32
50
|
|
|
33
51
|
#### Step one - request data
|
data/lib/pastvu/version.rb
CHANGED
data/pastvu.gemspec
CHANGED
|
@@ -5,7 +5,7 @@ require_relative "lib/pastvu/version"
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = "pastvu"
|
|
7
7
|
spec.version = Pastvu::VERSION
|
|
8
|
-
spec.authors = ["
|
|
8
|
+
spec.authors = ["projecteurlumiere"]
|
|
9
9
|
spec.email = ["129510705+projecteurlumiere@users.noreply.github.com"]
|
|
10
10
|
spec.homepage = "https://github.com/projecteurlumiere/pastvu"
|
|
11
11
|
spec.summary = "A Ruby wrapper for PastVu API"
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pastvu
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
8
|
-
autorequire:
|
|
7
|
+
- projecteurlumiere
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 2025-10-22 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: rspec
|
|
@@ -38,7 +37,6 @@ dependencies:
|
|
|
38
37
|
- - "~>"
|
|
39
38
|
- !ruby/object:Gem::Version
|
|
40
39
|
version: '3.19'
|
|
41
|
-
description:
|
|
42
40
|
email:
|
|
43
41
|
- 129510705+projecteurlumiere@users.noreply.github.com
|
|
44
42
|
executables: []
|
|
@@ -72,7 +70,6 @@ homepage: https://github.com/projecteurlumiere/pastvu
|
|
|
72
70
|
licenses:
|
|
73
71
|
- MIT
|
|
74
72
|
metadata: {}
|
|
75
|
-
post_install_message:
|
|
76
73
|
rdoc_options: []
|
|
77
74
|
require_paths:
|
|
78
75
|
- lib
|
|
@@ -87,8 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
87
84
|
- !ruby/object:Gem::Version
|
|
88
85
|
version: '0'
|
|
89
86
|
requirements: []
|
|
90
|
-
rubygems_version: 3.
|
|
91
|
-
signing_key:
|
|
87
|
+
rubygems_version: 3.6.2
|
|
92
88
|
specification_version: 4
|
|
93
89
|
summary: A Ruby wrapper for PastVu API
|
|
94
90
|
test_files: []
|