diff options
author | Stan Hu <stanhu@gmail.com> | 2018-03-28 13:09:07 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2018-03-28 13:11:35 -0700 |
commit | 8f8a75633b04d4b17b059ddc780116883a0e8997 (patch) | |
tree | 4e8bb9d08c61928ed25ac99ca9e4c939900ce137 /Gemfile | |
parent | 11f8940b6f5fe177caf7fcd11054f889f613be88 (diff) | |
download | gitlab-ce-8f8a75633b04d4b17b059ddc780116883a0e8997.tar.gz |
Promote Timecop gem into joint test/development Bundler groupsh-promote-timecop-gemfile
Timecop was being used in the cycle analytics and burndown seed_fu tasks.
While it seems a little sketchy to use Timecop in this way, this seems like
an exception can be made for test fixtures.
Closes #44751, gitlab-org/gitlab-ee#5359
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -376,6 +376,8 @@ group :development, :test do gem 'stackprof', '~> 0.2.10', require: false gem 'simple_po_parser', '~> 1.1.2', require: false + + gem 'timecop', '~> 0.8.0' end group :test do @@ -385,7 +387,6 @@ group :test do gem 'webmock', '~> 2.3.2' gem 'test_after_commit', '~> 1.1' gem 'sham_rack', '~> 1.3.6' - gem 'timecop', '~> 0.8.0' gem 'concurrent-ruby', '~> 1.0.5' gem 'test-prof', '~> 0.2.5' end |