-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
60 lines (54 loc) · 1.19 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
source 'http://rubygems.org'
gem 'rails' #, '3.2.5' try latest
gem 'mysql2'
gem 'ruby-rc4'
gem 'bcrypt-ruby'
gem 'haml'
gem 'thin'
gem 'acts_as_commentable'
gem 'will_paginate'
gem 'paperclip', '< 3.0'
gem 'gravatar-ultimate'
gem 'formtastic', '~> 2.0.2'
gem 'formtastic-bootstrap'
gem 'acts_as_indexed'
gem 'cocoon'
gem 'paper_trail', '2.3.3'
gem 'localized_language_select', '0.2.0', :git => "git://github.com/oneiros/localized_language_select.git"
gem 'ransack'
gem 'transitions', :require => ["transitions", "active_record/transitions"]
gem 'json'
gem 'therubyracer'
gem 'barista'
gem 'ri_cal'
gem 'nokogiri'
gem 'settingslogic'
gem 'prawn'
gem 'prawn_rails'
gem 'whenever'
gem 'sidekiq'
gem 'redis'
gem 'redis-namespace'
group :development, :test do
gem 'factory_girl_rails'
end
group :test do
gem 'minitest'
gem 'turn', :require => false
end
group :development do
gem 'hpricot'
gem 'yaml_db'
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request', '0.2.1'
end
group :assets do
gem 'sass-rails', " ~> 3.2.0"
gem 'coffee-rails', " ~> 3.2.0"
gem 'coffee-filter'
gem 'uglifier'
gem 'jquery-rails', '~> 1.0'
gem 'jquery-ui-rails'
gem 'twitter-bootstrap-rails', '< 1.9'
end