This file contains 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
# Library to measure time using the Process::CLOCK_MONOTONIC. | |
# | |
# @example Usage | |
# timer = MicroTimer.start | |
# sleep 0.1 # some process to measure | |
# puts timer.duration.milliseconds | |
# sleep 0.1 # another process to measure | |
# puts timer.duration.seconds | |
# | |
# @example Usage with block |
This file contains 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
#!/usr/bin/env ruby | |
# Example usage: | |
# | |
# script/changelog --init | |
# | |
# script/changelog v2.23.0 v2.23.1 | |
# | |
# script/changelog v2.23.0 HEAD -r v2.23.1 | |
# |
This file contains 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
# See https://gist.github.com/naps62/a7dcce679a45592714ea6477108f0419 | |
# See https://github.com/rails/webpacker/issues/59 | |
# See https://raw.githubusercontent.com/codeforamerica/open311status/4fe31fec5e70e55c313616d0a1e11f7f7f460528/spec/support/webpack.rb | |
module WebpackTestBuild | |
TS_FILE = Rails.root.join('tmp', 'webpack-spec-timestamp') | |
PACK_MANIFEST = Rails.root.join('public', 'packs', 'manifest.json') | |
JAVASCRIPT_FILES = Rails.root.join('app', 'javascript', '**', '*') | |
class << self |
This file contains 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 Steps | |
class Step | |
DEFAULT_VERSION = 2 | |
def self.new(attrs = {}) | |
version = attrs.fetch(:step_version, DEFAULT_VERSION) | |
klass = "StepV#{version}".constantize | |
klass.new(attrs) | |
end | |
end |
This file contains 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 Query | |
attr_reader :query | |
def initialize | |
@query = { b: 2 } | |
end | |
def deep_set(*keys, val) | |
key = keys.pop | |
keys.inject(query) { |hsh, k| hsh.key?(k) ? hsh[k] : hsh[k] = {}; hsh[k] }[key] = val |
This file contains 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
require 'jbuilder' | |
Post = Struct.new(:id, :title, :content, :comments) | |
Comment = Struct.new(:id, :author, :body) | |
class PostWithCommentsSerializer | |
attr_reader :object | |
def initialize(object) |
This file contains 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 FeatureFlag defines and stores feature flags | |
# | |
# @example Configuration | |
# | |
# FEATURE = FeatureFlag.new do |feature| | |
# feature.define(:new_user_profile) do |user_id:| | |
# Admin.where(user_id: user_id).exists? | |
# end | |
# | |
# feature.define(:third_party_analytics) do |
This file contains 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 Mongo::Retry provides retry support on mongo connection or operation failures | |
# | |
# @note Bit enhanced replacement of Mongo::Retryable (included Mongo Ruby Driver since 2.1.0) | |
# | |
# @see https://jira.mongodb.org/browse/SERVER-14322 | |
# @see https://gist.github.com/bhbryant/1230938 | |
# @see https://www.compose.com/articles/your-drivers-are-not-magic-testing-your-application-for-high-availability/ | |
# @see https://gist.github.com/reidmorrison/1498297 | |
# @see https://github.com/reidmorrison/mongo_ha | |
# @see https://github.com/mongodb/mongo-ruby-driver/blob/master/lib/mongo/retryable.rb |
This file contains 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 ActiveRecord | |
module Finder | |
module Scope | |
extend ActiveSupport::Concern | |
attr_reader :relation | |
def initialize(relation) | |
@relation = relation | |
end |