This repository has been archived by the owner on Apr 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
47 lines (35 loc) · 1.63 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
source 'https://rubygems.org'
gem 'rails', '3.2.13'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'pg'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
gem 'zurb-foundation', '~> 4.2.0'
end
gem 'jquery-rails'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
gem 'acts_as_commentable_with_threading' # https://www.ruby-toolbox.com/categories/rails_comments
gem 'acts_as_votable'
gem "auto_html", :git => "git://github.com/mindware/auto_html.git" # Version with Jplayer Support
gem "pismo" # https://github.com/peterc/pismo
gem "delayed_job_active_record" # https://github.com/collectiveidea/delayed_job
gem 'youtube_it' # https://github.com/kylejginavan/youtube_it#client-with-developer-key
gem 'vimeo' # https://github.com/matthooks/vimeo
gem 'delayed_job_web' # https://github.com/ejschmitt/delayed_job_web
gem 'dotenv-rails' # To load the environment variable (.env) - https://github.com/bkeepers/dotenv
gem 'mail' # This is how we'll access the content from mobile users
gem 'thin' # Web server
gem 'devise' # Authentication - https://github.com/plataformatec/devise
gem 'foreman' # To start up app requirements
gem "delayed_job_active_record" # https://github.com/collectiveidea/delayed_job
gem 'delayed_job_web' # https://github.com/ejschmitt/delayed_job_web
# Mail app
gem 'mini-smtp-server'