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

A
Andrey Vakarev 已提交
3
gem "rails", "3.2.5"
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
10
gem "devise", "~> 1.5"
D
Dmitriy Zaporozhets 已提交
11 12 13 14 15 16 17 18

# GITLAB patched libs
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"
gem 'yaml_db',     :git => "https://github.com/gitlabhq/yaml_db.git"
gem "linguist", "~> 1.0.0", :git => "https://github.com/gitlabhq/linguist.git"

S
Saito 已提交
19 20 21
gem "stamp"
gem "kaminari"
gem "haml-rails"
G
gitlabhq 已提交
22
gem "carrierwave"
S
Saito 已提交
23
gem "six"
N
Nihad Abbasov 已提交
24
gem "ffaker"
D
Dmitriy Zaporozhets 已提交
25
gem "seed-fu"
26
gem "redcarpet", "~> 2.1.1"
V
Valera Sizov 已提交
27
gem "thin"
V
Valery Sizov 已提交
28
gem "unicorn"
V
Valera Sizov 已提交
29
gem "git"
V
VSizov 已提交
30
gem "acts_as_list"
S
Saito 已提交
31 32
gem "acts-as-taggable-on", "~> 2.1.0"
gem "drapper"
33
gem "resque", "~> 1.20.0"
A
Ariejan de Vroom 已提交
34
gem "httparty"
S
Saito 已提交
35
gem "charlock_holmes"
D
Dmitriy Zaporozhets 已提交
36
gem "foreman"
V
Valery Sizov 已提交
37
gem "omniauth-ldap"
A
Andrey Vakarev 已提交
38
gem 'bootstrap-sass', "2.0.3.1"
39
gem "colored"
40
gem 'resque_mailer'
N
Nihad Abbasov 已提交
41
gem 'chosen-rails'
A
Andrey Vakarev 已提交
42 43 44 45

gem "jquery-rails",    "2.0.2"
gem "jquery-ui-rails", "0.5.0"
gem "modernizr",       "2.5.3"
N
Nihad Abbasov 已提交
46
gem "raphael-rails",  "1.5.2"
A
Aleksei Kvitinskii 已提交
47

G
gitlabhq 已提交
48
group :assets do
A
Andrey Vakarev 已提交
49
  gem "sass-rails",   "3.2.5"
50
  gem "coffee-rails", "3.2.2"
D
Dmitriy Zaporozhets 已提交
51
  gem "uglifier",     "1.0.3"
N
Nihad Abbasov 已提交
52
  gem "therubyracer"
G
gitlabhq 已提交
53 54
end

N
Nihad Abbasov 已提交
55
group :development do
S
Saito 已提交
56
  gem "letter_opener"
D
Dmitriy Zaporozhets 已提交
57
  gem "rails-footnotes"
S
Saito 已提交
58
  gem "annotate", :git => "https://github.com/ctran/annotate_models.git"
G
gitlabhq 已提交
59 60 61
end

group :development, :test do
S
Saito 已提交
62 63 64 65
  gem "rspec-rails"
  gem "capybara"
  gem "autotest"
  gem "autotest-rails"
S
Saito 已提交
66
  gem "pry"
S
Saito 已提交
67 68 69
  gem "awesome_print"
  gem "database_cleaner"
  gem "launchy"
A
Ariejan de Vroom 已提交
70
  gem "webmock"
G
gitlabhq 已提交
71 72 73
end

group :test do
D
Dmitriy Zaporozhets 已提交
74 75
  gem 'cucumber-rails', :require => false
  gem 'minitest', ">= 2.10"
S
Saito 已提交
76 77
  gem "turn", :require => false
  gem "simplecov", :require => false
78
  gem "shoulda-matchers"
79
  gem 'email_spec'
G
gitlabhq 已提交
80
end