Skip to content

Commit 8c1a83d

Browse files
committed
[rails] add bin/test
1 parent 8fcd5e0 commit 8c1a83d

5 files changed

Lines changed: 396 additions & 8 deletions

File tree

.devcontainer/run

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ cd /workspace/sentry
77
sudo mkdir -p vendor/gems
88
sudo chown -R sentry:sentry vendor/gems
99

10-
git config --global safe.directory /workspace/sentry
11-
git config --global safe.directory /workspace/sentry/vendor/gems/*
10+
# git config --global safe.directory /workspace/sentry
11+
# git config --global safe.directory /workspace/sentry/vendor/gems/*
1212

1313
sudo chown -R sentry:sentry .
1414

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ node_modules
1919

2020
.devcontainer/.env
2121
vendor/gems
22+
sentry-rails/Gemfile-*.lock

Gemfile.dev

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,18 @@ if RUBY_VERSION >= "3.4"
2424
gem "drb"
2525
gem "mutex_m"
2626
gem "benchmark"
27+
gem "base64"
28+
gem "ostruct"
29+
gem "psych"
2730
end
2831

2932
# For RSpec
30-
gem "rspec", "~> 3.0"
33+
gem "rspec"
3134
gem "rspec-retry"
3235
gem "simplecov"
3336
gem "simplecov-cobertura", "~> 1.4"
3437
gem "rexml"
3538

36-
if ruby_version >= Gem::Version.new("3.4")
37-
gem "ostruct"
38-
end
39-
4039
group :rubocop do
4140
gem "rubocop-rails-omakase"
4241
gem "rubocop-packaging"

sentry-rails/Gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ elsif rails_version >= Gem::Version.new("6.1.0")
4848
end
4949
else
5050
gem "rspec-rails", "~> 4.0"
51-
gem "psych", "~> 3.0.0"
5251

5352
if rails_version >= Gem::Version.new("6.0.0")
5453
gem "sqlite3", "~> 1.4.0", platform: :ruby

0 commit comments

Comments
 (0)