Skip to content

Gems updated resolving deprecation warnings #424

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

Merged
merged 4 commits into from
Nov 21, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ install:
- bundle install
- chromedriver-update
- nvm install stable && nvm alias default stable
- npm install npm@latest -g
- npm install -g [email protected]
- npm install -g yarn
- npm --version
- yarn install
Expand Down
13 changes: 7 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ gem "coffee-rails"

# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder"
gem "redis"
gem "redis", "3.3.3"

# bundle exec rake doc:rails generates the API under doc/api.
gem "sdoc", group: :doc
Expand Down Expand Up @@ -65,7 +65,7 @@ group :development, :test do

################################################################################
# Manage application processes
gem "factory_girl_rails"
gem "factory_bot_rails"
gem "foreman"

################################################################################
Expand All @@ -92,16 +92,17 @@ group :development, :test do
end

group :test do
gem "capybara"
gem "capybara", "2.13.0"
gem "capybara-screenshot"
gem "capybara-webkit"
gem "capybara-webkit", "1.14.0"
gem "chromedriver-helper"
gem "coveralls", require: false
gem "database_cleaner"
gem "generator_spec"
gem "launchy"
gem "poltergeist"
gem "rspec-rails", "~> 3.6"
gem "rails_best_practices"
gem "rspec-rails", "3.6.1"
gem "rspec-retry"
gem "selenium-webdriver", "<3.0.0"
gem "selenium-webdriver"
end
Loading