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
require 'rubygems' | |
require 'rest_client' | |
require 'yaml' | |
params = { | |
'api_key' => '...', | |
'project' => 'myproj', | |
'error_message' => "Testing sendalone notify", | |
'backtrace' => "", | |
'request' => {}, |
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
# RAILS_ROOT is read-only on Heroku. Write to tmp dir, which is read/write. | |
require 'acts_as_ferret' | |
ActsAsFerret.index_dir = "#{RAILS_ROOT}/tmp/index" | |
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
require 'rubygems' | |
require 'exceptional' | |
require 'sinatra' | |
Exceptional.api_key = "...your api key..." | |
module Exceptional | |
def self.handle_sinatra(exception, uri, request, params) | |
e = Exceptional.parse(exception) | |
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
#!/usr/bin/ruby | |
# change these to your liking | |
user = "mygpguser" | |
encrypted = "/path/to/file.gpg" | |
########## | |
require 'fileutils' | |
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
$ git push heroku master | |
Counting objects: 71, done. | |
Compressing objects: 100% (65/65), done. | |
Writing objects: 100% (71/71), 79.28 KiB, done. | |
Total 71 (delta 15), reused 0 (delta 0) | |
-----> Heroku receiving push | |
-----> Verifying repository integrity... done, looks like a Rails app. | |
Compiled slug size is 0.1MB | |
-----> Launching.......... done |
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
task :export do | |
require 'sequel' | |
require 'fastercsv' | |
db = Sequel.connect(ENV['DATABASE_URL']) | |
table_name = ENV['table'].to_sym | |
table = db[table_name] | |
fields = table.first.keys |
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 MemCache | |
def self.cache | |
@@cache ||= MemCache.new('localhost:11211') | |
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
require 'rubygems' | |
require 'memcache' | |
class MemCache | |
def self.cache | |
@@cache ||= MemCache.new('localhost:11211') | |
end | |
end | |
MemCache.cache['abc'] = 123 |
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
syntax on | |
set ts=3 sw=3 si | |
set hlsearch | |
set backspace=indent,eol,start | |
command Rubytabs set tabstop=2 smarttab shiftwidth=2 autoindent expandtab backspace=start,indent | |
command Regtabs set ts=3 sw=3 noexpandtab |