Sha256: a7fe58bf56b98f2d6e7c49beba10ba34527043e5f550b860eb0c721ffa0d921f
Contents?: true
Size: 1.28 KB
Versions: 3
Compression:
Stored size: 1.28 KB
Contents
source 'https://rubygems.org' git_source(:github) { |repo| "https://github.com/#{repo}.git" } gem 'rails', '~> 5' gem 'haml-rails' gem 'activerecord', require: false gem 'pg' gem 'sequel', '= 5.20.0', require: false gem 'sequel-rails', require: false gem 'sequel_secure_password', require: false appmap_path = \ # Support debugging inside the container with volume-mounted source if File.directory?('/src/appmap-ruby') '/src/appmap-ruby' elsif File.exist?('../../../appmap.gemspec') '../../..' end if appmap_path # Set the branch parameter, so that 'bundle config local.appmap' will work appmap_branch = Dir.chdir appmap_path do `git rev-parse --abbrev-ref HEAD`.strip end end appmap_options = \ if appmap_path && appmap_branch { git: appmap_path, branch: appmap_branch } elsif appmap_path { path: appmap_path } else {} end.merge(require: %w[appmap appmap/railtie]) gem 'appmap', appmap_options group :development, :test do gem 'cucumber-rails', require: false gem 'rspec-rails' # Required for Sequel, since without ActiveRecord, the Rails transactional fixture support # isn't activated. gem 'database_cleaner' # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'pry-byebug' end group :development do end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
appmap-0.39.1 | spec/fixtures/rails5_users_app/Gemfile |
appmap-0.39.0 | spec/fixtures/rails5_users_app/Gemfile |
appmap-0.38.1 | spec/fixtures/rails5_users_app/Gemfile |