Skip to content

Instantly share code, notes, and snippets.

View manuelmeurer's full-sized avatar
🤷‍♂️

Manuel Meurer manuelmeurer

🤷‍♂️
View GitHub Profile
@manuelmeurer
manuelmeurer / gist:8972969
Created February 13, 2014 10:36
Errors during install of Git plugin in St3
unloading plugin Git.add
unloading plugin Git.annotate
unloading plugin Git.commit
unloading plugin Git.diff
unloading plugin Git.flow
reloading Packages/Git/Git Commit Message.sublime-settings
unloading plugin Git.git
unloading plugin Git.history
unloading plugin Git.repo
unloading plugin Git.stash
@manuelmeurer
manuelmeurer / Gemfile.lock
Created March 5, 2014 17:25
Test for Rails issue #8748
GIT
remote: git://github.com/rails/arel.git
revision: 24995298face1d08ffb52f6c1b0374feeb7a380b
specs:
arel (5.0.0.20140210193626)
GIT
remote: git://github.com/rails/rails.git
revision: 058d3c6183ef6e0e878bea37f4fe3f8f0d6758e2
specs:
@manuelmeurer
manuelmeurer / APIController.rb
Created June 8, 2014 08:23
Use RocketPants with RABL
class APIController < RocketPants::Base
include ActionController::Rendering, ActionController::MimeResponds, AbstractController::Layouts
append_view_path Rails.root.join('app', 'views')
...
end
@manuelmeurer
manuelmeurer / git.py
Created July 2, 2014 08:29
git.py from kemayo/sublime-text-git ST plugin
import os
import sublime
import sublime_plugin
import threading
import subprocess
import functools
import os.path
import time
# when sublime loads a plugin it's cd'd into the plugin directory. Thus
@manuelmeurer
manuelmeurer / import_backup.rake
Created July 7, 2014 19:47
Download backup containing Postgres and Redis dumps from S3 and import into local db
desc 'Download and import the lastest backup from S3'
task import_backup: :environment do
# Configure AWS
AWS.config \
access_key_id: Settings.aws.backup.key,
secret_access_key: Settings.aws.backup.secret,
region: Settings.aws.backup.region
# Download and extract backup file
bucket_name = 'kc-backups'
git@web02:~/repositories/manuel/myapp.git/hooks$ ls -lah
total 48K
drwxrws--- 2 git git 4.0K Dec 3 2013 .
drwxrws--- 7 git git 4.0K Dec 3 2013 ..
-rwxrwx--- 1 git git 452 Dec 3 2013 applypatch-msg.sample
-rwxrwx--- 1 git git 896 Dec 3 2013 commit-msg.sample
-rwxrwx--- 1 git git 189 Dec 3 2013 post-update.sample
-rwxrwx--- 1 git git 398 Dec 3 2013 pre-applypatch.sample
-rwxrwx--- 1 git git 1.6K Dec 3 2013 pre-commit.sample
-rwxrwx--- 1 git git 1.3K Dec 3 2013 prepare-commit-msg.sample
@manuelmeurer
manuelmeurer / INFO
Last active August 29, 2015 14:09
Redis stuff
# Server
redis_version:2.8.17
redis_git_sha1:00000000
redis_git_dirty:0
redis_build_id:b700a3585c1549ae
redis_mode:standalone
os:Linux 3.13.0-24-generic x86_64
arch_bits:64
multiplexing_api:epoll
gcc_version:4.8.2
# config/initializers/aaa_load_app_config.rb
#
# Prefixed with "aaa_" so that it is loaded first and app configs can be used in later initializers
require 'ostruct'
::AppConfig = OpenStruct.new(YAML.load_file(Rails.root.join('config', 'app_config.yml')).with_indifferent_access)
set :shared_files, %w(config/database.yml config/app_config.yml public/sitemap_index.xml)
namespace :deploy do
desc 'Symlink shared configs and folders on each release.'
task :symlink_shared do
global_shared_files.each do |shared_file|
run "ln -nfs #{shared_path}/#{shared_file} #{release_path}/#{shared_file}"
end
end
end