-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
110 lines (106 loc) · 3.27 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
source 'https://rubygems.org'
ruby '2.4.4'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '5.2.1'
# Use sqlite3 as the database for Active Record
gem 'pg', '0.21.0'
gem 'pg_search'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
gem 'tzinfo-data'
# Use Uglifier as compressor for JavaScript assets
# gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
# gem 'coffee-rails', '> 4.1.0'
gem 'addressable'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'device_detector'
gem "barnes"
gem "exception_handler", "~> 0.8.0.0"
gem 'mimemagic'
# gem 'sqreen'
gem 'derailed', group: :development
gem 'mini_magick'
# gem 'trestle', :path => '/Users/joshua/Projects/trestle'
# gem 'trestle', :git => 'https://github.com/jfrux/trestle'
gem 'trestle'
gem 'trestle-simplemde'
gem 'trestle-search'
gem 'rubyzip', '~> 1.2.2'
gem 'devise'
gem 'puma'
gem "socialization"
# gem 'html2text'
gem "reverse_markdown"
gem "sentry-raven"
# gem 'pundit'
# gem 'selenium-webdriver'
# gem 'chromedriver-helper'
# gem 'watir'
gem 'omniauth-discord'
gem 'omniauth-github'
# gem 'readingtime'
gem 'redis-rails'
gem "hiredis", "~> 0.6.0"
gem "redis", ">= 3.2.0"
gem "aws-sdk-s3", require: false
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
gem 'rack-cors'
# gem 'hashdiff'
gem "hashid-rails", "~> 1.0"
gem 'rack-host-redirect'
gem 'listen'
gem 'mechanize'
gem 'awesome_nested_set'
gem 'font-awesome-sass', '~> 5.2.0'
gem 'friendly_id', '~> 5.2.0', :require => "friendly_id"
gem 'bootstrap', '~> 4.1.3'
gem 'paper_trail'
gem 'paper_trail-association_tracking'
gem 'iframely'
gem 'shortener'
# gem "puma_worker_killer"
gem 'acts_as_votable', '~> 0.11.1'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0', :require => "jbuilder"
# bundle exec rake doc:rails generates the API under doc/api.
# gem 'sdoc', '~> 0.4.0', group: :doc
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
gem 'sparkpost_rails'
# Use Unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
gem 'sidekiq'
gem 'sidekiq-scheduler'
gem 'sidekiq-unique-jobs'
gem "octokit", "~> 4.0"
gem 'meta-tags'
gem 'fastimage'
gem "down", "~> 4.4"
gem 'dotenv-rails', groups: [:development, :test]
gem 'cars', :git => 'https://github.com/openpilot-community/cars_abstraction'
group :development, :test do
# gem 'cars', :path => '/Users/joshua/Projects/cars_abstraction'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
gem "capistrano", "~> 3.10", require: false
gem "capistrano-rails", "~> 1.4", require: false
end
group :production do
end
group :development do
gem 'rubocop'
gem 'foreman'
gem 'guard'
gem 'guard-livereload', '~> 2.5.2', require: false
gem "rack-livereload", group: :development
gem 'rb-fsevent', require: false
# Access an IRB console on exception pages or by using <%= console %> in views # Access an IRB console on exception pages or by using <%= console %> in views
# gem 'web-console', '~> 2.0' # gem 'web-console', '~> 2.0'
end