Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.

Commit 3a0b026

Browse files
committed
- fixes version information module declaration
Signed-off-by: Vincent Biret <vibiret@microsoft.com>
1 parent 7504d52 commit 3a0b026

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

lib/microsoft_graph/version.rb

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module MicrosoftGraph
2+
class VersionInformation
3+
VERSION = "0.10.0"
4+
end
5+
end

microsoft_graph.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# coding: utf-8
22
lib = File.expand_path('../lib', __FILE__)
33
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4-
require_relative 'lib/microsoft_graph/version'
4+
require_relative 'lib/microsoft_graph/version_information'
55

66
Gem::Specification.new do |spec|
77
spec.name = "microsoft_graph"
8-
spec.version = MicrosoftGraph::VERSION
8+
spec.version = MicrosoftGraph::VersionInformation::VERSION
99
spec.authors = 'Microsoft Corporation'
1010
spec.email = 'graphsdkpub+ruby@microsoft.com'
1111

0 commit comments

Comments
 (0)