-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
77 lines (59 loc) · 1.51 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
73
74
75
76
77
source 'http://rubygems.org'
gem 'rails', '~> 3.2.0'
group :development do
gem 'sqlite3'
gem 'better_errors'
gem 'awesome_print'
# quiet asset for dev mode :)
gem 'quiet_assets'
# getting it from git to allow dynamic reloading
#gem "declarative_authorization", :git => 'https://github.com/stffn/declarative_authorization.git'
gem 'capistrano'
gem 'rvm-capistrano'
end
gem 'redis'
gem 'log4r'
group :assets do
gem 'capistrano'
gem 'sass-rails', '~> 3.2.3'
gem 'compass-rails'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'bootstrap-sass', '~> 2.0.2'
gem "jquery-rails", "~> 1.0.12"
gem "jquery-ui-rails"
gem 'font-awesome-sass-rails'
end
gem 'therubyracer'
gem 'haml'
gem 'haml-rails'
gem "will_paginate"
gem 'authlogic'
gem "authlogic_haapi"
# To use ActiveModel has_secure_password
gem 'bcrypt-ruby', '~> 3.0.0'
# We can only use passenger as web server because unicorn and webrick do not
# support to receive the raw ssl certificate via an environment variable
gem 'passenger'
gem 'net-ssh'
gem "declarative_authorization"
gem "simple_form"
gem "cocoon"
gem 'public_activity'
gem 'client_side_validations'
gem 'client_side_validations-simple_form'
group :test do
# Pretty printed test output
gem 'turn', :require => false
gem 'factory_girl_rails'
end
group :test, :development do
gem "rspec-rails"
gem "capybara"
gem 'rb-fsevent', :require => false
gem 'guard-rspec'
gem 'sqlite3'
end
group :production do
gem 'mysql2'
end