⌘T | go to file |
⌘⌃P | go to project |
⌘R | go to methods |
⌃G | go to line |
⌘KB | toggle side bar |
⌘⇧P | command prompt |
This file contains hidden or 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
# See https://github.com/phstc/shoryuken/wiki/Creating-a-queue | |
namespace :queues do | |
desc "List all SQS queues" | |
task :list => :environment do | |
queues.each { |queue_url| puts queue_url } | |
end | |
desc "Get details for a specific SQS Queue" |
This file contains hidden or 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
module Nokoquery | |
module DSL | |
module Item | |
def item(name, *args, **options, &block) | |
modulizer = Nokoquery::Modulizer.new(module_type: 'Item', name: name, klass: self) | |
method_module = modulizer.module_for | |
mod_name = modulizer.module_name | |
method_module.class_variable_set(:"@@_#{mod_name}_#{name}_block_capture", block) |
This file contains hidden or 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 Example | |
def make_method(&block) | |
line_no = __LINE__; method_defs = %{ | |
def dynamic_method | |
#{block}.call(1) | |
end | |
} | |
instance_eval method_defs, __FILE__, line_no |
This file contains hidden or 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 'formula' | |
class CloogPpl015 < Formula | |
homepage 'http://repo.or.cz/w/cloog-ppl.git' | |
url 'http://gcc.cybermirror.org/infrastructure/cloog-ppl-0.15.11.tar.gz' | |
sha1 '42fa476a79a1d52da41608a946dcb47c70f7e3b9' | |
keg_only 'Conflicts with cloog in main repository.' | |
depends_on 'gmp4' |
This file contains hidden or 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
web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb | |
scheduler: bundle exec rake resque:scheduler | |
worker: env TERM_CHILD=1 RESQUE_TERM_TIMEOUT=10 bundle exec rake jobs:work | |
This file contains hidden or 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 to rescue Resque::TermException errors in the perfrom method | |
require 'resque/errors' | |
# Load the servers to enable to web interfaces | |
require 'resque/server' | |
require 'resque_scheduler/server' | |
# Create a global variable to access the Redis DB | |
$redis = Rails.env == 'test' ? Redis.new : configatron.redis.server | |
# Tell Resque to use the defined Redis DB |
This file contains hidden or 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 'resque/tasks' | |
require 'resque_scheduler/tasks' | |
require 'resque/failure/multiple' | |
require 'resque/failure/redis' | |
# https://github.com/lantins/resque-exceptional | |
# Configuration Options | |
# Required | |
# api_key - your getexceptional.com api key. | |
# HTTP Proxy Options (optional) |
This file contains hidden or 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' | |
def start_simplecov | |
require 'simplecov' | |
SimpleCov.start 'rails' unless ENV["SKIP_COV"] | |
end | |
def spork? | |
defined?(Spork) && Spork.using_spork? | |
end |
This file contains hidden or 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
# Configure Rails to use jQuery by default | |
# Set up a jquery.rb file in config/initializers and add: | |
ActionView::Helpers::AssetTagHelper.javascript_expansions.clear | |
ActionView::Helpers::AssetTagHelper.register_javascript_expansion :defaults => ['jquery', 'jquery-ui', 'rails'] | |
# Alternatively use | |
# ActionView::Helpers::AssetTagHelper.register_javascript_expansion :jquery => ['jquery', 'jquery-ui', 'rails'] | |
# and then in the head of your application layout | |
# javascript_include_tag :jquery |
NewerOlder