Skip to content
View estum's full-sized avatar
Block or Report

Block or report estum

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. bootinq bootinq Public

    Rails Boot Inquirer: Allows to select which bundle groups to boot in the current rails process

    Ruby 2 1

  2. dry-types-tuple dry-types-tuple Public

    The Tuple type implementation for Dry::Types

    Ruby 7

  3. drymm drymm Public

    Universal meta mapper for dry-logic & dry-types.

    Ruby

  4. yieldable.rb: Memoized #to_proc for ... yieldable.rb: Memoized #to_proc for any callable object to use as a block argument with the "&" operator.
    1
    # This module can be used to easy make callable object or class
    2
    # to be used as a block argument with the <tt>&</tt> operator. It just
    3
    # implements the +to_proc+ method.
    4
    #
    5
    # == Examples:
  5. ActiveRecord's JOIN clause string wr... ActiveRecord's JOIN clause string wrapper class
    1
    # frozen_string_literal: true
    2
    
                  
    3
    class Joint < String
    4
      _patterns  =  [[/LATERAL$/, 'ON true'], [/^(?:NATURAL|CROSS)/, '']].deep_freeze!
    5
      _exception = "expected one non-blank argument of `on' or `using' unless type matches one of: #{_patterns.map(&:first).inspect}"
  6. Map Map
    1
    # frozen_string_literal: true
    2
    
                  
    3
    require 'concurrent/map'
    4
    
                  
    5
    # {include:file:concurrent/map.rb}