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

S
Saito 已提交
3
gem "rails", "3.1.1"
G
gitlabhq 已提交
4

S
Saito 已提交
5 6 7 8 9 10 11
gem "sqlite3"
gem "devise", "1.5.0"
gem "stamp"
gem "kaminari"
gem "haml-rails"
gem "jquery-rails"
gem "grit", :git => "https://github.com/gitlabhq/grit.git"
D
Dmitriy Zaporozhets 已提交
12
gem "gitolite", :git => "https://github.com/gitlabhq/gitolite-client.git"
G
gitlabhq 已提交
13
gem "carrierwave"
S
Saito 已提交
14 15 16 17
gem "six"
gem "therubyracer"
gem "faker"
gem "seed-fu", "~> 2.1.0"
G
gitlabhq 已提交
18
gem "pygments.rb", "0.2.3"
V
Valera Sizov 已提交
19
gem "thin"
V
Valera Sizov 已提交
20
gem "git"
V
VSizov 已提交
21
gem "acts_as_list"
S
Saito 已提交
22 23 24
gem "rdiscount"
gem "acts-as-taggable-on", "~> 2.1.0"
gem "drapper"
S
Saito 已提交
25
gem "rchardet19", "~> 1.3.5"
A
Ariejan de Vroom 已提交
26
gem "resque"
A
Ariejan de Vroom 已提交
27
gem "httparty"
A
Aleksei Kvitinskii 已提交
28

G
gitlabhq 已提交
29
group :assets do
S
Saito 已提交
30 31 32
  gem "sass-rails",   "~> 3.1.0"
  gem "coffee-rails", "~> 3.1.0"
  gem "uglifier"
G
gitlabhq 已提交
33 34
end

N
Nihad Abbasov 已提交
35
group :development do
S
Saito 已提交
36 37 38
  gem "letter_opener"
  gem "rails-footnotes", "~> 3.7.5"
  gem "annotate", :git => "https://github.com/ctran/annotate_models.git"
G
gitlabhq 已提交
39 40 41
end

group :development, :test do
S
Saito 已提交
42 43 44 45
  gem "rspec-rails"
  gem "capybara"
  gem "autotest"
  gem "autotest-rails"
46
  unless ENV["CI"]
S
Saito 已提交
47
    gem "ruby-debug19", :require => "ruby-debug"
48
  end
S
Saito 已提交
49 50 51
  gem "awesome_print"
  gem "database_cleaner"
  gem "launchy"
A
Ariejan de Vroom 已提交
52
  gem "webmock"
G
gitlabhq 已提交
53 54 55
end

group :test do
S
Saito 已提交
56 57
  gem "turn", :require => false
  gem "simplecov", :require => false
58
  gem "shoulda", "~> 3.0.0.beta2"
G
gitlabhq 已提交
59
end