Skip to content

Commit f8aeda2

Browse files
committed
Update git
1 parent a307155 commit f8aeda2

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ gem "props_template", path: "../props_template"
77
gem "standard"
88
gem "capybara"
99
gem "minitest", "~> 5.27"
10-
gem 'minitest-mock'
10+
gem "minitest-mock"
1111
gem "rake"
1212
gem "sqlite3", "~> 1.4"
1313
gem "byebug"
14-
gem "git"
14+
gem "git", "~> 4.3"
1515
gem "jsbundling-rails"
1616
gem "puma"
1717
gem "propshaft"

Gemfile.72

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ gem "minitest", "~> 5.27"
1010
gem 'minitest-mock'
1111
gem 'rake'
1212
gem 'sqlite3', '~> 1.4'
13-
gem 'git'
13+
gem 'git', '~> 4.3'
1414
gem 'cuprite'
1515
gem 'puma'
1616
gem 'propshaft'

Gemfile.80

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ gem "minitest", "~> 5.27"
1010
gem 'minitest-mock'
1111
gem 'rake'
1212
gem 'sqlite3'
13-
gem 'git'
13+
gem 'git', "~> 4.3"
1414
gem 'cuprite'
1515
gem 'puma'
1616
gem 'propshaft'

Gemfile.81

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ gem "minitest", "~> 5.27"
1010
gem "minitest-mock"
1111
gem "rake"
1212
gem "sqlite3"
13-
gem "git"
13+
gem "git", "~> 4.3"
1414
gem "cuprite"
1515
gem "puma"
1616
gem "propshaft"

test/acceptance/superglue_installation_acceptance.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
ROOT_DIR = File.expand_path("../../../", __FILE__)
88
TMP_DIR = File.join(ROOT_DIR, "tmp")
99
SUPERGLUE_RAILS_PATH = ROOT_DIR
10-
SUPERGLUE_SUPERGLUE_PATH = File.join(ROOT_DIR, "../superglue/superglue")
10+
SUPERGLUE_SUPERGLUE_PATH = File.join(ROOT_DIR, "superglue/superglue")
1111
VERSION = File.read(File.expand_path("../../VERSION", __dir__)).strip
1212

1313
SERVER_PORT = "3000"
@@ -67,7 +67,7 @@ def update_package_json
6767
def install_superglue
6868
Dir.chdir(ROOT_DIR) do
6969
successfully "rm -rf ./superglue"
70-
Git.clone("https://github.com/thoughtbot/superglue.git", branch: "v2")
70+
Git.clone("https://github.com/thoughtbot/superglue.git", nil, branch: "v2")
7171
end
7272

7373
Dir.chdir(SUPERGLUE_SUPERGLUE_PATH) do

0 commit comments

Comments
 (0)