Skip to content

Instantly share code, notes, and snippets.

en:
short_names:
default:
male: "Mr %{surname}"
female: "Ms %{surname}"
full_names:
default:
male: "%{given_name} %{surname}"
female: "%{given_name} %{surname}"
not_specified: "%{given_name} %{surname}"
@pixeltrix
pixeltrix / unsafe_query_check.rb
Created May 20, 2014 11:00
Tool to report whether a Rails application may be vulnerable to 'Unsafe Query Risk in Active Record'
# Run this code inside your Rails application
#
# Rails 2.3:
# script/runner unsafe_query_check.rb
#
# Rails 3.0 and later
# rails runner unsafe_query_check.rb
connection = ActiveRecord::Base.connection
tables = connection.tables
@pixeltrix
pixeltrix / awaiting_moderation_test.rb
Created May 16, 2014 08:30
Response to James Coglan's 'An ActiveRecord conumdrum': https://gist.github.com/jcoglan/4ccf434cd2e1305d1c5c
require 'active_record'
require 'logger'
require 'minitest/autorun'
ActiveRecord::Base.establish_connection(adapter: 'sqlite3', database: ':memory:')
ActiveRecord::Base.logger = Logger.new(STDOUT)
ActiveRecord::Schema.define do
create_table :texts do |t|
t.string :title
@pixeltrix
pixeltrix / exceptions_test.rb
Created January 6, 2014 13:47
Test handling of exceptions in integration tests
require 'action_controller/railtie'
require 'minitest/autorun'
class TestApplication < Rails::Application
config.eager_load = false
config.root = File.dirname(__FILE__)
config.session_store :cookie_store, key: 'cookie_store_key'
config.secret_token = 'secret_token'
config.secret_key_base = 'secret_key_base'
end
@pixeltrix
pixeltrix / default_url_options.rb
Created January 6, 2014 06:17
Where to put default_url_options
require 'action_controller/railtie'
require 'minitest/autorun'
class RoutingApp < Rails::Application
config.eager_load = false
config.root = File.dirname(__FILE__)
config.session_store :cookie_store, key: 'session'
config.secret_key_base = 'secret'
end
@pixeltrix
pixeltrix / optimized_routes.rb
Last active November 23, 2018 07:32
Benchmark of changing optimized route generation to pre-splitting the route versus using gsub with a complex route
require 'benchmark/ips'
require 'action_controller/railtie'
ROUTE = '/posts/:post_id/comments/:id.:format'
PARTS = [:post_id, :id, :format]
OPTIMIZED = ["/", "posts", "/", :post_id, "/", "comments", "/", :id, ".", :format]
KLASS = ActionDispatch::Journey::Router::Utils
def optimized_helper_1(*args)
path = ROUTE.dup
@pixeltrix
pixeltrix / optimized_routes.rb
Last active January 2, 2016 06:09
Benchmark of changing optimized route generation to pre-splitting the route versus using gsub with a simple route
require 'benchmark/ips'
require 'action_controller/railtie'
ROUTE = '/posts/:id'
PARTS = [:id]
OPTIMIZED = ["/", "posts", "/", :id]
SEPARATOR = '/'
KLASS = ActionDispatch::Journey::Router::Utils
def optimized_helper_1(*args)
@pixeltrix
pixeltrix / rails-13537.rb
Created December 30, 2013 10:42
Test case for Ruby on Rails issue #13537 - https://github.com/rails/rails/issues/13537
require 'action_controller/railtie'
require 'minitest/autorun'
class RoutingApp < Rails::Application
config.eager_load = false
config.root = File.dirname(__FILE__)
config.session_store :cookie_store, key: 'session'
config.secret_key_base = 'secret'
end
@pixeltrix
pixeltrix / comparison.rb
Last active December 31, 2015 17:39
Comparison of functional tests vs. integration tests using current implementation and a simple implementation using Rack::Test
require 'benchmark/ips'
require "action_controller/railtie"
class BlogApplication < Rails::Application
config.eager_load = false
config.root = File.dirname(__FILE__)
config.session_store :cookie_store, key: 'session'
config.secret_key_base = 'secret'
end
@pixeltrix
pixeltrix / atom.xml.builder
Last active December 31, 2015 08:59
Lightweight template rendering for rake tasks, background jobs, etc. using Tilt template engine.
# Feed URLs need to be explict passed as options because there is no request object
atom_feed(
id: "tag:weblog.rubyonrails.org,2005:/feed/atom",
root_url: "http://weblog.rubyonrails.org/",
url: "http://weblog.rubyonrails.org/feed/atom.xml"
) do |feed|
feed.title("Riding Rails")
feed.updated(@posts.first.updated_at)
@posts.each do |post|