mirror of
https://github.com/rbenv/ruby-build.git
synced 2025-09-03 07:41:23 +02:00
ruby-build 20121120
This commit is contained in:
parent
d924fceee5
commit
16aaf92455
3 changed files with 17 additions and 3 deletions
2
LICENSE
2
LICENSE
|
@ -1,4 +1,4 @@
|
||||||
Copyright (c) 2011 Sam Stephenson
|
Copyright (c) 2012 Sam Stephenson
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
a copy of this software and associated documentation files (the
|
a copy of this software and associated documentation files (the
|
||||||
|
|
16
README.md
16
README.md
|
@ -202,6 +202,20 @@ include the full build log for build failures.
|
||||||
|
|
||||||
## Version History
|
## Version History
|
||||||
|
|
||||||
|
#### 20121120
|
||||||
|
* Added optional package checksum support. When a package URL is
|
||||||
|
annotated with an MD5 checksum, ruby-build will use it to verify
|
||||||
|
the contents of the downloaded file. Package URLs in all existing
|
||||||
|
definitions have been updated with checksum annotations.
|
||||||
|
* Added an optional package download cache. When the
|
||||||
|
`RUBY_BUILD_CACHE_PATH` environment variable is set to a directory
|
||||||
|
of your choice, ruby-build will store downloaded packages there and
|
||||||
|
reuse them for future installations.
|
||||||
|
* Added mirror support for faster package downloads. Packages on the
|
||||||
|
official ruby-build mirror will be served via S3. You can point
|
||||||
|
ruby-build to your own local package mirror by setting the
|
||||||
|
`RUBY_BUILD_MIRROR_URL` environment variable.
|
||||||
|
|
||||||
#### 20121110
|
#### 20121110
|
||||||
* Added a definition for Ruby 1.9.3-p327
|
* Added a definition for Ruby 1.9.3-p327
|
||||||
* Fetch Ruby 2.0.0.dev and 1.9.3.dev via Git instead of Subversion
|
* Fetch Ruby 2.0.0.dev and 1.9.3.dev via Git instead of Subversion
|
||||||
|
@ -339,7 +353,7 @@ include the full build log for build failures.
|
||||||
|
|
||||||
(The MIT License)
|
(The MIT License)
|
||||||
|
|
||||||
Copyright (c) 2011 Sam Stephenson
|
Copyright (c) 2012 Sam Stephenson
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
a copy of this software and associated documentation files (the
|
a copy of this software and associated documentation files (the
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
RUBY_BUILD_VERSION="20121110"
|
RUBY_BUILD_VERSION="20121120"
|
||||||
|
|
||||||
set -E
|
set -E
|
||||||
exec 3<&2 # preserve original stderr at fd 3
|
exec 3<&2 # preserve original stderr at fd 3
|
||||||
|
|
Loading…
Reference in a new issue