forked from amahi/platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
72 lines (53 loc) · 1.56 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
source 'https://rubygems.org'
gem "rails", '~>4.1.1'
gem 'mysql2'
gem "yettings"
gem 'sass-rails' , '~>4.0.3'
gem 'coffee-rails'
gem 'therubyracer'
gem 'uglifier'
gem "activeresource", require: "active_resource"
gem 'protected_attributes'
gem 'actionpack-action_caching'
gem 'rails-observers'
gem 'jbuilder'
gem 'ya2yaml'
gem 'themes_for_rails', :git => "https://github.com/amahi/themes_for_rails.git"
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'slim'
# gem 'scrypt' # required for authlogic even though it's not used will not work in ARM due to -msse and -msse2
gem 'scrypt', :git => "https://github.com/mattman73/scrypt.git"
# cc1: error: unrecognized command line option '-msse'
# cc1: error: unrecognized command line option '-msse2'
gem 'authlogic'
gem 'bcrypt'
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'
# FIXME: for Fedora only
if ((open('/etc/issue').grep(/fedora/i).length > 0) rescue false)
gem "minitest"
end
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'
gem 'simplecov', :require => false
end
# FIXME - temporary work-around for Fedora 19
# see https://bugzilla.redhat.com/show_bug.cgi?id=979133
gem 'psych'