Copy the full list of failures from a CircleCI build with one click!
Create a new bookmark in your browser, and use the minified cci_failures.min.js code as the bookmark's URL.
| # frozen_string_literal: true | |
| require "bundler/inline" | |
| gemfile(true) do | |
| source "https://rubygems.org" | |
| gem "rails" | |
| # If you want to test against edge Rails replace the previous line with this: | |
| # gem "rails", github: "rails/rails", branch: "main" |
| # frozen_string_literal: true | |
| require 'bundler/inline' | |
| gemfile(true, quiet: true) do | |
| source 'https://rubygems.org' | |
| gem 'grape', path: '.' | |
| gem 'zeitwerk' | |
| end |
| comm -23 <(rbenv versions --bare) <(find . -name '.ruby-version' -exec cat {} \; | cut -d'@' -f1 | sort | uniq) |
| cask 'firefox-45esr' do | |
| version '45.4.0' | |
| sha256 '4e40d588b838709822bd3ccc1edbd13f055df8daf73d1024bcc6c9cbe07ef1e9' | |
| url "https://download-installer.cdn.mozilla.net/pub/firefox/releases/#{version}esr/mac/en-US/Firefox%20#{version}esr.dmg" | |
| name 'Mozilla Firefox' | |
| homepage 'https://www.mozilla.org/en-US/firefox/organizations/' | |
| license :mpl | |
| app 'Firefox.app' |
| agvim () { | |
| ag -l $* | xargs -o vim | |
| } |
| let g:vroom_write_all = 1 | |
| let g:vroom_bundle_exec = 0 | |
| let g:vroom_use_binstubs = 1 | |
| let g:vroom_spec_command = 'rspec --format d' |
| alias toggle_my_env_variable='[ -z "$MY_ENV_VARIABLE" ] \ | |
| && export MY_ENV_VARIABLE=true \ | |
| || unset MY_ENV_VARIABLE; \ | |
| [ -z "$MY_ENV_VARIABLE" ] \ | |
| && echo "MY_ENV_VARIABLE if OFF" \ | |
| || echo "MY_ENV_VARIABLE is ON"' |
| # 3.2.17 | |
| MyModel.new(start_date: '12/03/09') | |
| => #<MyModel id: nil, start_date: "2009-12-03'> | |
| # 4.0.4 | |
| MyModel.new(start_date: '12/03/09') | |
| => #<MyModel id: nil, start_date: "0012-03-09"> |