github.com/pyroscope-io/pyroscope@v0.37.3-0.20230725203016-5f6947968bd0/examples/ruby/rideshare_rails/Gemfile (about) 1 source "https://rubygems.org" 2 git_source(:github) { |repo| "https://github.com/#{repo}.git" } 3 4 ruby "2.7.4" 5 6 # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main" 7 gem "rails", "~> 7.0.2", ">= 7.0.2.3" 8 9 # The original asset pipeline for Rails [https://github.com/rails/sprockets-rails] 10 gem "sprockets-rails" 11 12 # Use sqlite3 as the database for Active Record 13 gem "sqlite3", "~> 1.4" 14 15 # Use the Puma web server [https://github.com/puma/puma] 16 gem "puma", "~> 5.0" 17 18 gem "pyroscope", "~> 0.5.2" 19 20 gem "pyroscope-otel", "~> 0.1.1" 21 gem 'opentelemetry-sdk', "~> 1.2.0" 22 gem 'opentelemetry-exporter-jaeger', '~> 0.22.0' 23 gem 'opentelemetry-instrumentation-rails' # it's top span is "http get" which is not super usefull for demo 24 25 26 # Windows does not include zoneinfo files, so bundle the tzinfo-data gem 27 gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ] 28 29 group :development, :test do 30 # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem 31 gem "debug", platforms: %i[ mri mingw x64_mingw ] 32 end 33 34 group :development do 35 # Speed up commands on slow machines / big apps [https://github.com/rails/spring] 36 # gem "spring" 37 end