Gemfile 1014 字节
Newer Older
G
gitlabhq 已提交
1 2 3 4 5 6 7
source 'http://rubygems.org'

gem 'rails', '3.1.0'

gem 'sqlite3'
gem 'devise', "1.4.7"
gem 'stamp'
G
gitlabhq 已提交
8
gem 'kaminari'
G
gitlabhq 已提交
9 10
gem 'haml-rails'
gem 'jquery-rails'
G
gitlabhq 已提交
11
gem 'grit', :git => 'git://github.com/gitlabhq/grit.git'
G
gitlabhq 已提交
12 13 14 15
gem "carrierwave"
gem 'six'
gem 'therubyracer'
gem 'faker'
G
gitlabhq 已提交
16
gem 'seed-fu', :git => 'git://github.com/mbleigh/seed-fu.git'
G
gitlabhq 已提交
17
gem "inifile"
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"
N
Nihad Abbasov 已提交
22
gem 'rdiscount'
G
gitlabhq 已提交
23 24 25 26 27 28 29

group :assets do
  gem 'sass-rails', "  ~> 3.1.0"
  gem 'coffee-rails', "~> 3.1.0"
  gem 'uglifier'
end

N
Nihad Abbasov 已提交
30
group :development do
G
gitlabhq 已提交
31 32 33 34 35 36
  gem 'rails-footnotes', '>= 3.7.5.rc4'
  gem 'annotate', :git => 'git://github.com/ctran/annotate_models.git'
end

group :development, :test do
  gem 'rspec-rails'
37
  gem "shoulda", "~> 3.0.0.beta2"
G
gitlabhq 已提交
38 39 40 41 42 43 44 45 46 47 48 49 50 51
  gem 'capybara'
  gem 'autotest'
  gem 'autotest-rails'
  gem 'ruby-debug19', :require => 'ruby-debug'
  gem 'awesome_print'
  gem 'database_cleaner'
  gem 'launchy'
end


group :test do
  gem 'turn', :require => false
  gem 'simplecov', :require => false
end