[Groonga-commit] ranguba/rroonga at 685ef55 [master] doc: migrate to Markdown from Textile

Back to archive index

Masafumi Yokoyama null+****@clear*****
Sat Apr 18 23:57:54 JST 2015


Masafumi Yokoyama	2015-04-18 23:57:54 +0900 (Sat, 18 Apr 2015)

  New Revision: 685ef55d9e624537ec601af2d391d3dac952cea8
  https://github.com/ranguba/rroonga/commit/685ef55d9e624537ec601af2d391d3dac952cea8

  Message:
    doc: migrate to Markdown from Textile
    
    GitHub: fix #47

  Added files:
    doc/text/install.md
  Removed files:
    doc/text/install.textile

  Added: doc/text/install.md (+121 -0) 100644
===================================================================
--- /dev/null
+++ doc/text/install.md    2015-04-18 23:57:54 +0900 (ce4883f)
@@ -0,0 +1,121 @@
+# Install
+
+This document describes how to install Rroonga.
+
+You can install Rroonga by RubyGems. It is the standard way for Ruby
+libraries.
+
+Rroonga is depends on Groonga. So you need to install both Groonga and
+Rroonga. You can’t install Groonga by RubyGems because it isn’t Ruby
+library. But don’t worry. Rroonga provides the following options for
+easy to install:
+
+* Rroonga downloads, builds and installs Groonga automatically. You
+  don’t need to do them explicitly.
+* Rroonga uses Groonga installed by your packaging system.
+
+The following sections describe the above in detail.
+
+## Install with auto Groonga build
+
+Rroonga searches Groonga on install. If Rroonga can’t find Groonga,
+Rroonga downloads, builds and installs Groonga automatically.
+
+Type the following command to install Rroonga and Groonga. You don’t
+need to install Groonga explicitly:
+
+    % gem install rroonga
+
+## Install with Groonga package
+
+You can use Groonga package on you packaging system instead of building
+Groonga by yourself. There are the following advantages for this option:
+
+* It reduces installation time.
+* It doesn’t fail on building Groonga.
+
+### Windows
+
+Rroonga gem for Windows includes both pre-compiled Rroonga and Groonga
+in the gem. So what you need to do is you just install rroonga gem.
+
+Type the following command on Ruby console:
+
+    > gem install rroonga
+
+This document assumes that you’re using [RubyInstaller for
+Windows](http://rubyinstaller.org/) .
+
+### OS X
+
+There are Groonga packages for OS X environment.
+
+#### MacPorts
+
+If you’re using [MacPorts](http://www.macports.org/) , type the
+following
+commands on your terminal:
+
+    % sudo port install groonga
+    % sudo gem install rroonga
+
+#### Homebrew
+
+If you’re using [Homebrew](http://brew.sh/) , type the following
+commands
+on your terminal:
+
+    % brew install groonga
+    % gem install rroonga
+
+### Debian GNU/Linux
+
+You can install the Groonga package by apt. See [Groonga
+documentation](http://groonga.org/docs/install/debian.html) how to set
+apt-line up.
+
+Type the following commands on your terminal after you finish to set
+apt-line up.
+
+    % sudo apt-get install -y libgroonga-dev
+    % sudo gem install rroonga
+
+### Ubuntu
+
+You can install the Groonga package by apt. See [Groonga
+documentation](http://groonga.org/docs/install/ubuntu.html) how to set
+apt-line up.
+
+Type the following commands on your terminal after you finish to set
+apt-line up.
+
+    % sudo apt-get install -y libgroonga-dev
+    % sudo gem install rroonga
+
+### CentOS
+
+You can install the Groonga package by yum. See [Groonga
+documentation](http://groonga.org/docs/install/centos.html) how to set
+yum repository up.
+
+But you need to install Ruby 1.9.3 or later by yourself. Both CentOS 5
+and 6 ship Ruby 1.8. Rroonga doesn’t support Ruby 1.8.
+
+Type the following commands on your terminal after you finish to set
+yum
+repository up and installing Ruby 1.9.3 or later.
+
+    % sudo yum install groonga-devel -y
+    % gem install rroonga
+
+### Fedora
+
+You can install the Groonga package by yum. The Groonga package is
+included in the official Fedora repository.
+
+    % sudo yum install groonga-devel -y
+    % sudo gem install rroonga
+
+## Links
+
+* [2. Install - Groonga documentation](http://groonga.org/docs/install.html)

  Deleted: doc/text/install.textile (+0 -145) 100644
===================================================================
--- doc/text/install.textile    2015-04-15 12:55:58 +0900 (16ba9c9)
+++ /dev/null
@@ -1,145 +0,0 @@
-h1. Install
-
-This document describes how to install Rroonga.
-
-You can install Rroonga by RubyGems. It is the standard way for Ruby
-libraries.
-
-Rroonga is depends on Groonga. So you need to install both Groonga and
-Rroonga. You can't install Groonga by RubyGems because it isn't Ruby
-library. But don't worry. Rroonga provides the following options for
-easy to install:
-
-* Rroonga downloads, builds and installs Groonga automatically. You
-  don't need to do them explicitly.
-* Rroonga uses Groonga installed by your packaging system.
-
-The following sections describe the above in detail.
-
-h2. Install with auto Groonga build
-
-Rroonga searches Groonga on install. If Rroonga can't find
-Groonga, Rroonga downloads, builds and installs Groonga
-automatically.
-
-Type the following command to install Rroonga and Groonga. You don't
-need to install Groonga explicitly:
-
-<pre>
-!!!command_line
-% gem install rroonga
-</pre>
-
-h2. Install with Groonga package
-
-You can use Groonga package on you packaging system instead of
-building Groonga by yourself. There are the following advantages for
-this option:
-
-* It reduces installation time.
-* It doesn't fail on building Groonga.
-
-h3. Windows
-
-Rroonga gem for Windows includes both pre-compiled Rroonga and Groonga
-in the gem. So what you need to do is you just install rroonga gem.
-
-Type the following command on Ruby console:
-
-<pre>
-!!!command_line
-> gem install rroonga
-</pre>
-
-This document assumes that you're using "RubyInstaller for
-Windows":http://rubyinstaller.org/ .
-
-h3. OS X
-
-There are Groonga packages for OS X environment.
-
-h4. MacPorts
-
-If you're using "MacPorts":http://www.macports.org/ , type the
-following commands on your terminal:
-
-<pre>
-!!!command_line
-% sudo port install groonga
-% sudo gem install rroonga
-</pre>
-
-h4. Homebrew
-
-If you're using "Homebrew":http://brew.sh/ , type the
-following commands on your terminal:
-
-<pre>
-!!!command_line
-% brew install groonga
-% gem install rroonga
-</pre>
-
-h3. Debian GNU/Linux
-
-You can install the Groonga package by apt. See "Groonga
-documentation":http://groonga.org/docs/install/debian.html how to set
-apt-line up.
-
-Type the following commands on your terminal after you finish to set
-apt-line up.
-
-<pre>
-!!!command_line
-% sudo apt-get install -y libgroonga-dev
-% sudo gem install rroonga
-</pre>
-
-h3. Ubuntu
-
-You can install the Groonga package by apt. See "Groonga
-documentation":http://groonga.org/docs/install/ubuntu.html how to set
-apt-line up.
-
-Type the following commands on your terminal after you finish to set
-apt-line up.
-
-<pre>
-!!!command_line
-% sudo apt-get install -y libgroonga-dev
-% sudo gem install rroonga
-</pre>
-
-h3. CentOS
-
-You can install the Groonga package by yum. See "Groonga
-documentation":http://groonga.org/docs/install/centos.html how to set
-yum repository up.
-
-But you need to install Ruby 1.9.3 or later by yourself. Both CentOS 5
-and 6 ship Ruby 1.8. Rroonga doesn't support Ruby 1.8.
-
-Type the following commands on your terminal after you finish to set
-yum repository up and installing Ruby 1.9.3 or later.
-
-<pre>
-!!!command_line
-% sudo yum install groonga-devel -y
-% gem install rroonga
-</pre>
-
-h3. Fedora
-
-You can install the Groonga package by yum. The Groonga package is
-included in the official Fedora repository.
-
-<pre>
-!!!command_line
-% sudo yum install groonga-devel -y
-% sudo gem install rroonga
-</pre>
-
-h2. Links
-
-* "2. Install - Groonga documentation":http://groonga.org/docs/install.html
-
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index