File: installation.md

package info (click to toggle)
ruby-gitlab 6.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,824 kB
  • sloc: ruby: 12,742; makefile: 7; sh: 4; javascript: 3
file content (41 lines) | stat: -rw-r--r-- 665 bytes parent folder | download
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
<!-- THIS DOCUMENT IS PUBLISHED ON https://narkoz.github.io/gitlab -->
# Installation

## Rubygems

Install the latest version of the gem by running the following command

```sh
gem install gitlab
```

## Bundler

Install the latest version of the gem by adding the following line to your Gemfile

```rb
gem 'gitlab'
```

and running

```sh
bundle install
```

You can also point directly to the git repository to install it from the latest
GitHub source

```rb
gem 'gitlab', github: 'NARKOZ/gitlab'
```

## Manual build

If you want to build the gem from source manually

```sh
git clone https://github.com/NARKOZ/gitlab.git
cd gitlab
gem build gitlab.gemspec
```