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
# frozen_string_literal: true | |
=begin | |
Sample one-file app to try to reproduce an issue with Capybara + Apparition: | |
https://github.com/twalpole/apparition/issues/40 | |
Running the file using `ruby` causes it to fail and log the following response: | |
log: -> RESPONSE: "" "success" {"readyState":4,"responseText":"","status":200,"statusText":"OK"} |
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 'active_support/all' | |
class RailsConfig | |
class Options < ActiveSupport::OrderedOptions | |
def initialize(value = nil) | |
value.each_pair { |k, v| set_value k, v } if value.is_a?(Hash) | |
end | |
def method_missing(meth, *args) | |
if meth =~ /=$/ |
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
pt-BR: | |
devise: | |
confirmations: | |
confirmed: 'Sua conta foi confirmada com sucesso.' | |
send_instructions: 'Dentro de minutos, você receberá um e-mail com instruções para a confirmação da sua conta.' | |
send_paranoid_instructions: 'Se o seu endereço de e-mail estiver cadastrado, você receberá uma mensagem com instruções para confirmação da sua conta.' | |
failure: | |
already_authenticated: 'Você já está logado.' | |
inactive: 'Sua conta ainda não foi ativada.' | |
invalid: 'E-mail ou senha inválidos.' |
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 'benchmark/ips' | |
ARRAY = [1,2,3,1,'2',4,'5',6,7,8,9,'10'] | |
Benchmark.ips do |x| | |
x.report("while") { | |
hash = {} | |
index = 0 | |
length = ARRAY.length |
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 | |
require 'socket' | |
test_file = ARGV[0] | |
socket = UNIXSocket.new('testing.sock') | |
socket.write(test_file) | |
socket.close_write |
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 'active_record' | |
require 'active_record/base' | |
module ActiveRecord | |
module CVE123456 | |
def define_attribute_methods | |
# .... | |
raise "OMG Monkey Patch!" | |
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
# app/inputs/hour_input.rb | |
class HourInput < SimpleForm::Inputs::Base | |
def input | |
@builder.select(attribute_name, hour_options, { :selected => selected_value }, { :class => "input-medium" }) | |
end | |
private | |
# The "Selecione..." string could also be translated with something like: I18n.t("helpers.select.prompt') | |
def hour_options |
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 'benchmark' | |
TIMES = 100000 | |
HASH = { as: :fuu } | |
Benchmark.bm(25) do |x| | |
x.report('[:as] (existing)') do | |
TIMES.times do | |
HASH[:as] || :default | |
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
define_method '<=>_with_infinity' do |other| | |
if other.class == self.class | |
public_send('<=>_without_infinity', other) | |
else | |
infinite = try(:infinite?) | |
other_infinite = other.try(:infinite?) | |
# inf <=> inf | |
if infinite && other_infinite | |
infinite <=> other_infinite |
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 'benchmark/ips' | |
require 'bigdecimal' | |
Benchmark.ips do |x| | |
x.report("== true") { | |
BigDecimal('3') == true | |
} | |
x.report("TrueClass") { | |
TrueClass === BigDecimal('3') |
NewerOlder