5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-17 02:30:51 +00:00
panel/Gemfile

100 lines
2.5 KiB
Ruby
Raw Normal View History

2019-03-26 15:32:20 +00:00
# frozen_string_literal: true
2019-09-18 18:47:43 +00:00
# TODO: Podríamos usar solo gems.sutty.nl pero por alguna razón bundler
# prefiere x86_64-linux-musl antes que x86_64-linux y ya perdimos mucho
# tiempo buscando soporte para musl
if ENV['RAILS_ENV'] == 'production'
source 'https://gems.sutty.nl'
else
source 'https://rubygems.org'
end
2018-01-02 17:19:25 +00:00
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
2019-11-15 13:07:15 +00:00
# Cambiar en Dockerfile también
ruby '2.6.5'
2019-10-16 17:56:49 +00:00
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-08-29 17:54:19 +00:00
gem 'rails', '~> 6'
2018-01-02 17:19:25 +00:00
# Use Puma as the app server
2019-11-15 14:20:56 +00:00
gem 'puma'
2018-01-02 17:19:25 +00:00
# Use SCSS for stylesheets
gem 'sassc-rails'
2018-01-02 17:19:25 +00:00
# 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'
2020-02-06 17:06:47 +00:00
gem 'blazer'
2019-07-10 20:01:59 +00:00
gem 'bootstrap', '~> 4'
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'
2019-07-03 23:40:24 +00:00
gem 'friendly_id'
2019-07-13 16:33:49 +00:00
gem 'hamlit-rails'
2019-07-26 00:36:33 +00:00
gem 'hiredis'
2019-08-22 01:09:29 +00:00
gem 'image_processing'
2019-09-04 16:50:27 +00:00
gem 'inline_svg'
2018-01-29 18:09:30 +00:00
gem 'jekyll'
2018-07-02 20:45:32 +00:00
gem 'mini_magick'
2019-07-17 22:18:48 +00:00
gem 'mobility'
2019-09-24 17:56:04 +00:00
gem 'pg'
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-26 00:36:33 +00:00
gem 'redis', require: %w[redis redis/connection/hiredis]
gem 'redis-rails'
gem 'reverse_markdown', git: 'https://0xacab.org/sutty/reverse_markdown.git'
gem 'rubyzip'
2019-07-11 19:00:28 +00:00
gem 'rugged'
2019-09-16 16:44:29 +00:00
gem 'sucker_punch'
2019-07-26 00:36:33 +00:00
gem 'terminal-table'
2019-07-11 19:00:28 +00:00
gem 'validates_hostname'
gem 'webpacker'
2019-09-24 19:34:34 +00:00
gem 'yaml_db', git: 'https://0xacab.org/sutty/yaml_db.git'
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'
2019-09-24 22:53:44 +00:00
gem 'sqlite3'
2018-01-02 17:19:25 +00:00
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-02-02 22:50:45 +00:00
gem 'bcrypt_pbkdf'
2020-01-22 20:42:25 +00:00
gem 'brakeman'
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'
2020-01-22 20:42:25 +00:00
gem 'listen', '>= 3.0.5', '< 3.2'
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'
2020-01-22 20:42:25 +00:00
gem 'web-console', '>= 3.3.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