-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathGemfile
More file actions
45 lines (39 loc) · 837 Bytes
/
Gemfile
File metadata and controls
45 lines (39 loc) · 837 Bytes
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
source "https://rubygems.org"
ruby "2.3.1"
gem "rails", "~> 5.0.0"
gem "puma"
gem "pg", "~> 0.18"
gem "redis", "~> 3.3.0"
gem "sidekiq"
gem "coffee-rails", "~> 4.1.0"
gem "uglifier", ">= 1.3.0"
gem "jquery-rails"
gem "turbolinks"
gem "slim-rails"
gem 'sass-rails'
gem "bootstrap-sass"
gem 'font-awesome-sass'
gem "meta-tags"
gem "local_time"
gem "twemoji"
gem "html-pipeline", git: "https://github.com/jch/html-pipeline.git", branch: "bump-rails-dependency"
gem "github-markdown"
gem "sanitize"
group :production do
gem "rails_12factor"
gem "heroku-deflater"
end
group :development, :test do
gem "byebug"
gem "rspec-rails"
gem "factory_girl_rails"
gem "database_rewinder"
end
group :test do
gem "shoulda-matchers", "~> 3.1"
end
group :development do
gem "web-console", "~> 3.0"
gem "spring"
gem "pry-rails"
end