From d7dc62c44c71af31ca20542bab88e88ce104721a Mon Sep 17 00:00:00 2001 From: Nastia Gorokhova-Alekseeva Date: Thu, 13 Jan 2022 23:40:47 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=B5=D0=BC=D0=BD=D0=BE=D0=B3=D0=BE=20?= =?UTF-8?q?=D1=80=D1=83=D0=B1=D0=BE=D0=BA=D0=BE=D0=BF=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Gemfile | 5 ++++- test/test_helper.rb | 5 +++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index a2236ba..af805c7 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,5 @@ +# frozen_string_literal: true + source 'https://rubygems.org' git_source(:github) { |repo_name| "https://github.com/#{repo_name}.git" } @@ -12,11 +14,12 @@ gem 'aws-sdk-s3' gem 'fog-local' gem 'delayed_paperclip', github: 'insales/delayed_paperclip' +gem 'rails' gem 'sidekiq', '~> 2.0' gem 'test-unit' -gem 'thoughtbot-shoulda', '>= 2.9.0' gem 'mocha' +gem 'thoughtbot-shoulda', '>= 2.9.0' gem 'pry' gem 'pry-byebug' diff --git a/test/test_helper.rb b/test/test_helper.rb index 69d261c..9c3301d 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -1,8 +1,11 @@ +# frozen_string_literal: true + require 'rubygems' require 'test/unit' require 'shoulda' require 'mocha/test_unit' require 'pry' +require 'pry-byebug' require 'tempfile' require 'sqlite3' @@ -23,8 +26,6 @@ require File.join(ROOT, 'lib', 'paperclip.rb') require 'shoulda_macros/paperclip' -require 'pry' -require 'pry-byebug' FIXTURES_DIR = File.join(File.dirname(__FILE__), "fixtures") config = YAML::load(IO.read(File.dirname(__FILE__) + '/database.yml'))