Gemfile 1.01 KB
Newer Older
gitlabhq's avatar
gitlabhq committed
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'
gitlabhq's avatar
gitlabhq committed
8
gem 'kaminari'
gitlabhq's avatar
gitlabhq committed
9 10
gem 'haml-rails'
gem 'jquery-rails'
gitlabhq's avatar
gitlabhq committed
11
gem 'grit', :git => 'git://github.com/gitlabhq/grit.git'
gitlabhq's avatar
gitlabhq committed
12 13 14 15
gem "carrierwave"
gem 'six'
gem 'therubyracer'
gem 'faker'
gitlabhq's avatar
gitlabhq committed
16
gem 'seed-fu', :git => 'git://github.com/mbleigh/seed-fu.git'
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'
gitlabhq's avatar
gitlabhq committed
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

Nihad Abbasov's avatar
Nihad Abbasov committed
30
group :development do
Nihad Abbasov's avatar
Nihad Abbasov committed
31
  gem 'letter_opener'
gitlabhq's avatar
gitlabhq committed
32 33 34 35 36 37
  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'
38
  gem "shoulda", "~> 3.0.0.beta2"
gitlabhq's avatar
gitlabhq committed
39 40 41 42 43 44 45 46 47 48 49 50 51 52
  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