Gemfile 1.03 KB
Newer Older
gitlabhq's avatar
gitlabhq committed
1 2
source 'http://rubygems.org'

3
gem 'rails', '3.1.1'
gitlabhq's avatar
gitlabhq committed
4 5

gem 'sqlite3'
6
gem 'devise', "1.5.0"
gitlabhq's avatar
gitlabhq committed
7
gem 'stamp'
gitlabhq's avatar
gitlabhq committed
8
gem 'kaminari'
gitlabhq's avatar
gitlabhq committed
9 10
gem 'haml-rails'
gem 'jquery-rails'
11
gem 'grit', :git => 'https://github.com/gitlabhq/grit.git'
gitlabhq's avatar
gitlabhq committed
12 13 14 15
gem "carrierwave"
gem 'six'
gem 'therubyracer'
gem 'faker'
16
gem 'seed-fu', '~> 2.1.0'
gitlabhq's avatar
gitlabhq committed
17
gem "inifile"
gitlabhq's avatar
gitlabhq committed
18
gem "pygments.rb", "0.2.3"
Valera Sizov's avatar
Valera Sizov committed
19
gem "thin"
Valera Sizov's avatar
Valera Sizov committed
20
gem "git"
VSizov's avatar
VSizov committed
21
gem "acts_as_list"
Nihad Abbasov's avatar
Nihad Abbasov committed
22
gem 'rdiscount'
23
gem 'acts-as-taggable-on', '~> 2.1.0'
24
gem 'drapper'
Aleksei Kvitinskii's avatar
Aleksei Kvitinskii committed
25

gitlabhq's avatar
gitlabhq committed
26
group :assets do
27
  gem 'sass-rails',   "~> 3.1.0"
gitlabhq's avatar
gitlabhq committed
28 29 30 31
  gem 'coffee-rails', "~> 3.1.0"
  gem 'uglifier'
end

Nihad Abbasov's avatar
Nihad Abbasov committed
32
group :development do
Nihad Abbasov's avatar
Nihad Abbasov committed
33
  gem 'letter_opener'
34
  gem 'rails-footnotes', '~> 3.7.5'
35
  gem 'annotate', :git => 'https://github.com/ctran/annotate_models.git'
gitlabhq's avatar
gitlabhq committed
36 37 38 39 40 41 42
end

group :development, :test do
  gem 'rspec-rails'
  gem 'capybara'
  gem 'autotest'
  gem 'autotest-rails'
Nihad Abbasov's avatar
Nihad Abbasov committed
43
  gem 'ruby-debug19', :require => 'ruby-debug'
gitlabhq's avatar
gitlabhq committed
44 45 46 47 48 49 50 51
  gem 'awesome_print'
  gem 'database_cleaner'
  gem 'launchy'
end

group :test do
  gem 'turn', :require => false
  gem 'simplecov', :require => false
52
  gem "shoulda", "~> 3.0.0.beta2"
gitlabhq's avatar
gitlabhq committed
53
end