forked from amahi/platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
56 lines (41 loc) · 1.03 KB
/
Gemfile
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
51
52
53
54
55
source 'https://rubygems.org'
gem 'rails', '3.2.13'
gem 'mysql2'
gem "yettings"
# Commenting this out because we're not going to pre-compile assets for now
#group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'therubyracer'
gem 'uglifier'
#end
gem 'jbuilder'
gem 'ya2yaml'
gem 'themes_for_rails'
gem 'jquery-rails'
gem 'jquery-ui-rails'
# FIXME-cpg: this requirement of 1.3.8 is because bundle update forced slim to 1.0.1! (!?)
gem 'slim', '~> 1.3.8'
gem 'authlogic'
gem 'bcrypt-ruby'
gem 'unicorn'
gem 'rb-readline', require: false
group :development do
gem 'quiet_assets'
gem 'thin'
gem 'thor'
# turn this on to enable reporting on best practices with:
# rails_best_practices -f html .
# gem 'rails_best_practices'
end
gem "rspec-rails", :group => [:test, :development]
group :test do
gem "sqlite3"
gem "factory_girl_rails"
gem "capybara"
gem 'capybara-screenshot'
# FIXME: required in Fedora 18 for some (packaging?) reason
gem 'minitest'
# required for javascript test in selenium
gem 'poltergeist'
end