File tree Expand file tree Collapse file tree 6 files changed +41
-35
lines changed Expand file tree Collapse file tree 6 files changed +41
-35
lines changed Original file line number Diff line number Diff line change 1+ # See https://github.com/ruby/setup-ruby
2+ name : Test
3+
4+ on :
5+ push :
6+ pull_request :
7+
8+ permissions :
9+ contents : read
10+
11+ jobs :
12+ test :
13+
14+ runs-on : ubuntu-latest
15+ strategy :
16+ matrix :
17+ ruby-version :
18+ - ' 2.6'
19+ - ' 2.7'
20+ - ' 3.0'
21+ - ' 3.1'
22+ - ruby-head
23+ - jruby-head
24+
25+ steps :
26+ - uses : actions/checkout@v3
27+ - name : Set up Ruby
28+ uses : ruby/setup-ruby@v1
29+ with :
30+ ruby-version : ${{ matrix.ruby-version }}
31+ bundler-cache : true # runs 'bundle install' and caches installed gems automatically
32+ - name : Run tests
33+ run : bundle exec rake test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ 2022-06 Release 0.5.8
2+
3+ Horst Duchene
4+ * switch to github actions (56030d)
5+
162020-12 Release 0.5.7
27
38Horst Duchene
Original file line number Diff line number Diff line change 1- # Ruby Graph Library (RGL) [ < img src = " https://secure.travis-ci.org /monora/rgl.png?branch=master " alt = " Build Status " /> ] ( https://travis-ci.org /monora/rgl ) [ <img src =" https://codeclimate.com/github/monora/rgl/badges/coverage.svg " />] ( https://codeclimate.com/github/monora/rgl/coverage ) [ <img src =" https://badge.fury.io/rb/rgl.svg " alt =" Version " />] ( https://badge.fury.io/rb/rgl ) [ ![ Gitpod ready-to-code] ( https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod )] ( https://gitpod.io/#https://github.com/monora/rgl )
1+ # Ruby Graph Library (RGL) [ ![ test ] ( https://github.com /monora/rgl/actions/workflows/ruby.yml/badge.svg ) ]( https://github.com /monora/rgl/actions/workflows/ruby.yml ) [ <img src =" https://codeclimate.com/github/monora/rgl/badges/coverage.svg " />] ( https://codeclimate.com/github/monora/rgl/coverage ) [ <img src =" https://badge.fury.io/rb/rgl.svg " alt =" Version " />] ( https://badge.fury.io/rb/rgl ) [ ![ Gitpod ready-to-code] ( https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod )] ( https://gitpod.io/#https://github.com/monora/rgl )
22
33RGL is a framework for graph data structures and algorithms.
44
Original file line number Diff line number Diff line change 44# library. The main module is RGL::Graph which defines the abstract behavior of
55# all graphs in the library.
66
7- RGL_VERSION = "0.5.7 "
7+ RGL_VERSION = "0.5.8 "
88
99module RGL
1010 class NotDirectedError < RuntimeError ; end
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ Gem::Specification.new do |s|
1212
1313 s . add_dependency 'stream' , '~> 0.5.3'
1414 s . add_dependency 'lazy_priority_queue' , '~> 0.1.0'
15+ s . add_dependency 'rexml' , '~> 3.2' , '>= 3.2.4'
1516
1617 s . add_development_dependency 'rake'
1718 s . add_development_dependency 'yard'
You can’t perform that action at this time.
0 commit comments