Skip to content

Commit

Permalink
Merge pull request #62 from essentialkaos/develop
Browse files Browse the repository at this point in the history
Version 0.17.1
  • Loading branch information
andyone authored Nov 13, 2017
2 parents 986fca1 + 530b145 commit 720700c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
8 changes: 4 additions & 4 deletions cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ import (

const (
APP = "RBInstall"
VER = "0.17.0"
VER = "0.17.1"
DESC = "Utility for installing prebuilt ruby versions to rbenv"
)

Expand Down Expand Up @@ -989,14 +989,14 @@ func updateRubygems(version, rgVersion string) error {
if rgVersion == "latest" {
gemCmd = exec.Command(
rubyPath+"/bin/ruby", rubyPath+"/bin/gem",
"update", "--system", "--no-document",
"update", "--system", "--no-ri", "--no-rdoc",
"--source", getGemSourceURL(),
)
} else {
gemCmd = exec.Command(
rubyPath+"/bin/ruby", rubyPath+"/bin/gem",
"update", "--system", rgVersion,
"--no-document", "--source", getGemSourceURL(),
"update", "--system", rgVersion, "--no-ri", "--no-rdoc",
"--source", getGemSourceURL(),
)
}

Expand Down
6 changes: 5 additions & 1 deletion common/rbinstall.spec
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

Summary: Utility for installing prebuilt ruby to rbenv
Name: rbinstall
Version: 0.17.0
Version: 0.17.1
Release: 0%{?dist}
Group: Applications/System
License: EKOL
Expand Down Expand Up @@ -143,6 +143,10 @@ rm -rf %{buildroot}
###############################################################################

%changelog
* Mon Nov 13 2017 Anton Novojilov <[email protected]> - 0.17.1-0
- [cli] Fixed bug with updating RubyGems gems for old Ruby
versions (<= 1.9.3-p551)

* Tue Nov 07 2017 Anton Novojilov <[email protected]> - 0.17.0-0
- [cli] Fixed bug with updating gems with empty gem list
- [cli] Now required version of rubygems gem can be defined through
Expand Down

0 comments on commit 720700c

Please sign in to comment.