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
# RSpec matcher to spec delegations. | |
# Forked from https://gist.github.com/ssimeonov/5942729 with fixes | |
# for arity + custom prefix. | |
# | |
# Usage: | |
# | |
# describe Post do | |
# it { is_expected.to delegate(:name).to(:author).with_prefix } # post.author_name | |
# it { is_expected.to delegate(:name).to(:author).with_prefix(:any) } # post.any_name | |
# it { is_expected.to delegate(:month).to(:created_at) } |
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 ConditionalValidations | |
extend ActiveSupport::Concern | |
attr_accessor :conditional_validations | |
def conditional_validations | |
@conditional_validations || [] | |
end | |
def conditionally_validate(attribute, options=nil) |
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' | |
Benchmark.ips do |x| | |
RESULT = [1] | |
x.report('first') do |times| | |
i = 0 | |
while i < times | |
id = RESULT.first | |
i += 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
import sublime, sublime_plugin, os | |
# ------------------------------------------- | |
# You will need to create a key mapping for this, something like: | |
# { "keys": ["alt+e"], "command": "switch_to_file" } | |
# ------------------------------------------- | |
class SwitchToFileCommand(sublime_plugin.WindowCommand): | |
def run(self): | |
self.display_list = [] | |
self.views = [] |
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
source :gemcutter | |
gem "rails", "~> 2.3.5" | |
gem "sqlite3-ruby", :require => "sqlite3" | |
# bundler requires these gems in all environments | |
# gem "nokogiri", "1.4.2" | |
# gem "geokit" | |
group :development do | |
# bundler requires these gems in development |