Gemfile 2.5 KB
Newer Older
S
Saito 已提交
1
source "http://rubygems.org"
G
gitlabhq 已提交
2

R
randx 已提交
3
gem "rails", "3.2.8"
G
gitlabhq 已提交
4

D
Dmitriy Zaporozhets 已提交
5
# Supported DBs
S
Saito 已提交
6
gem "sqlite3"
D
Dmitriy Zaporozhets 已提交
7
gem "mysql2"
D
Dmitriy Zaporozhets 已提交
8 9

# Auth
N
Nihad Abbasov 已提交
10
gem "devise", "~> 2.1.0"
D
Dmitriy Zaporozhets 已提交
11 12

# GITLAB patched libs
D
Dmitriy Zaporozhets 已提交
13 14 15
gem "grit",          :git => "https://github.com/gitlabhq/grit.git",            :ref => "7f35cb98ff17d534a07e3ce6ec3d580f67402837"
gem "gitolite",      :git => "https://github.com/gitlabhq/gitolite-client.git", :ref => "9b715ca8bab6529f6c92204a25f84d12f25a6eb0"
gem "pygments.rb",   :git => "https://github.com/gitlabhq/pygments.rb.git",     :ref => "2cada028da5054616634a1d9ca6941b65b3ce188"
16
gem "omniauth-ldap", :git => "https://github.com/gitlabhq/omniauth-ldap.git",   :ref => "f038dd852d7bd473a557e385d5d7c2fd5dc1dc2e"
D
Dmitriy Zaporozhets 已提交
17
gem 'yaml_db',       :git => "https://github.com/gitlabhq/yaml_db.git"
S
Saito 已提交
18
gem 'grack',         :git => "https://github.com/gitlabhq/grack.git"
D
Dmitriy Zaporozhets 已提交
19 20
gem "linguist", "~> 1.0.0", :git => "https://github.com/gitlabhq/linguist.git"

R
randx 已提交
21
# API
22
gem "grape", "~> 0.2.1"
R
randx 已提交
23 24 25

# Format dates and times
# based on human-friendly examples
S
Saito 已提交
26
gem "stamp"
R
randx 已提交
27 28

# Pagination
S
Saito 已提交
29
gem "kaminari"
R
randx 已提交
30 31

# HAML
S
Saito 已提交
32
gem "haml-rails"
R
randx 已提交
33 34

# Files attachments
G
gitlabhq 已提交
35
gem "carrierwave"
R
randx 已提交
36 37

# Authorization
S
Saito 已提交
38
gem "six"
R
randx 已提交
39 40

# Generate Fake data
N
Nihad Abbasov 已提交
41
gem "ffaker"
R
randx 已提交
42 43

# Seed data
D
Dmitriy Zaporozhets 已提交
44
gem "seed-fu"
R
randx 已提交
45 46

# Markdown to HTML
47
gem "redcarpet", "~> 2.1.1"
R
randx 已提交
48 49

# Servers
V
Valera Sizov 已提交
50
gem "thin"
V
Valery Sizov 已提交
51
gem "unicorn"
R
randx 已提交
52 53

# Issue tags
54
gem "acts-as-taggable-on", "2.3.1"
R
randx 已提交
55 56

# Decorators
S
Saito 已提交
57
gem "drapper"
R
randx 已提交
58 59

# Background jobs
60
gem "resque", "~> 1.20.0"
R
randx 已提交
61 62 63
gem 'resque_mailer'

# HTTP requests
A
Ariejan de Vroom 已提交
64
gem "httparty"
R
randx 已提交
65 66

# Handle encodings
S
Saito 已提交
67
gem "charlock_holmes"
R
randx 已提交
68 69

# Colored output to console
70
gem "colored"
R
randx 已提交
71 72

# GITLAB settings
73
gem 'settingslogic'
A
Aleksei Kvitinskii 已提交
74

R
randx 已提交
75 76 77
# Misc
gem "foreman"
gem "git"
D
Dmitriy Zaporozhets 已提交
78
gem "gitlab_meta", '2.8'
R
randx 已提交
79

G
gitlabhq 已提交
80
group :assets do
A
Andrey Vakarev 已提交
81
  gem "sass-rails",   "3.2.5"
82
  gem "coffee-rails", "3.2.2"
D
Dmitriy Zaporozhets 已提交
83
  gem "uglifier",     "1.0.3"
N
Nihad Abbasov 已提交
84
  gem "therubyracer"
N
Nihad Abbasov 已提交
85 86 87 88 89 90

  gem 'chosen-rails'
  gem "jquery-rails",     "2.0.2"
  gem "jquery-ui-rails",  "0.5.0"
  gem "modernizr",        "2.5.3"
  gem "raphael-rails",    "1.5.2"
D
Dmitriy Zaporozhets 已提交
91
  gem 'bootstrap-sass',   "2.0.4"
G
gitlabhq 已提交
92 93
end

N
Nihad Abbasov 已提交
94
group :development do
S
Saito 已提交
95 96
  gem "letter_opener"
  gem "annotate", :git => "https://github.com/ctran/annotate_models.git"
R
randx 已提交
97
  gem 'rack-mini-profiler'
G
gitlabhq 已提交
98 99 100
end

group :development, :test do
S
Saito 已提交
101 102
  gem "rspec-rails"
  gem "capybara"
R
randx 已提交
103
  gem "capybara-webkit"
R
randx 已提交
104
  gem "headless"
S
Saito 已提交
105 106
  gem "autotest"
  gem "autotest-rails"
S
Saito 已提交
107
  gem "pry"
S
Saito 已提交
108 109 110
  gem "awesome_print"
  gem "database_cleaner"
  gem "launchy"
G
gitlabhq 已提交
111 112 113
end

group :test do
D
Dmitriy Zaporozhets 已提交
114 115
  gem 'cucumber-rails', :require => false
  gem 'minitest', ">= 2.10"
S
Saito 已提交
116 117
  gem "turn", :require => false
  gem "simplecov", :require => false
118
  gem "shoulda-matchers"
119
  gem 'email_spec'
120
  gem 'resque_spec'
121
  gem "webmock"
G
gitlabhq 已提交
122
end