Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Gemfile - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a431f5025ea1ddcf7fd45544f7102eaac8fdac27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
source 'http://rubygems.org'

gem 'rails', '3.1.0'

gem 'sqlite3'
gem 'devise', "1.4.7"
gem 'stamp'
gem 'will_paginate', '~> 3.0'
gem 'haml-rails'
gem 'jquery-rails'
gem 'grit'
gem "carrierwave"
gem 'six'
gem 'therubyracer'
gem 'faker'
gem 'seed-fu', :branch => 'rails-3-1', :git => 'git://github.com/mbleigh/seed-fu.git'
gem "lockfile"
gem "inifile"
gem "net-ssh"
gem "albino", :git => "git://github.com/randx/albino.git"
gem "kaminari"

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

group :development do 
  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'
  gem 'shoulda'
  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