process id is 928
sudo dtrace -n \
'ruby*:::method-entry { printf("-> %s %s\n",copyinstr(arg0),copyinstr(arg1)) }' \
-p 928| begin | |
| require 'bundler/inline' | |
| rescue LoadError => e | |
| $stderr.puts 'Bundler version 1.10 or later is required. Please update your Bundler' | |
| raise e | |
| end | |
| gemfile(true) do | |
| source 'https://rubygems.org' | |
| # Activate the gem you are reporting the issue against. |
| begin | |
| require 'bundler/inline' | |
| rescue LoadError => e | |
| $stderr.puts 'Bundler version 1.10 or later is required. Please update your Bundler' | |
| raise e | |
| end | |
| gemfile(true) do | |
| source 'https://rubygems.org' | |
| gem 'rails', github: 'rails/rails' |
| begin | |
| require 'bundler/inline' | |
| rescue LoadError => e | |
| $stderr.puts 'Bundler version 1.10 or later is required. Please update your Bundler' | |
| raise e | |
| end | |
| gemfile(true) do | |
| source 'https://rubygems.org' | |
| gem 'rails', github: 'rails/rails' |
| /* instance-initializers/fastboot/start-mirage.js */ | |
| /*global process*/ | |
| import { startMirage } from 'percy-web/initializers/ember-cli-mirage'; | |
| import config from '../../config/environment'; | |
| function startFastBootMirage() { | |
| if (config['ember-cli-mirage'] && config['ember-cli-mirage'].fastbootGlobal) { | |
| let port = config['ember-cli-mirage'].fastbootGlobal.port; | |
| return startMirage({ | |
| environment: 'development', |
| require 'webrick' | |
| require 'webrick/https' | |
| require 'webrick/httpproxy' | |
| require 'byebug' | |
| require 'net/http' | |
| # make sure /etc/host has percy.io as localhost | |
| API_HOST = 'percy.io' |
| # test-ransack-double-self-join.rb | |
| # This is a stand-alone test case. | |
| # Run it in your console with: `ruby test-ransack-scope-and-column-same-name.rb` | |
| # If you change the gem dependencies, run it with: | |
| # `rm gemfile* && ruby test-ransack-scope-and-column-same-name.rb` | |
| unless File.exist?('Gemfile') | |
| File.write('Gemfile', <<-GEMFILE) | |
| source 'https://rubygems.org' | |
| # Rails master |
| # test-ransack-join.rb | |
| # This is a stand-alone test case. | |
| # Run it in your console with: `ruby test-ransack-scope-and-column-same-name.rb` | |
| # If you change the gem dependencies, run it with: | |
| # `rm gemfile* && ruby test-ransack-scope-and-column-same-name.rb` | |
| unless File.exist?('Gemfile') | |
| File.write('Gemfile', <<-GEMFILE) | |
| source 'https://rubygems.org' | |
| # Rails master |
| # test-children.rb | |
| # This is a stand-alone test case. | |
| # Run it in your console with: `rubytest-children.rb` | |
| # If you change the gem dependencies, run it with: | |
| # `rm gemfile* && ruby test-children.rb` | |
| unless File.exist?('Gemfile') | |
| File.write('Gemfile', <<-GEMFILE) | |
| source 'https://rubygems.org' | |
| # Rails master |
| # frozen_string_literal: true | |
| begin | |
| require "bundler/inline" | |
| rescue LoadError => e | |
| $stderr.puts "Bundler version 1.10 or later is required. Please update your Bundler" | |
| raise e | |
| end | |
| gemfile(true) do |