Skip to content

Commit

Permalink
Create minimal reproduction
Browse files Browse the repository at this point in the history
  • Loading branch information
robbevp committed Oct 14, 2023
0 parents commit f8a38b4
Show file tree
Hide file tree
Showing 3 changed files with 144 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: 2

updates:

- package-ecosystem: bundler
directory: "/"
schedule:
interval: daily
time: "06:00"
timezone: Europe/Brussels
open-pull-requests-limit: 10
reviewers:
- robbevp
11 changes: 11 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# frozen_string_literal: true

source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

# Add sentry gems
gem 'sentry-rails', '~> 5.10'
gem 'sentry-ruby', '~> 5.10'

# Add a gem from a git source
gem 'annotate', github: 'robbevp/annotate_models', branch: 'enhc/support-virtual-columns'
120 changes: 120 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
GIT
remote: https://github.com/robbevp/annotate_models.git
revision: 099acde2ff0c1b7e64f70c996a77f907ee1121be
branch: enhc/support-virtual-columns
specs:
annotate (3.1.1)
activerecord (>= 3.2, < 8.0)
rake (>= 10.4, < 14.0)

GEM
remote: https://rubygems.org/
specs:
actionpack (7.1.1)
actionview (= 7.1.1)
activesupport (= 7.1.1)
nokogiri (>= 1.8.5)
rack (>= 2.2.4)
rack-session (>= 1.0.1)
rack-test (>= 0.6.3)
rails-dom-testing (~> 2.2)
rails-html-sanitizer (~> 1.6)
actionview (7.1.1)
activesupport (= 7.1.1)
builder (~> 3.1)
erubi (~> 1.11)
rails-dom-testing (~> 2.2)
rails-html-sanitizer (~> 1.6)
activemodel (7.1.1)
activesupport (= 7.1.1)
activerecord (7.1.1)
activemodel (= 7.1.1)
activesupport (= 7.1.1)
timeout (>= 0.4.0)
activesupport (7.1.1)
base64
bigdecimal
concurrent-ruby (~> 1.0, >= 1.0.2)
connection_pool (>= 2.2.5)
drb
i18n (>= 1.6, < 2)
minitest (>= 5.1)
mutex_m
tzinfo (~> 2.0)
base64 (0.1.1)
bigdecimal (3.1.4)
builder (3.2.4)
concurrent-ruby (1.2.2)
connection_pool (2.4.1)
crass (1.0.6)
drb (2.1.1)
ruby2_keywords
erubi (1.12.0)
i18n (1.14.1)
concurrent-ruby (~> 1.0)
io-console (0.6.0)
irb (1.8.3)
rdoc
reline (>= 0.3.8)
loofah (2.21.4)
crass (~> 1.0.2)
nokogiri (>= 1.12.0)
minitest (5.20.0)
mutex_m (0.1.2)
nokogiri (1.15.4-arm64-darwin)
racc (~> 1.4)
psych (5.1.1)
stringio
racc (1.7.1)
rack (3.0.8)
rack-session (2.0.0)
rack (>= 3.0.0)
rack-test (2.1.0)
rack (>= 1.3)
rackup (2.1.0)
rack (>= 3)
webrick (~> 1.8)
rails-dom-testing (2.2.0)
activesupport (>= 5.0.0)
minitest
nokogiri (>= 1.6)
rails-html-sanitizer (1.6.0)
loofah (~> 2.21)
nokogiri (~> 1.14)
railties (7.1.1)
actionpack (= 7.1.1)
activesupport (= 7.1.1)
irb
rackup (>= 1.0.0)
rake (>= 12.2)
thor (~> 1.0, >= 1.2.2)
zeitwerk (~> 2.6)
rake (13.0.6)
rdoc (6.5.0)
psych (>= 4.0.0)
reline (0.3.9)
io-console (~> 0.5)
ruby2_keywords (0.0.5)
sentry-rails (5.10.0)
railties (>= 5.0)
sentry-ruby (~> 5.10.0)
sentry-ruby (5.10.0)
concurrent-ruby (~> 1.0, >= 1.0.2)
stringio (3.0.8)
thor (1.2.2)
timeout (0.4.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
webrick (1.8.1)
zeitwerk (2.6.12)

PLATFORMS
arm64-darwin-22

DEPENDENCIES
annotate!
sentry-rails (~> 5.10)
sentry-ruby (~> 5.10)

BUNDLED WITH
2.4.10

0 comments on commit f8a38b4

Please sign in to comment.