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
class AddFieldsToDelayedJobs < ActiveRecord::Migration | |
def change | |
add_column :delayed_jobs, :signature, :string | |
add_index :delayed_jobs, :signature | |
end | |
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
# Extend in your test_helper.rb or any other `/support` setup you have. | |
class ActiveSupport::TestCase | |
# === NOTICE: | |
# Ensure you have included `ActionMailer::TestHelper` in the test class .. | |
# | |
# This method performs any enqueued job during tests manually, | |
# Helpful when testing the queueing of your jobs and then the result of their execution. | |
# | |
# === Author: (abarrak, danielpuglisi) |
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 StaticMapHelper | |
def static_map_for(location, options = {}) | |
params = { | |
center: [location.latitude, location.longitude].join(","), | |
zoom: 15, | |
size: "300x300", | |
scale: 2, | |
markers: [location.latitude, location.longitude].join(","), | |
sensor: true, |
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
$ -> | |
$(document).on("page:change", -> | |
sumo = document.createElement("script") | |
sumo.type = "text/javascript" | |
sumo.async = true | |
sumo.src = "//load.sumome.com/" | |
sumo.setAttribute('data-sumo-site-id', 'your sumo me ID') | |
(document.getElementsByTagName("head")[0] or document.getElementsByTagName("body")[0]).appendChild(sumo) | |
) |
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
# bring up the vagrant VM | |
sudo apt-get install vagrant | |
git clone https://bitbucket.org/puffnfresh/vagrant-haskell-heroku.git | |
cd vagrant-haskell-heroku | |
vagrant up | |
vagrant ssh | |
# run this in vagrant shell | |
cabal update | |
cabal install cabal-install |
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
# Hook to save the html page of every failed features into the temp | |
# # file directory taht it can be checked after cucumber has finished running. | |
require 'fileutils' | |
FAILED_FEATURES_PAGES_PATH = File.join Rails.root, 'tmp', 'failed_features' | |
FAILED_FEATURES_IMAGES_PATH = File.join Rails.root, 'tmp', 'failed_features_images' | |
FileUtils.rm_rf FAILED_FEATURES_PAGES_PATH | |
FileUtils.rm_rf FAILED_FEATURES_IMAGES_PATH |
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
# Convert a locations response to an Array of Location Objects | |
# | |
# response - The Hash object from an API response | |
# | |
# Returns an array of Location objects, returns nil if the Hash is empty | |
def self.objectify(response) | |
response.empty? ? nil : response.map {|station| Rtransport::Location.new(station)} | |
end |