mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 23:33:00 +03:00
Fixed broken links
This commit is contained in:
parent
ad621beb73
commit
7f4b100fa8
@ -93,13 +93,13 @@ which MRI version to target.
|
|||||||
|
|
||||||
## RubySpec
|
## RubySpec
|
||||||
|
|
||||||
Most ruby implementations rely heavily on (RubySpec)[http://rubyspec.org/]. Ruby
|
Most ruby implementations rely heavily on [RubySpec](http://rubyspec.org/). Ruby
|
||||||
has no official specification, so the community has written executable specs in
|
has no official specification, so the community has written executable specs in
|
||||||
ruby to test their implementations' compatability with MRI.
|
ruby to test their implementations' compatability with MRI.
|
||||||
|
|
||||||
## RubyGems
|
## RubyGems
|
||||||
|
|
||||||
(RubyGems)[http://rubygems.org/] is a community-run package manager for ruby.
|
[RubyGems](http://rubygems.org/) is a community-run package manager for ruby.
|
||||||
RubyGems ships with ruby, so there is no need to download it separately.
|
RubyGems ships with ruby, so there is no need to download it separately.
|
||||||
|
|
||||||
Ruby packages are called "gems," and they can be hosted by the community at
|
Ruby packages are called "gems," and they can be hosted by the community at
|
||||||
@ -108,7 +108,7 @@ things like version, dependencies, author(s), and license(s).
|
|||||||
|
|
||||||
## Bundler
|
## Bundler
|
||||||
|
|
||||||
(Bundler)[http://bundler.io/] is a gem dependency resolver. It uses a project's
|
[Bundler](http://bundler.io/) is a gem dependency resolver. It uses a project's
|
||||||
Gemfile to find dependencies, and then fetches those dependencies' dependencies
|
Gemfile to find dependencies, and then fetches those dependencies' dependencies
|
||||||
recursively. It does this until all dependencies are resolved and downloaded, or
|
recursively. It does this until all dependencies are resolved and downloaded, or
|
||||||
it will stop if a conflict has been found.
|
it will stop if a conflict has been found.
|
||||||
|
Loading…
Reference in New Issue
Block a user