Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/git/git-scm.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile14
1 files changed, 12 insertions, 2 deletions
diff --git a/Gemfile b/Gemfile
index 8d89b05d..b2a9b388 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,10 +1,15 @@
# frozen_string_literal: true
source "https://rubygems.org"
-ruby "2.7.3"
+ruby "3.1.2"
gem "rails", "~> 6.0"
+# hacks for rails6 + ruby 3.1
+gem 'net-imap', require: false
+gem 'net-pop', require: false
+gem 'net-smtp', require: false
+
gem "asciidoctor", "~> 2.0.0"
gem "elasticsearch", "2.0.2"
gem "iso8601"
@@ -13,6 +18,7 @@ gem "puma"
gem "diffy"
gem "nokogiri"
+gem "rss"
# Assets
gem "sass-rails"
@@ -29,7 +35,11 @@ group :development, :test do
gem "dotenv-rails"
gem "listen"
gem "pry-byebug"
- gem "rubocop-github"
+ gem "rubocop"
+ gem "rubocop-discourse"
+ gem "rubocop-performance"
+ gem "rubocop-rails"
+ gem "rubocop-rspec"
gem "ruby-prof"
gem "sqlite3"
end