diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-05-26 14:42:15 +0000 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-05-26 14:42:15 +0000 |
commit | b23025b669d7451cfc8c6b55430a8c701022d7b3 (patch) | |
tree | f9a4888247274ff9bf33cdd91e5bef0248917fc3 /Gemfile | |
parent | 08102ad7485cd2cdbcba0cc3b0e2ced3de6be5fe (diff) | |
parent | 11af51613d219aecd2a8cdce879d983f82434d47 (diff) | |
download | gitlab-ce-b23025b669d7451cfc8c6b55430a8c701022d7b3.tar.gz |
Merge branch 'rs-gems' into 'master'
Update ffaker gem
Adds a version requirement which it didn't have before, at 2.0.0. This version has breaking API changes in that the namespace is now `FFaker` instead of `Faker`.
Prior, if a new developer checked out the repo, ran `bundle install` and then tried `rake dev:setup`, seeding would fail due to having the latest version of ffaker without the API changes in this MR.
Also updates `spring` version and the binstubs, just for kicks.
See merge request !686
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -239,7 +239,7 @@ group :development, :test do gem 'minitest', '~> 5.3.0' # Generate Fake data - gem "ffaker" + gem 'ffaker', '~> 2.0.0' # Guard gem 'guard-rspec' |