X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/f71634c065eff38970b178958349ca9381aee996..4653d82e57660b2f2d5cc9ce0960f44684b160ec:/services/api/Gemfile diff --git a/services/api/Gemfile b/services/api/Gemfile index 00e9ae0b06..804d2a479d 100644 --- a/services/api/Gemfile +++ b/services/api/Gemfile @@ -10,7 +10,11 @@ gem 'responders', '~> 2.0' group :test, :development do gem 'factory_bot_rails' gem 'database_cleaner' - gem 'ruby-prof' + + # As of now (2019-03-27) There's an open issue about incompatibilities with + # newer versions of this gem: https://github.com/rails/rails-perftest/issues/38 + gem 'ruby-prof', '~> 0.15.0' + # Note: "require: false" here tells bunder not to automatically # 'require' the packages during application startup. Installation is # still mandatory. @@ -18,15 +22,13 @@ group :test, :development do gem 'simplecov', '~> 0.7.1', require: false gem 'simplecov-rcov', require: false gem 'mocha', require: false + gem 'byebug' end # We need this dependency because of crunchv1 gem 'arvados-cli' -# pg is the only supported database driver. -# Note: Rails 4.2 is not compatible with pg 1.0 -# (See: https://github.com/rails/rails/pull/31671) -gem 'pg', '~> 0.18' +gem 'pg', '~> 1.0' gem 'multi_json' gem 'oj' @@ -69,6 +71,8 @@ gem 'rails-observers' gem 'rails-perftest' gem 'rails-controller-testing' +gem 'sass-rails' + # Install any plugin gems Dir.glob(File.join(File.dirname(__FILE__), 'lib', '**', "Gemfile")) do |f| eval(IO.read(f), binding)