I hereby claim:
- I am vesan on github.
- I am vesan (https://keybase.io/vesan) on keybase.
- I have a public key whose fingerprint is 170B 9C28 719A DB97 3711 EA7B E681 FE54 DF8F C3E3
To claim this, I am signing this object:
# from: https://github.com/sideshowcoder/active_merchant/blob/192f49762172dc41450d7a3605158d45eb55b83b/lib/active_merchant/billing/gateways/paypal_bogus.rb | |
require File.dirname(__FILE__) + '/paypal/paypal_common_api' | |
require File.dirname(__FILE__) + '/paypal/paypal_express_response' | |
require File.dirname(__FILE__) + '/paypal_express_common' | |
module ActiveMerchant #:nodoc: | |
module Billing #:nodoc: | |
class PaypalBogusGateway < BogusGateway |
I hereby claim:
To claim this, I am signing this object:
module ActionMailerLocalizationHelpers | |
def using_locale(locale, &block) | |
original_locale = I18n.locale | |
I18n.locale = locale | |
return_value = yield | |
I18n.locale = original_locale | |
return_value | |
end | |
end |
# From: http://www.broadcastingadam.com/2012/03/generating_urls_whenever_and_wherever_you_want/ | |
## Class | |
class Router | |
include Rails.application.routes.url_helpers | |
def self.default_url_options | |
ActionMailer::Base.default_url_options | |
end | |
end |
set -e | |
echo "Updates packages. Asks for your password." | |
sudo apt-get update -y | |
echo "Installs packages. Give your password when asked." | |
sudo apt-get install build-essential bison openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev nodejs -y | |
echo "Installs ImageMagick for image processing" | |
sudo apt-get install imagemagick --fix-missing -y |
require "rubygems" | |
require "nokogiri" | |
require "uri" | |
module Rack | |
class KarmaChameleon | |
def initialize(app, options = {}) | |
@ext = options[:extension] || "html5" | |
@ext_regexp = /\.#@ext$/ | |
@app = app |
class DownloadsController < ApplicationController | |
def show | |
if @current_user | |
send_file "#{Rails.root}/downloads/test.pdf" | |
else | |
head(:not_found) | |
end | |
end | |
end |
#!/usr/bin/env ruby | |
# Usage: gemspec [-s] GEMNAME | |
# | |
# Prints a basic gemspec for GEMNAME based on your git-config info. | |
# If -s is passed, saves it as a GEMNAME.gemspec in the current | |
# directory. Otherwise prints to standard output. | |
# | |
# Once you check this gemspec into your project, releasing a new gem | |
# is dead simple: | |
# |
# Put this file in your config/initializers directory and behold a tastier auto_link! | |
module ActionView | |
module Helpers | |
module TextHelper | |
# Use auto_link and friends from Rails 3. They do the right thing (tm). | |
remove_const(:AUTO_LINK_RE) if defined?(AUTO_LINK_RE) | |
AUTO_LINK_RE = %r{ | |
( https?:// | www\. ) |
gem 'cramp' | |
gem 'erubis', '2.6.5' | |
gem 'usher', "0.6.0" |