Skip to content

Instantly share code, notes, and snippets.

View joshk's full-sized avatar
🥸

Josh Kalderimis joshk

🥸
  • Valued
  • Wellington, NZ
  • 01:58 (UTC +02:00)
View GitHub Profile

Keybase proof

I hereby claim:

  • I am joshk on github.
  • I am joshk (https://keybase.io/joshk) on keybase.
  • I have a public key whose fingerprint is D385 B708 3468 71EC 11C5 604C DBC6 767D 5A6F 8206

To claim this, I am signing this object:

#travis.yml
language: ruby
rvm: 2.0.0
addons:
postgresql: "9.3"
cache: bundler
// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
// Thanks to http://henrik.nyh.se/2008/05/rails-authenticity-token-with-jquery for the ajaxSend advice
// Adds the authenticity token to each request when needed - used in conjunction with
// <%= javascript_tag "var AUTH_TOKEN = #{form_authenticity_token.inspect};" if protect_against_forgery? %>
$(document).ajaxSend(function(event,request,settings){
if (typeof(AUTH_TOKEN) == "undefined") return;
settings.data = settings.data || "";
module ActionView::Helpers::TextHelper
def truncate(text, *args)
options = args.extract_options!
# support either old or Rails 2.2 calling convention:
unless args.empty?
options[:length] = args[0] || 30
options[:omission] = args[1] || "..."
end
options.reverse_merge!(:length => 30, :omission => "...")
module ScopedTags
module ActiveRecordAdditions
def self.included(base)
base.class_eval do
def self.scoped_tags(contexts, options = nil)
cattr_accessor :tag_contexts
raise ScopedTagsError, 'context is required for scoped-tags setup' if contexts.blank?
Then /^I should see "([^\"]*)" in "([^\"]*)"$/ do |text, selector|
response_body.should have_tag(selector, /#{Regexp.escape(text)}/)
end
module Tom
class << self
attr_accessor :dick
end
end
Tom.dick = 'harry'
@joshk
joshk / opacity.sass
Created November 22, 2009 20:48 — forked from Narnach/opacity.sass
/ This SASS function makes it easy to get cross-browser opacity.
/
/ Firefox and Safari use CSS opacity.
/ Internet Explorer 7 and 8 each require their own flavor of the opacity alpha filter.
/
/ See http://www.quirksmode.org/css/opacity.html for more info on opacity.
/
/ Pass an opacity value between 0.0 and 1.0
=opacity(!value)
:opacity= !value
@joshk
joshk / deploy.rb
Created December 6, 2009 12:47 — forked from kpumuk/deploy.rb
namespace :deploy do
desc 'Bundle and minify the JS and CSS files'
task :precache_assets, :roles => :app do
root_path = File.expand_path(File.dirname(__FILE__) + '/..')
jammit_path = Dir["#{root_path}/vendor/gems/jammit-*/bin/jammit"].first
yui_lib_path = Dir["#{root_path}/vendor/gems/yui-compressor-*/lib"].first
assets_path = "#{root_path}/public/assets"
# Precaching assets
run_locally "ruby -I#{yui_lib_path} #{jammit_path}"
namespace :bundler do
task :install, :roles => :app, :except => { :no_release => true } do
run("gem install bundler --source=http://gemcutter.org")
end
task :symlink_vendor, :roles => :app, :except => { :no_release => true } do
shared_gems = File.join(shared_path, 'vendor/gems/ruby/1.8')
release_gems = "#{release_path}/vendor/gems/ruby/1.8"
# if you don't commit your cache, add cache to this list
%w(gems specifications).each do |sub_dir|