# frozen_string_literal: true

source 'https://rubygems.org'

ruby '2.6.1'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.0.2', '>= 6.0.2.2'
# Use pg as the database for Active Record
gem 'pg'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby

# Use Puma as the app server
gem 'puma', '~> 4.3'

# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc

# OmniAuth using Devise with Twitter
gem 'devise'
gem 'omniauth'
gem 'omniauth-twitter'

gem 'bootstrap-sass', '>= 3.4.1'
gem 'chartjs-ror'
gem 'font-awesome-rails'
gem 'friendly_id', '~> 5.1.0'
gem 'groupdate'
gem 'mustache', '~> 1.0'
gem 'rubocop'
gem 'sidekiq'
gem 'sinatra', require: nil
gem 'slim-rails'
gem 'twitter'

gem 'whenever', require: false
gem 'will_paginate', '~> 3.1.0'

# Exception
gem 'exception_notification', '~> 4.0.1'

# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false

group :development, :test do
  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  gem 'byebug'

  # Access an IRB console on exception pages or by using <%= console %> in views
  gem 'web-console', '>= 3.3.0'

  # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  gem 'foreman'
  gem 'spring'

  gem 'dotenv-rails', require: 'dotenv/rails-now'
end
