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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2011-10-09 01:36:38 +0400
committerDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2011-10-09 01:36:38 +0400
commite98c77857f9f765d1854b92c2dc33049504a596d (patch)
tree52fbfc1cdb55df21843965479c97be0c91121a9a /Gemfile
parent0f43e98ef8c2da8908b1107f75b67cda2572c2c4 (diff)
init commitv0.9.4
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile50
1 files changed, 50 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 00000000000..a431f5025ea
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,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