5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-17 03:10:48 +00:00
panel/Gemfile

93 lines
2.4 KiB
Ruby
Raw Normal View History

2019-03-26 15:32:20 +00:00
# frozen_string_literal: true
2018-01-02 17:19:25 +00:00
source 'https://rubygems.org'
git_source(:github) do |repo_name|
2019-03-26 15:32:20 +00:00
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
2018-01-02 17:19:25 +00:00
"https://github.com/#{repo_name}.git"
end
2018-02-02 22:50:45 +00:00
gem 'dotenv-rails', require: 'dotenv/rails-now'
2018-01-02 17:19:25 +00:00
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
2019-04-08 18:00:42 +00:00
gem 'rails', '~> 5.2'
2018-01-02 17:19:25 +00:00
# Use sqlite3 as the database for Active Record
gem 'sqlite3', '~> 1.3.6'
2018-01-02 17:19:25 +00:00
# Use Puma as the app server
gem 'puma', '~> 3.7'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
2019-07-03 19:57:16 +00:00
# Turbolinks makes navigating your web application faster. Read more:
# https://github.com/turbolinks/turbolinks
2018-01-02 17:19:25 +00:00
gem 'turbolinks', '~> 5'
2019-07-03 19:57:16 +00:00
# Build JSON APIs with ease. Read more:
# https://github.com/rails/jbuilder
2018-01-02 17:19:25 +00:00
gem 'jbuilder', '~> 2.5'
# Use ActiveModel has_secure_password
2018-09-28 14:34:37 +00:00
gem 'bcrypt', '~> 3.1.7'
2018-01-02 17:19:25 +00:00
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
2019-07-10 20:01:59 +00:00
gem 'bootstrap', '~> 4'
2019-03-26 15:32:20 +00:00
gem 'carrierwave'
gem 'carrierwave-bombshelter'
gem 'carrierwave-i18n'
2018-02-23 19:12:39 +00:00
gem 'commonmarker'
2019-07-03 19:57:16 +00:00
gem 'devise'
gem 'devise-i18n'
2019-07-05 23:55:59 +00:00
gem 'devise_invitable'
2018-01-29 18:09:30 +00:00
gem 'email_address'
2019-03-26 15:32:20 +00:00
gem 'exception_notification'
gem 'font-awesome-rails'
2019-07-03 23:40:24 +00:00
gem 'friendly_id'
2019-07-13 16:33:49 +00:00
gem 'hamlit-rails'
2018-01-29 18:09:30 +00:00
gem 'jekyll'
2018-02-03 14:02:21 +00:00
gem 'jquery-rails'
2018-07-02 20:45:32 +00:00
gem 'mini_magick'
2018-09-28 15:20:12 +00:00
gem 'pundit'
gem 'rails-i18n'
2019-03-26 15:32:20 +00:00
gem 'rails_warden'
2019-07-11 19:00:28 +00:00
gem 'rugged'
gem 'validates_hostname'
2019-03-26 15:32:20 +00:00
gem 'whenever', require: false
2018-01-29 18:09:30 +00:00
2018-01-02 17:19:25 +00:00
group :development, :test do
2018-01-29 18:09:30 +00:00
gem 'pry'
2018-01-02 17:19:25 +00:00
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '~> 2.13'
gem 'selenium-webdriver'
end
group :development do
2019-07-03 19:57:16 +00:00
# Access an IRB console on exception pages or by using <%= console %>
# anywhere in the code.
2018-01-02 17:19:25 +00:00
gem 'listen', '>= 3.0.5', '< 3.2'
2019-03-26 15:32:20 +00:00
gem 'web-console', '>= 3.3.0'
2019-07-03 19:57:16 +00:00
# Spring speeds up development by keeping your application running in
# the background. Read more: https://github.com/rails/spring
2018-02-02 22:50:45 +00:00
gem 'bcrypt_pbkdf'
gem 'capistrano'
gem 'capistrano-bundler'
gem 'capistrano-passenger'
gem 'capistrano-rails'
gem 'capistrano-rbenv'
2019-04-22 22:07:43 +00:00
gem 'ed25519'
2019-07-13 16:33:49 +00:00
gem 'haml-lint', require: false
2018-09-28 15:20:12 +00:00
gem 'letter_opener'
2019-03-26 15:32:20 +00:00
gem 'rbnacl', '< 5.0'
2019-07-12 17:13:51 +00:00
gem 'rubocop-rails'
2019-03-26 15:32:20 +00:00
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
2018-01-02 17:19:25 +00:00
end
2019-07-11 19:00:28 +00:00
group :test do
gem 'database_cleaner'
gem 'factory_bot_rails'
end