-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
53 lines (42 loc) · 747 Bytes
/
Gemfile
File metadata and controls
53 lines (42 loc) · 747 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
46
47
48
49
50
51
52
53
source "http://rubygems.org/"
gem 'sinatra'
gem 'sinatra-contrib'
gem 'rake'
gem 'sidekiq', '~> 5.2.7'
gem 'rufus-scheduler', '~> 3.4'
gem 'sidekiq-cron'
gem 'bcrypt'
gem 'sass'
gem 'will_paginate'
# deploy
gem 'capistrano', '~> 3.6'
gem 'capistrano-bundler', '~> 1.3'
gem 'capistrano-passenger'
gem 'capistrano-chruby'
gem "capistrano-rails", "~> 1.3"
# auth
gem 'omniauth'
gem 'omniauth-twitter', '~> 1.4'
# server
gem 'puma'
gem 'passenger'
# view
gem 'sinatra-flash'
# errors
gem 'better_errors'
gem 'binding_of_caller'
# db
gem 'pg'
gem 'activerecord', '~> 5.2.3'
gem 'sinatra-activerecord'
# http
gem 'rest-client'
# rss / parsing
gem 'httparty'
gem 'feedjira'
gem 'nokogiri'
gem 'mechanize'
# debug
gem 'pry'
# misc
gem 'dotenv'