diff options
author | Stan Hu <stanhu@gmail.com> | 2019-01-02 22:57:02 -0800 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2019-01-02 23:01:24 -0800 |
commit | 1425ee50b87a59a24602994c03e13c7004b22e4b (patch) | |
tree | 4a1e6c11e2e6bcc7b418aca9e1e12b88f64831c8 /Gemfile | |
parent | bf38936fb34e18e18cb4ed81f4fb35ac9420bfd6 (diff) | |
download | gitlab-ce-1425ee50b87a59a24602994c03e13c7004b22e4b.tar.gz |
Update gems in Gemfile and qa/Gemfile to be consistent
This will allow developers to run `bundle install` on both directories
and avoid additional calls to RubyGems for local development. Also sets
up the possibility of improved caching as mentioned in
https://gitlab.com/gitlab-org/gitlab-ce/issues/55843.
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -127,7 +127,7 @@ gem 'asciidoctor-plantuml', '0.0.8' gem 'rouge', '~> 3.1' gem 'truncato', '~> 0.7.9' gem 'bootstrap_form', '~> 2.7.0' -gem 'nokogiri', '~> 1.8.4' +gem 'nokogiri', '~> 1.8.5' gem 'escape_utils', '~> 1.1' # Calendar rendering @@ -322,7 +322,7 @@ end group :development, :test do gem 'bootsnap', '~> 1.3' gem 'bullet', '~> 5.5.0', require: !!ENV['ENABLE_BULLET'] - gem 'pry-byebug', '~> 3.4.1', platform: :mri + gem 'pry-byebug', '~> 3.5.1', platform: :mri gem 'pry-rails', '~> 0.3.4' gem 'awesome_print', require: false @@ -342,8 +342,8 @@ group :development, :test do # Generate Fake data gem 'ffaker', '~> 2.10' - gem 'capybara', '~> 2.15' - gem 'capybara-screenshot', '~> 1.0.0' + gem 'capybara', '~> 2.16.1' + gem 'capybara-screenshot', '~> 1.0.18' gem 'selenium-webdriver', '~> 3.12' gem 'spring', '~> 2.0.0' |