-
Notifications
You must be signed in to change notification settings - Fork 30
/
Gemfile
46 lines (36 loc) · 795 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
source 'http://rubygems.org'
ruby '2.3.3'
gem 'rails', '~> 5.0'
gem 'pg'
gem 'devise', '4.1.1'
gem 'sidekiq', '4.1.2'
gem 'redcarpet'
gem 'nokogiri'
gem 'paperclip'
gem 'pygments.rb'
gem 'redis-activesupport', '5.0.1'
group :development, :test do
gem 'pry-rails'
gem 'factory_girl'
gem 'capybara', '~> 2.0'
gem 'rspec-rails', '~> 3.5.0'
gem 'launchy'
gem 'database_cleaner'
gem 'email_spec'
gem 'poltergeist', '1.6.0'
end
group :development do
gem 'capistrano', '~> 3.0'
gem 'capistrano-bundler', '1.1.4'
gem 'capistrano-rails', '1.1.3'
gem 'capistrano-chruby'
end
gem "unicorn"
# Asset template engines
gem 'sass-rails', "~> 5.0.6"
gem 'coffee-script'
gem 'bootstrap-sass', '~> 3.3.6'
gem 'simple_form', '3.2.1'
gem 'jquery-rails'
gem 'pry'
gem 'dotenv-rails'