LoginSignup
0
0

More than 3 years have passed since last update.

Railsで汎用的に使っている Gemfile まとめ

Last updated at Posted at 2019-08-15

概要

Rails 開発時に汎用的に使っている Gemfile

前提条件

  • Ruby 2.5.5
  • Rails 5.2.3

最終型

Gemfileはこちら
/Gemfile


画面

Administrate


テスト

FactoryBot

group :development, :test do
  # FactoryBot
  ## https://github.com/thoughtbot/factory_bot_rails
  gem 'factory_bot_rails'
end

RSpec

group :test do
  gem 'rspec-rails'
end

開発

XRay-rails

group :development do
  # XRay-rails
  ## https://github.com/brentd/xray-rails
  gem 'xray-rails'
end
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