Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
icinga-checks
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IML Open Source
icinga-checks
Merge requests
!7
fix ruby version parser for rvm
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
fix ruby version parser for rvm
eol_check-ruby
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Gasser Martin (mg20u947)
requested to merge
eol_check-ruby
into
master
3 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
fix ruby version check parser for rvm
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
b13ccfc9
1 commit,
3 years ago
1 file
+
9
−
1
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
check_eol-versiondetect/detect-ruby
+
9
−
1
View file @ b13ccfc9
Edit in single-file editor
Open in Web IDE
Show full file
@@ -12,4 +12,12 @@
@@ -12,4 +12,12 @@
# ruby --version
# ruby --version
# ruby 2.6.3p62 (2019-04-16 revision 67580) [x86_64-linux]
# ruby 2.6.3p62 (2019-04-16 revision 67580) [x86_64-linux]
ruby --version | cut -b 6-8
# rvm list
\ No newline at end of file
# =* ruby-2.6.3 [ x86_64 ]
# #=> - current
# #=* - current && default
# # * - default
rvm list | grep ^= | cut -f 2 -d " " | cut -f 2 -d "-" || ruby --version
\ No newline at end of file
Loading