Fix bundler warning

Move rswag-specs under development and test to resolve this warning:

```
Your Gemfile lists the gem rswag-specs (>= 0) more than once.
You should probably keep only one of them.
Remove any duplicate entries and specify the gem only once.
While it's not a problem now, it could cause errors if you change the version of one of them later.
```
This commit is contained in:
Blake Erickson 2021-03-05 21:34:00 -07:00
parent 0aca50c66c
commit b91b6e5f1e

View File

@ -25,18 +25,20 @@ end
gem 'rswag-api', path: './rswag-api' gem 'rswag-api', path: './rswag-api'
gem 'rswag-ui', path: './rswag-ui' gem 'rswag-ui', path: './rswag-ui'
group :development, :test do
gem 'rswag-specs', path: './rswag-specs'
end
group :test do group :test do
gem 'capybara' gem 'capybara'
gem 'geckodriver-helper' gem 'geckodriver-helper'
gem 'generator_spec' gem 'generator_spec'
gem 'rspec-rails' gem 'rspec-rails'
gem 'selenium-webdriver' gem 'selenium-webdriver'
gem 'rswag-specs', path: './rswag-specs'
gem 'test-unit' gem 'test-unit'
end end
group :development do group :development do
gem 'rswag-specs', path: './rswag-specs'
gem 'rubocop' gem 'rubocop'
end end