-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
rails new YOUR_APP_NAME --api --database=postgresql --skip-test --skip-action-cable --skip-action-mailer --skip-javascript
rails db:createUpdate Gemfile
# ...
group :development do
# ...
gem 'rubocop-rails', require: false
gem 'guard'
gem 'guard-bundler', require: false
gem 'guard-pow', require: false
gem 'guard-rspec', require: false
gem 'guard-rubocop', require: false
gem 'guard-spring', require: false
gem 'better_errors'
gem 'binding_of_caller'
gem 'listen'
gem 'spring'
end
group :test do
gem 'rspec-collection_matchers'
gem 'rspec-its'
gem 'rspec-rails'
gem 'rspec_junit_formatter'
gem 'shoulda'
gem 'shoulda-matchers'
gem 'timecop'
gem 'vcr'
gem 'webmock', require: false
end
# ...Install rspec
rails generate rspec:installReactions are currently unavailable