-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
52 lines (40 loc) · 968 Bytes
/
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
source 'https://rubygems.org'
gem 'rails', '3.2.11'
gem 'rake'
gem 'jquery-rails'
gem 'mysql2'
gem 'json'
gem 'bcrypt-ruby'
#faye messaging
gem "faye"
gem "thin"
#search
gem 'sunspot_rails'
gem 'sunspot_solr'
gem 'progress_bar'
# custom:
gem 'haml-rails'
gem 'foreman'
gem 'acts_as_list'
gem 'simple_form', '2.0.2'
gem 'will_paginate', '~> 3.0'
gem 'therubyracer', :platforms => :ruby
gem 'paperclip', '2.7.0'
gem 'rmagick', '2.13.1', :require => 'RMagick'
gem 'remotipart', '~> 1.0'
gem 'rubyzip', :require => 'zip/zip'
gem 'acts-as-taggable-on', '~> 2.3.1'
# gem 'meta_search'
# gem 'twitter-bootstrap-rails'
gem 'bootstrap_flash_messages', '0.0.3'
gem "nested_form"
gem "breadcrumbs_on_rails"
#auth
gem 'sorcery'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'