Sha256: c2a81ebe28d3c5edba39d07ea2c05e0ccfcb7d2773ee566f82a656f8b8332862

Contents?: true

Size: 1.31 KB

Versions: 11

Compression:

Stored size: 1.31 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 '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

11 entries across 11 versions & 1 rubygems

Version Path
appmap-0.27.0 spec/fixtures/rails_users_app/Gemfile
appmap-0.26.1 spec/fixtures/rails_users_app/Gemfile
appmap-0.26.0 spec/fixtures/rails_users_app/Gemfile
appmap-0.25.2 spec/fixtures/rails_users_app/Gemfile
appmap-0.25.0 spec/fixtures/rails_users_app/Gemfile
appmap-0.23.0 spec/fixtures/rails_users_app/Gemfile
appmap-0.22.0 spec/fixtures/rails_users_app/Gemfile
appmap-0.21.0 spec/fixtures/rails_users_app/Gemfile
appmap-0.20.0 spec/fixtures/rails_users_app/Gemfile
appmap-0.19.0 spec/fixtures/rails_users_app/Gemfile
appmap-0.18.1 spec/fixtures/rails_users_app/Gemfile