summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2018-03-28 13:09:07 -0700
committerStan Hu <stanhu@gmail.com>2018-03-28 13:11:35 -0700
commit8f8a75633b04d4b17b059ddc780116883a0e8997 (patch)
tree4e8bb9d08c61928ed25ac99ca9e4c939900ce137
parent11f8940b6f5fe177caf7fcd11054f889f613be88 (diff)
downloadgitlab-ce-sh-promote-timecop-gemfile.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
-rw-r--r--Gemfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index bd876cc129c..b6283cc094c 100644
--- a/Gemfile
+++ b/Gemfile
@@ -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