Skip to content

Instantly share code, notes, and snippets.

@pixeltrix
pixeltrix / turbolinks_helpers.rb
Last active October 31, 2017 15:20
Assert redirect helper for Turbolinks (untested code)
@pixeltrix
pixeltrix / 20171004211734_add_timestamps_everywhere.rb
Created October 4, 2017 21:27
Migration to add timestamps easily to a bunch of tables
class AddTimestampsEverywhere < ActiveRecord::Migration[5.1]
def change
now = Time.current
%i[
candidates
evaluations
interviewers
questions
responses
@pixeltrix
pixeltrix / date_and_time_compatibility_test.rb
Created February 25, 2017 13:44
Enhanced Date/Time compatibility tests
require "abstract_unit"
require "active_support/time"
require "time_zone_test_helpers"
class DateAndTimeCompatibilityTest < ActiveSupport::TestCase
include TimeZoneTestHelpers
def setup
@utc_time = Time.utc(2016, 4, 23, 14, 11, 12)
@date_time = DateTime.new(2016, 4, 23, 14, 11, 12, 0)
@pixeltrix
pixeltrix / behaviour.rb
Last active February 24, 2017 17:03
Script to output behaviours of Time, Date and DateTime across Ruby versions
require 'date'
require 'time'
ENV['TZ'] = 'America/New_York'
time = Time.new(2017, 1, 1, 0, 0, 0, "+02:00").freeze
date = Date.new(2017, 1, 1).freeze
datetime = DateTime.new(2017, 1, 1, 0, 0, 0, Rational(2, 24)).freeze
# Time
puts "Time#to_time | #{RUBY_VERSION} "
@pixeltrix
pixeltrix / download-petitions.rb
Created February 22, 2017 15:34
Ruby script to download archived petition data
require 'csv'
require 'faraday'
require 'json'
require 'uri'
url = URI.parse('https://petition.parliament.uk/archived/petitions.json')
response = Faraday.get(url)
unless response.success?
@pixeltrix
pixeltrix / postgis21.rb
Last active September 4, 2018 22:09
Formula for install postgis-2.1 with the legacy [email protected] homebrew formula
class Postgis21 < Formula
desc "Adds support for geographic objects to PostgreSQL"
homepage "http://postgis.net"
url "http://pkgs.fedoraproject.org/repo/pkgs/postgis/postgis-2.1.8.tar.gz/c33923e37424978a1306ce461c1d14ed/postgis-2.1.8.tar.gz"
sha256 "7c2380b895fe7bda34c2e70deab3fcf4c12b13ab40d7501cdaa6fa36f1a6c662"
revision 1
def pour_bottle?
# Postgres extensions must live in the Postgres prefix, which precludes
# bottling: https://github.com/Homebrew/homebrew/issues/10247
@pixeltrix
pixeltrix / sphinx.rb
Last active October 23, 2016 14:35
Formula for installing Sphinx search engine 0.9.9 on Mac OS X Sierra and Homebrew 1.0
require 'formula'
class Sphinx < Formula
url 'http://sphinxsearch.com/files/archive/sphinx-0.9.9.tar.gz'
homepage 'http://www.sphinxsearch.com'
sha256 'bf8f55ffc095ff6b628f0cbc7eb54761811140140679a1c869cc1b17c42803e4'
depends_on 'homebrew/dupes/apple-gcc42'
resource 'stemmer' do
@pixeltrix
pixeltrix / instrument.rb
Created November 9, 2015 21:48
Simple example on how to count the number queries made by Active Record
# Activate the gem you are reporting the issue against.
gem 'activerecord', '4.2.4'
require 'active_record'
require 'minitest/autorun'
require 'logger'
# Ensure backward compatibility with Minitest 4
Minitest::Test = MiniTest::Unit::TestCase unless defined?(Minitest::Test)
# This connection will do for database-independent bug reports.
@pixeltrix
pixeltrix / sphinx20.rb
Last active October 13, 2018 17:54
Homebrew formula for sphinx 2.0.9
require 'formula'
class Sphinx20 < Formula
homepage 'http://www.sphinxsearch.com'
url 'http://sphinxsearch.com/files/sphinx-2.0.9-release.tar.gz'
sha256 'c4fb5d7951bc0831e46f102d17b5f32bbde11434ce3b00b20531dfe9e646869d'
head 'http://sphinxsearch.googlecode.com/svn/trunk/'
devel do
@pixeltrix
pixeltrix / http_client_comparison.rb
Created September 4, 2015 14:25
Compare different Faraday adapters against the parliament postcode to constituency API
begin
require 'bundler/inline'
rescue LoadError => e
$stderr.puts 'Bundler version 1.10 or later is required. Please update your Bundler'
raise e
end
gemfile(true) do
source 'https://rubygems.org'