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
# Enforce that all models define their accessible attributes | |
config.active_record.whitelist_attributes = 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
// iframe auto-height | |
(function ($) { | |
$.fn.autoheight = function () { | |
return this.each(function () { | |
var iframe = $(this); | |
var height = iframe.contents().find('body').height() + 20; | |
iframe.height(height); | |
}); |
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
- if Rails.env.test? | |
:javascript | |
$.fx.off = 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
# ./Gemfile | |
source "http://rubygems.org" | |
gem "sinatra", "~> 1.3.1" | |
group :test do | |
gem "rspec", "~> 2.7.0" | |
gem "rack-test", "~> 0.6.1" | |
gem "fuubar", "~> 0.0.6" |
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
words = ['qwerty', 'abcdef', 'xyzzyx'] | |
SecureRandom.stub(:base64) { words.shift } | |
SecureRandom.base64.should eq('qwerty') | |
SecureRandom.base64.should eq('abcdef') | |
SecureRandom.base64.should eq('xyzzyx') |
NewerOlder