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
org_posts_dir = "org_posts" # directory under source | |
# From http://www.ewal.net/2012/09/08/octopress-customizations/ | |
# Modified to have default flag of true to include drafts | |
desc "Rename files in the posts directory if the filename does not match the post date in the YAML front matter" | |
task :rename_posts do | |
rename_posts_in_dir "#{source_dir}/#{posts_dir}", "markdown" | |
# remove next line if you're you're not using org-mode | |
rename_posts_in_dir "#{source_dir}/#{org_posts_dir}", "org" |
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
# Based on blog post http://www.ewal.net/2012/09/08/octopress-customizations/ | |
# Modified to option of either all or no drafts, and also to use org-mode files | |
desc "Redate files in the posts directory if the filename does not match the post date in the YAML front matter. Note, URLs based on 'date' metadata, so this shouldn't break any links" | |
task :redate_posts do | |
redate_posts true, source_dir, posts_dir, org_posts_dir | |
end | |
desc "Redate files in the posts directory, skipping drafts, if the filename does not match the post date in the YAML front matter. Note, URLs based on 'date' metadata, so this shouldn't break any links" | |
task :redate_posts_no_drafts do | |
redate_posts false, source_dir, posts_dir, org_posts_dir |
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
# IMPT: | |
# Configure ENV['LOG_LEVEL'] to be one of DEBUG, INFO, WARN, ERROR, FATAL | |
# figure out where we are being loaded from | |
if $LOADED_FEATURES.grep(/spec\/spec_helper\.rb/).any? | |
begin | |
raise "foo" | |
rescue => e | |
puts <<-MSG | |
=================================================== |
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
# http://soupmatt.com/fixing-bundlewithout-on-heroku-cedar | |
# Hack to make heroku work. Works b/c on heroku, the ENV['HOME'] will be 'app' | |
# and this will then return test, which heroku knows to exclude | |
def hg(g) | |
(ENV['HOME'].gsub('/', '') == 'app' ? 'test' : g) | |
end | |
group :test, hg(:ci) do | |
gem 'simplecov', require: false |
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.configure do |config| | |
config.add_setting(:seed_tables) | |
config.seed_tables = %w(seed_table_1 seed_table_2) | |
config.before(:suite) do | |
DatabaseCleaner.clean_with(:truncation, except: config.seed_tables) | |
end | |
config.before(:each) do | |
DatabaseCleaner.strategy = :transaction |
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
def fill_in_autocomplete(selector, value) | |
script = %Q{ $('#{selector}').val('#{value}').focus().keypress() } | |
page.execute_script(script) | |
end | |
def choose_autocomplete(text) | |
expect(page).to have_css(".tt-suggestion p", text: text, visible: false) | |
script = %Q{ $('.tt-suggestion:contains("#{text}")').click() } | |
page.execute_script(script) | |
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
group :spec do | |
guard('rspec', all_on_start: false, | |
all_after_pass: false, | |
run_all: { parallel: true, parallel_cli: '-n 4' }, | |
cmd: 'zeus rspec', | |
notification: true, | |
failed_mode: :keep) do | |
watch(%r{^spec/.+_spec\.rb$}) | |
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } | |
watch("spec/spec_helper.rb") { "spec" } |
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
--color | |
--require spec_helper | |
--require rspec/instafail | |
--format RSpec::Instafail | |
--backtrace | |
--format documentation |
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
def run_command_raise_if_error(command) | |
puts "Executing: #{command}" | |
result = %x[#{command}] | |
raise "rake task failed..........\n#{result}" if result.include?('rake aborted!') | |
end | |
def run_rake_command_raise_if_error(command) | |
run_command_raise_if_error("bundle exec rake #{command}") | |
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
set-option -g default-shell /bin/zsh | |
# https://github.com/ChrisJohnsen/tmux-MacOSX-pasteboard | |
# http://brentvatne.github.com/tmux-copy-paste/ | |
# this next command takes the current buffer and puts it on the OS clipboard | |
#bind Y run "tmux save-buffer - | reattach-to-user-namespace pbcopy" | |
# | |
# I don't understand why the next would be useful | |
# bind P run "tmux paste-buffer" | |
bind y copy-mode |
OlderNewer