-
Notifications
You must be signed in to change notification settings - Fork 30
Update lobsters #358
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Update lobsters #358
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,75 +1,82 @@ | ||
| source "https://rubygems.org" | ||
|
|
||
| # Everything except Action Cable. It's unused and it installs native gems. | ||
| %w[ | ||
| actionmailbox actionmailer actionpack actionview | ||
| actiontext activejob activemodel activerecord | ||
| activestorage activesupport railties | ||
| ].each do |rails_gem| | ||
| gem rails_gem, "~> 7.2" | ||
| end | ||
| gem "rails" | ||
|
|
||
| # database and caching | ||
| gem "maxminddb" | ||
| gem "solid_cache" | ||
| gem "sqlite3" | ||
| #gem "mysql2" | ||
| gem "trilogy" | ||
|
|
||
| # uncomment to use PostgreSQL | ||
| # gem "pg" | ||
| # jobs | ||
| gem "solid_queue" | ||
| gem "mission_control-jobs" | ||
|
|
||
| # rails | ||
| gem 'scenic' | ||
| #gem 'scenic-mysql_adapter' | ||
| # gem "scenic" | ||
| # gem "scenic-mysql_adapter" | ||
| gem "activerecord-typedstore" | ||
| gem 'sprockets-rails', '2.3.3' | ||
| gem "propshaft" | ||
| gem "importmap-rails", "~> 2.0" | ||
|
|
||
| # js | ||
| gem "jquery-rails", "~> 4.3" | ||
| gem "json" | ||
| #gem "uglifier", ">= 1.3.0" | ||
|
|
||
| # deployment | ||
| gem "actionpack-page_caching" | ||
| # gem "exception_notification" | ||
| # gem "puma", ">= 5.6.2" | ||
| gem "exception_notification" | ||
| gem "puma" | ||
|
|
||
| # security | ||
| gem "bcrypt", "~> 3.1.2" | ||
| gem "bcrypt" | ||
| gem "rotp" | ||
| gem "rqrcode" | ||
|
|
||
| # parsing | ||
| gem "pdf-reader" | ||
| gem "nokogiri", ">= 1.13.9" | ||
| gem "commonmarker", "<1" | ||
| gem "htmlentities" | ||
| gem "commonmarker", ">= 0.23.6", "< 1.0" # The v1.0 Rust gem doesn't compile on Ruby master | ||
| gem "pdf-reader" | ||
| gem "nokogiri" | ||
| gem "parslet" | ||
|
|
||
| # perf - skip for benchmarking | ||
| group :development do | ||
| gem 'flamegraph' | ||
| gem 'memory_profiler' | ||
| gem 'rack-mini-profiler' | ||
| gem 'stackprof' | ||
| end | ||
| # perf | ||
| gem "flamegraph" | ||
| gem "memory_profiler" | ||
| # gem "rack-mini-profiler" | ||
| gem "stackprof" | ||
| # gem "prosopite" | ||
| gem "pg_query" | ||
|
|
||
| gem "oauth" # for twitter-posting bot | ||
| gem "builder" # for rss | ||
| gem "oauth" # for linking accounts | ||
| gem "mail" # for parsing incoming mail | ||
| gem "ruumba" # tests views | ||
| gem "sitemap_generator" # for better search engine indexing | ||
| gem "svg-graph", require: 'SVG/Graph/TimeSeries' # for charting, note workaround in lib/time_series.rb | ||
| gem 'rack-attack' # rate-limiting | ||
| gem "svg-graph", require: "SVG/Graph/TimeSeries" # for charting, note workaround in lib/time_series.rb | ||
|
|
||
| # gem "rack-attack" # rate-limiting | ||
| gem "lograge" # for JSON logging | ||
| gem "silencer" # to disable default logging in prod | ||
|
|
||
| group :test, :development do | ||
| gem 'capybara' | ||
| gem 'database_cleaner' | ||
| gem 'rspec-rails', '~> 6.0.0.rc1' | ||
| gem "benchmark-perf" | ||
| gem "brakeman" | ||
| gem "capybara" | ||
| gem "database_cleaner" | ||
| gem "listen" | ||
| gem "letter_opener" | ||
| gem "rspec-rails" | ||
| gem "factory_bot_rails" | ||
| gem "ostruct" # required for such an old rubocop | ||
| gem "rubocop", "0.81", require: false | ||
| gem "rubocop-rails", require: false | ||
| gem "rubocop-rspec", require: false | ||
| gem "foreman" | ||
| gem "standard" | ||
| gem "standard-performance" | ||
| gem "standard-rails" | ||
| gem "super_diff" | ||
| gem "faker" | ||
| gem "byebug" | ||
| gem "rb-readline" | ||
| gem "vcr" | ||
| gem "webmock" # used to support vcr | ||
| gem 'simplecov', require: false | ||
| gem "simplecov", require: false | ||
| gem "active_record_doctor" | ||
| gem "database_consistency" | ||
| end | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we upgrade, I'd like to get rid of nio4r, still, since the bench doesn't use Action Cable. We can do that in a separate PR, though.