Skip to content

Instantly share code, notes, and snippets.

View joshdover's full-sized avatar

Josh Dover joshdover

View GitHub Profile
@joshdover
joshdover / application.html.erb
Last active December 25, 2015 03:49
Rails helper for automatically generating mixpanel tracking for links.
<!-- Include Mixpanel and init before this. -->
<!-- Place at the bottom of your layout (ex: app/views/layouts/application.html.erb) -->
<% if content_for :mixpanel %>
<%= javascript_tag(yield :mixpanel) %>
<% end %>
@joshdover
joshdover / Gemfile
Created March 14, 2013 23:10
Standalone RSpec + Capybara Suite
source "https://rubygems.org"
gem "rspec"
gem "capybara"
gem "headless"
@joshdover
joshdover / gauge_view.js.coffee
Last active December 10, 2015 14:58
GaugeView for Batman using JustGage
class Albedo.GaugeView extends Batman.View
@option 'title', 'max', 'min', 'value', 'better'
@::on 'appear', ->
@makeGauge()
makeGauge: ->
node = $(@get('node'))
node.attr 'id', @get('title')