pastvu 1.0.0 → 1.0.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/CHANGELOG.md +4 -0
- data/README.md +6 -2
- data/lib/pastvu/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8e0e14db9b88b1a72bfe18b3480d679bb07bcc253e263cd81a054d2d23dd8569
|
|
4
|
+
data.tar.gz: 16306a452f788174418ff4342cf378f422d3660b43168c09ecb4f067c3b252d8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b27fa83719e8d559d5dbcbf1e7aa4ed9893434c6ca58c1cfe8e70d669b95e6504537f3e273edb701aa2697fea6444dd57d49113a739e26b31fb443569e72d151
|
|
7
|
+
data.tar.gz: 10df7d1c9dd47ae926be00470ae374215e059bfe18606b1556dbbcd567e025bafb0602e4f0f97457609ceef31745be6d98537eeaf868585d305c769c467d4ad6
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -8,11 +8,11 @@ PastVu gem is a Ruby wrapper for [PastVu API](https://docs.pastvu.com/en/dev/api
|
|
|
8
8
|
|
|
9
9
|
Install the gem and add to the application's Gemfile by executing:
|
|
10
10
|
|
|
11
|
-
$ bundle add pastvu
|
|
11
|
+
$ bundle add pastvu
|
|
12
12
|
|
|
13
13
|
or add the following line to the Gemfile manually
|
|
14
14
|
|
|
15
|
-
# gem "pastvu"
|
|
15
|
+
# gem "pastvu"
|
|
16
16
|
|
|
17
17
|
If bundler is not being used to manage dependencies, install the gem by executing:
|
|
18
18
|
|
|
@@ -291,6 +291,10 @@ Pastvu.configure do |c|
|
|
|
291
291
|
c.check_params_value # "true"
|
|
292
292
|
end
|
|
293
293
|
```
|
|
294
|
+
## To do list
|
|
295
|
+
|
|
296
|
+
* Rework tests to use [VCR gem](https://github.com/vcr/vcr)
|
|
297
|
+
* Refactor tests
|
|
294
298
|
|
|
295
299
|
## Contributing
|
|
296
300
|
|
data/lib/pastvu/version.rb
CHANGED