lean-microsoft-graph 0.2.1 → 0.2.2
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 +11 -0
- data/Gemfile.lock +1 -1
- data/lib/lean-microsoft-graph.rb +1 -0
- data/lib/lean_microsoft_graph/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 779e491c44e7cde426387a2d5c45ddc1d28c58c58adc18240881e5a85e85e7c2
|
4
|
+
data.tar.gz: '07864e53aea38ea0c2e2481bcdbbebf7b35f2deb6a0fe28a24e494a69bcae71e'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6272ff9c1f064ea8dff155d75e5cb5b59521960c717ed085871eae67b8b020986d8a2255214be9fbaf4de2270c0f35a5ae9aaf0257a5c3fbf6260a8b3966753d
|
7
|
+
data.tar.gz: ed68e95c573e651d31b512edba0f7c5ed5253d9acb04bbe71f5f92440a9bc145f0e1e391ed4e0638506a6b9790f677c03bc8c5d6b84f35a05afa658bb32c797c
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
6
6
|
|
7
|
+
## [0.2.2] - 2023-11-11
|
8
|
+
|
9
|
+
### Added
|
10
|
+
|
11
|
+
- Check consistency of gem version with git tag.
|
12
|
+
|
13
|
+
### Fixed
|
14
|
+
|
15
|
+
- Fix issue that prevented gem from being loaded.
|
16
|
+
|
7
17
|
## [0.2.1] - 2023-11-09
|
8
18
|
|
9
19
|
### Added
|
@@ -34,5 +44,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
34
44
|
|
35
45
|
- Initial release
|
36
46
|
|
47
|
+
[0.2.2]: https://github.com/betogrun/lean_microsoft_graph/releases/tag/v0.2.2
|
37
48
|
[0.2.1]: https://github.com/betogrun/lean_microsoft_graph/releases/tag/v0.2.1
|
38
49
|
[0.2.0]: https://github.com/betogrun/lean_microsoft_graph/releases/tag/v0.2.0
|
data/Gemfile.lock
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
require 'lean_microsoft_graph'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lean-microsoft-graph
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alberto Rocha
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-11-
|
11
|
+
date: 2023-11-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -53,6 +53,7 @@ files:
|
|
53
53
|
- Rakefile
|
54
54
|
- bin/console
|
55
55
|
- bin/setup
|
56
|
+
- lib/lean-microsoft-graph.rb
|
56
57
|
- lib/lean_microsoft_graph.rb
|
57
58
|
- lib/lean_microsoft_graph/authentication/credentials.rb
|
58
59
|
- lib/lean_microsoft_graph/authentication/token_retriever.rb
|