Gemfile 2.2 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"

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

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

  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"
  gem 'bootstrap-sass',   "2.0.3.1"
G
gitlabhq 已提交
57 58
end

N
Nihad Abbasov 已提交
59
group :development do
S
Saito 已提交
60
  gem "letter_opener"
D
Dmitriy Zaporozhets 已提交
61
  gem "rails-footnotes"
S
Saito 已提交
62
  gem "annotate", :git => "https://github.com/ctran/annotate_models.git"
R
randx 已提交
63
  gem 'rack-mini-profiler'
G
gitlabhq 已提交
64 65 66
end

group :development, :test do
S
Saito 已提交
67 68 69 70
  gem "rspec-rails"
  gem "capybara"
  gem "autotest"
  gem "autotest-rails"
S
Saito 已提交
71
  gem "pry"
S
Saito 已提交
72 73 74
  gem "awesome_print"
  gem "database_cleaner"
  gem "launchy"
G
gitlabhq 已提交
75 76 77
end

group :test do
D
Dmitriy Zaporozhets 已提交
78 79
  gem 'cucumber-rails', :require => false
  gem 'minitest', ">= 2.10"
S
Saito 已提交
80 81
  gem "turn", :require => false
  gem "simplecov", :require => false
82
  gem "shoulda-matchers"
83
  gem 'email_spec'
84
  gem 'resque_spec'
85
  gem "webmock"
G
gitlabhq 已提交
86
end