51 lines
1 KiB
Ruby
51 lines
1 KiB
Ruby
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', :git => 'git://github.com/gitlabhq/grit.git'
|
|
gem "carrierwave"
|
|
gem 'six'
|
|
gem 'therubyracer'
|
|
gem 'faker'
|
|
gem 'seed-fu', :git => 'git://github.com/mbleigh/seed-fu.git'
|
|
gem "inifile"
|
|
gem "albino", :git => "git://github.com/gitlabhq/albino.git"
|
|
gem "kaminari"
|
|
gem "thin"
|
|
gem "git"
|
|
gem "acts_as_list"
|
|
|
|
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
|