Sha256: 0b8fe79d24687ca0705175d1a426b8ea9a28994caea6c8f9b58860ac5ec4388e
Contents?: true
Size: 1.35 KB
Versions: 16
Compression:
Stored size: 1.35 KB
Contents
source 'https://rubygems.org' git_source(:github) { |repo| "https://github.com/#{repo}.git" } # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' gem 'rails', '~> 5.2.3' 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
16 entries across 16 versions & 1 rubygems