-
Notifications
You must be signed in to change notification settings - Fork 1
/
instalacao.html
69 lines (54 loc) · 3.2 KB
/
instalacao.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="description" content="Guru-ba.github.com : Grupo de Usuarios Ruby da Bahia" />
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
<title>Guru-ba.github.com</title>
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<a id="forkme_banner" href="https://github.com/guru-ba">View on GitHub</a>
<h1 id="project_title">Guru-ba.github.com</h1>
<h2 id="project_tagline">Grupo de Usuarios Ruby da Bahia</h2>
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<h1>Instalação</h1>
<h2>Ambiente Linux</h2>
<h3>Ubuntu (Baseado em Debian)</h3>
<p>A instalação no Ubuntu é relativamente simples. É necessário instalar apenas um pacote de versionamento do Ruby. O mais famoso é o <a href="https://rvm.io/">RVM</a> (Ruby Version Manager). Ele será o responsável por baixar, compilar a instalar o Ruby na sua máquina.</p>
<p>Para instalar o RVM e o Ruby, execute os comandos abaixo:</p>
<pre>
sudo apt-get install curl
curl -L https://get.rvm.io | bash -s stable --ruby
rvm reload
rvm requirements</pre>
<br />
<p>Esse comando irá imprimir uma lista das dependências para instalação de cada versão do Ruby (como JRuby, IronRuby ou o CRuby, que é esse que estamos instalando).</p>
<p>A copia dos comando da versão atual do Ruby 1.9.3 é a seguinte:</p>
<pre>sudo apt-get install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev ncurses-dev automake libtool bison subversion pkg-config</pre>
<h3>Fedora (Baseado em RedHat)</h3>
<h2>Ambiente Windows</h2>
<p>Neste tópico vamos mostrar como podemos configurar o ambiente de Desenvolvimento em Ruby no Windows.</p>
<p>Visite a página de downloads para verificar a versão mais atual.</p>
<p>Para iniciarmos, vamos até a <a href="http://www.ruby-lang.org/pt/downloads/">página de download do Ruby</a> para baixar a versão mais recente, que hoje é a 1.9.3.</p>
<p>Durante a instalação, na tela de escolha onde serão instalados os pacotes, selecione as opções "Add Ruby executables to your PATH" e "Associate .rb and .rbw files with this Ruby installation".</p>
<h2>Ambiente Mac</h2>
<h3>Autores e Colaboradores</h3>
<p>Os autores são <a href="https://github.com/felipebastosweb" class="user-mention">@felipebastosweb</a> <a href="https://github.com/paulodealmeida" class="user-mention">@paulodealmeida</a> <a href="https://github.com/vitorpc" class="user-mention">@vitorpc</a> <a href="https://github.com/celsodantas" class="user-mention">@celsodantas</a></p>
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
<p>Published with <a href="http://pages.github.com">GitHub Pages</a></p>
</footer>
</div>
</body>
</html>