microsoft_graph 0.1.0 → 0.1.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 +1 -0
- data/lib/microsoft_graph/version.rb +1 -1
- data/lib/odata/request.rb +2 -1
- data/lib/odata/service.rb +0 -1
- data/microsoft_graph-0.1.0.gem +0 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e627f19d9b6fd485459bfe9c43470826bebd6268
|
|
4
|
+
data.tar.gz: 9e8b11f043fe056cb955e349ef779adff3b970b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 94c17fe8901fc9215d0448e2c1d77bf537a33b5284a1b5c890a8ecd8d0c253337e5f37f89b4774e21b9ae13afcfd890213cb1d847807ea0e05e9b2f21d4a5fe0
|
|
7
|
+
data.tar.gz: 7455d7c37117b82c42f151562b4f5f58b6d989c034a3363754dd948176081f25dd198ce93098a404b4042a73d57ea5a39a3dc7379398c2ee2e0d9deb856bc2a7
|
data/README.md
CHANGED
|
@@ -47,6 +47,7 @@ callback = Proc.new { |r| r.headers["Authorization"] = "Bearer #{tokens.access_t
|
|
|
47
47
|
|
|
48
48
|
graph = MicrosoftGraph.new(
|
|
49
49
|
base_url: "https://graph.microsoft.com/v1.0",
|
|
50
|
+
cached_metadata_file: File.join(MicrosoftGraph::CACHED_METADATA_DIRECTORY, "metadata_v1.0.xml"),
|
|
50
51
|
&callback
|
|
51
52
|
)
|
|
52
53
|
|
data/lib/odata/request.rb
CHANGED
data/lib/odata/service.rb
CHANGED
|
@@ -242,7 +242,6 @@ module OData
|
|
|
242
242
|
|
|
243
243
|
def build_operation(operation_xml)
|
|
244
244
|
binding_type = if operation_xml["IsBound"] == "true"
|
|
245
|
-
binding.pry if operation_xml.xpath("./Parameter[@Name='bindingParameter']|./Parameter[@Name='bindingparameter']").length == 0
|
|
246
245
|
type_name = operation_xml.xpath("./Parameter[@Name='bindingParameter']|./Parameter[@Name='bindingparameter']").first["Type"]
|
|
247
246
|
get_type_by_name(type_name)
|
|
248
247
|
end
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: microsoft_graph
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Katie Miller
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2016-08-
|
|
12
|
+
date: 2016-08-12 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -204,6 +204,7 @@ files:
|
|
|
204
204
|
- lib/odata/types/primitive_types/int_64_type.rb
|
|
205
205
|
- lib/odata/types/primitive_types/stream_type.rb
|
|
206
206
|
- lib/odata/types/primitive_types/string_type.rb
|
|
207
|
+
- microsoft_graph-0.1.0.gem
|
|
207
208
|
- microsoft_graph.gemspec
|
|
208
209
|
- tasks/update_metadata.rb
|
|
209
210
|
homepage: https://graph.microsoft.io
|