0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Rubyでよく使うライブラリ

Last updated at Posted at 2023-07-01

Rails
MVCフレームワーク
https://github.com/rails/rails

Jbuilder
JSONのDSL
https://github.com/rails/jbuilder

Spring
パフォーマンス向上
起動されたRailsプロセスのコピーを保持し、次回の起動時に起動プロセスの一部を完全にスキップする
https://github.com/rails/spring

Bootsnap
パフォーマンス向上
Railsの個々のファイルの読込を高速化
https://github.com/Shopify/bootsnap
https://github.com/Shopify/bootsnap/blob/master/README.jp.md

Sidekiq
非同期処理ライブラリ
バックグラウンド処理をシンプルで効率的にする
https://github.com/mperham/sidekiq

Puma
HTTPサーバー
Rails 5から標準となった
https://github.com/puma/puma

Unicorn
HTTPサーバー
Pumaよりパフォーマンスがよさそう
https://github.com/defunkt/unicorn

Rack
HTTPサーバーのラッパー?
https://github.com/rack/rack

Sidekiq-Cron
SidekiqをCron式でスケジューリングするアドオン
https://github.com/ondrejbartas/sidekiq-cron

Mysql2
MySQLクライアント
https://github.com/brianmario/mysql2

rubocop
コードアナライザー&フォーマッター
https://github.com/rubocop-hq/rubocop

RSpec
BDDテストフレームワーク
https://github.com/rspec/rspec

rspec-rails
RSpecのRails版
https://github.com/rspec/rspec-rails

factory_bot
テストデータをDBにかんたんに登録するライブラリ?
https://github.com/thoughtbot/factory_bot

faker
テスト用のフェイクデータ生成ライブラリ
https://github.com/faker-ruby/faker

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?