Skip to content

Commit

Permalink
Updated version tag and gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
jfederico committed Apr 30, 2020
1 parent 8989c73 commit 34217a4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
1 change: 1 addition & 0 deletions lib/omniauth-office365.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require 'omniauth/strategies/office365'
4 changes: 2 additions & 2 deletions lib/omniauth/omniauth-bn-office365/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
module OmniAuth
module BN
module OFFICE365
VERSION = "1.0.0"
VERSION = "0.1.1"
end
end
end
end
10 changes: 9 additions & 1 deletion omniauth-bn-office365.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,19 @@ Gem::Specification.new do |gem|

gem.summary = "An omniauth provider for Azure Active Directory"
gem.description = "A ruby gem for using omniauth to authenticate Azure Active Directory users"
gem.homepage = "https://github.com/blindsidenetworks/omniauth-bn-office365"
gem.license = "MIT"

gem.files = 'git ls-files'.split("\n")

gem.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
gem.bindir = "exe"
gem.executables = gem.files.grep(%r{^exe/}) { |f| File.basename(f) }
gem.require_paths = ["lib"]

gem.add_development_dependency "bundler", "~> 1.11"
gem.add_development_dependency "rake", "~> 10.0"
gem.add_development_dependency "rspec", "~> 3.0"

gem.add_runtime_dependency 'omniauth', '>= 1.3.2'
gem.add_runtime_dependency 'omniauth-oauth2', '>= 1.5.0'
end

0 comments on commit 34217a4

Please sign in to comment.