-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
52 lines (40 loc) · 970 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'
#RAILS GEMS
gem 'rails', '4.0.1'
gem 'sqlite3'
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 1.2'
#OUR GEMS
gem 'bcrypt-ruby', '~> 3.1.2'
gem 'unicorn'
gem 'sidekiq'
gem 'sidetiq', '0.4.0'
gem 'feedzirra'
gem 'anjlab-bootstrap-rails', '>= 3.0.0.0', :require => 'bootstrap-rails'
gem 'twitter'
#gem 'better_errors'
#gem 'binding_of_caller'
gem 'pry'
gem 'rspec'
gem 'rspec-rails'
gem 'capybara'
gem 'nokogiri'
gem 'bootstrap-sass', '~> 3.0.2.0'
gem 'sanitize'
gem "figaro"
gem 'phrasie'
gem 'will_paginate', '~> 3.0'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
# Use ActiveModel has_secure_password
# Use unicorn as the app server
# Use Capistrano for deployment
# gem 'capistrano', group: :development
# Use debugger
# gem 'debugger', group: [:development, :test]