This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| RSpec::Matchers.define :be_a_hash_like do |expected_hash| | |
| match do |actual_hash| | |
| matching_results = actual_hash == expected_hash | |
| unless matching_results | |
| system( | |
| "git --no-pager diff $(echo '#{JSON.pretty_generate(expected_hash)}' | git hash-object -w --stdin) " + | |
| "$(echo '#{JSON.pretty_generate(actual_hash)}' | git hash-object -w --stdin) --word-diff", | |
| out: $stdout, | |
| err: :out | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| bundle exec rails webpacker:binstubs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| source "https://rubygems.org/" | |
| ... | |
| ... | |
| gem "statsd-instrument" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module AlertConfirmer | |
| class << self | |
| def reject_confirm_from &block | |
| handle_js_modal 'confirm', false, &block | |
| end | |
| def accept_confirm_from &block | |
| handle_js_modal 'confirm', true, &block | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class AppleRecord < Record | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| angular.module('myApp').factory 'FormHelper', [-> | |
| class FormHelper | |
| constructor: (scope, object, formName) -> | |
| @scope = scope | |
| @formName = formName | |
| @object = -> @scope[object] | |
| scope.$watch "#{formName}.$pristine", (pristine) => | |
| @unsaved = !pristine | |
| @saved = false unless pristine | |
| scope.$watch "#{formName}.$valid", (valid) => |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ArtistsController < ApplicationController | |
| def create | |
| @form = create_new_form | |
| workflow = Workflows::ArtistWorkflow.new(@form, params[:artist]) | |
| workflow.process do |obj| | |
| return respond_with obj | |
| end | |
| render :new |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module ActionController | |
| class Metal | |
| attr_internal :cached_content_for | |
| end | |
| module Caching | |
| module Actions | |
| def _save_fragment(name, options) | |
| return unless caching_allowed? |