github.com/grafana/pyroscope@v1.18.0/examples/language-sdk-instrumentation/ruby/rideshare_rails/Gemfile (about)

     1  source "https://rubygems.org"
     2  git_source(:github) { |repo| "https://github.com/#{repo}.git" }
     3  
     4  ruby "3.3.9"
     5  
     6  # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
     7  gem "rails", "~> 7.1.5", ">= 7.1.5.2"
     8  
     9  # Security updates for CVE-2025-24293
    10  gem "activestorage", "~> 7.1.5", ">= 7.1.5.2"
    11  
    12  # Security update for nokogiri CVE (GHSA-353f-x4gh-cqq8)
    13  gem "nokogiri", ">= 1.18.9"
    14  
    15  # The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
    16  gem "sprockets-rails"
    17  
    18  # Use sqlite3 as the database for Active Record
    19  gem "sqlite3", "~> 1.4"
    20  
    21  # Use the Puma web server [https://github.com/puma/puma]
    22  gem "puma", "~> 6.0"
    23  
    24  gem 'pyroscope', '= 0.6.7'
    25  
    26  gem "pyroscope-otel", "~> 0.1.1"
    27  gem 'opentelemetry-sdk', "~> 1.2.0"
    28  gem 'opentelemetry-exporter-jaeger', '~> 0.22.0'
    29  gem 'opentelemetry-instrumentation-rails' # it's top span is "http get" which is not super usefull for demo
    30  
    31  
    32  # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
    33  gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
    34  
    35  group :development, :test do
    36    # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
    37    gem "debug", platforms: %i[ mri mingw x64_mingw ]
    38  end
    39  
    40  group :development do
    41    # Speed up commands on slow machines / big apps [https://github.com/rails/spring]
    42    # gem "spring"
    43  end