Skip to content

Commit

Permalink
Merge pull request #27 from RIPAGlobal/feature/bump-travis-ruby-patch…
Browse files Browse the repository at this point in the history
…-versions

CI integration and general maintenance
  • Loading branch information
bagp1 authored Jul 3, 2024
2 parents 52dc980 + 1e6a79f commit 9f40699
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 14 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Ruby

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby: ['3.0', '3.1', '3.2', '3.3']

steps:
- uses: actions/checkout@v3

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
rubygems: 3.5.11

- name: Run tests
run: bundle exec rspec --backtrace
8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

4 changes: 1 addition & 3 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
source "https://rubygems.org"

# Specify your gem's dependencies in omniauth-azure-activedirectory-v2.gemspec
#
gemspec

gem "rake", "~> 12.0"
gem "rspec", "~> 3.0"
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# OmniAuth::Azure::Activedirectory::V2

[![Gem Version](https://badge.fury.io/rb/omniauth-azure-activedirectory-v2.svg)](https://badge.fury.io/rb/omniauth-azure-activedirectory-v2)
[![Build Status](https://app.travis-ci.com/RIPAGlobal/omniauth-azure-activedirectory-v2.svg?branch=master)](https://app.travis-ci.com/github/RIPAGlobal/omniauth-azure-activedirectory-v2)
[![License](https://img.shields.io/github/license/RIPAGlobal/omniauth-azure-activedirectory-v2.svg)](LICENSE.md)
[![Gem Version](https://badge.fury.io/rb/omniauth-azure-activedirectory-v2.svg)](https://rubygems.org/gems/omniauth-azure-activedirectory-v2)
[![Build Status](https://github.com/RIPAGlobal/omniauth-azure-activedirectory-v2/actions/workflows/master.yml/badge.svg)](https://github.com/RIPAGlobal/omniauth-azure-activedirectory-v2/actions)
[![License](https://img.shields.io/github/license/RIPAGlobal/omniauth-azure-activedirectory-v2.svg)](LICENSE.txt)

OAuth 2 authentication with [Azure ActiveDirectory's V2 API](https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-overview). Rationale:

Expand Down
3 changes: 3 additions & 0 deletions omniauth-azure-activedirectory-v2.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,7 @@ Gem::Specification.new do |s|
}

s.add_runtime_dependency('omniauth-oauth2', '~> 1.8')

s.add_development_dependency('rake', '~> 13.2 ')
s.add_development_dependency('rspec', '~> 3.13')
end

0 comments on commit 9f40699

Please sign in to comment.