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 ENV['MY_RUBY_HOME'] && ENV['MY_RUBY_HOME'].include?('rvm') | |
begin | |
rvm_path = File.dirname(File.dirname(ENV['MY_RUBY_HOME'])) | |
rvm_lib_path = File.join(rvm_path, 'lib') | |
$LOAD_PATH.unshift rvm_lib_path | |
require 'rvm' | |
RVM.use_from_path! File.dirname(File.dirname(__FILE__)) | |
rescue LoadError | |
# RVM is unavailable at this point. | |
raise "RVM ruby lib is currently unavailable." |
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 'tempfile' | |
class IOMirror | |
attr_accessor :original_stdout, :original_stderr, :mirror_stdout, :mirror_stderr | |
def initialize(mirror_stdout, mirror_stderr) | |
@mirror_stdout = mirror_stdout | |
@mirror_stderr = mirror_stderr | |
@sync_mapping = {} |
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 Decorator | |
def initialize(decorated) | |
@decorated = decorated | |
end | |
def method_missing(method, *args, &blk) | |
@decorated.send(method, *args, &blk) | |
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 'parslet' | |
module SmegHead | |
module ACL | |
class Parser < Parslet::Parser | |
def self.parse(text) | |
parser = new | |
parser.parse text | |
rescue Parslet::ParseFailed => error |
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/env ruby | |
ENV['RAILS_ENV'] ||= 'development' | |
require File.expand_path('../../config/environment', __FILE__) | |
require 'daemon_spawn' | |
class ResqueWorkerDaemon < DaemonSpawn::Base | |
def start(args) | |
@worker = Resque::Worker.new('*') # Specify which queues this worker will process |
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 'sequel' | |
database = Sequel.connect('sqlite://sickbeard.db') | |
database[:tv_episodes].select(:location, :episode_id).exclude(:location => "").each do |show| | |
if !File.file?(show[:location]) | |
database[:tv_episodes].filter(:episode_id => show[:episode_id]).delete | |
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
diff --git a/lib/cnet.tcl b/lib/cnet.tcl | |
index 77f3da1..3adf62c 100644 | |
--- a/lib/cnet.tcl | |
+++ b/lib/cnet.tcl | |
@@ -129,7 +129,7 @@ proc initworld {topology bg mapx mapy gflag maxspeed procs | |
-background $framebg \ | |
-activebackground $canvasbg | |
- set m [menu .cnet.mb.cnet -background $framebg -tearoff 0] | |
+ set m [menu .cnet.mb.cnet -tearoff 0] |
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
def diff(a, b, file = "current.diff") | |
require 'rspec/expectations/differ' | |
differ = RSpec::Expectations::Differ.new | |
diff = differ.diff_as_object(a, b) | |
File.open(file, "w+") { |f| f.write diff } | |
system "mate", file | |
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
gemset_under_alias() { | |
local gemset="$1" | |
local alias_name="$2" | |
local fallback_ruby="$3" | |
local expanded_alias="$(rvm alias show "$alias_name" 2>/dev/null)" | |
if [[ -n "$expanded_alias" ]]; then | |
rvm "$alias_name@$gemset" --create | |
else | |
rvm "$fallback_ruby@$gemset" --create |
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
#!/bin/bash | |
### BEGIN INIT INFO | |
# Provides: unicorn | |
# Required-Start: $local_fs $remote_fs $network $syslog nginx | |
# Required-Stop: $local_fs $remote_fs $network $syslog nginx | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: starts unicorn | |
# Description: starts unicorn web app servers |