I hereby claim:
- I am typeoneerror on github.
- I am typeoneerror (https://keybase.io/typeoneerror) on keybase.
- I have a public key ASBbvRF_CKJ6codLAUG9CBd1iXyXTRVMgvsGu0NzFaACugo
To claim this, I am signing this object:
require 'sidekiq/web' | |
redis_options = { url: ENV['REDIS_URL'] } | |
Sidekiq.configure_server do |config| | |
config.redis = redis_options | |
end | |
Sidekiq.configure_client do |config| | |
config.redis = redis_options |
I hereby claim:
To claim this, I am signing this object:
require 'sidekiq/web' | |
redis_options = { url: ENV['REDIS_URL'] } | |
Sidekiq.configure_server do |config| | |
config.redis = redis_options | |
end | |
Sidekiq.configure_client do |config| | |
config.redis = redis_options |
// Compile javascript files from source | |
gulp.task('babel', function(cb) { | |
return gulp.src(paths.scripts) | |
.pipe(plumber()) | |
.pipe(babel({presets: ['es2015']})) | |
.pipe(gulp.dest(paths.scripts_compiled)) | |
.pipe(gulp.dest(path.join(paths.theme_dir, scripts_dir, source_dir))) | |
.on('error', handleError); | |
}); |
// Compile javascript files from source | |
gulp.task('babel', function(cb) { | |
return gulp.src(paths.scripts) | |
.pipe(plumber()) | |
.pipe(babel({presets: ['es2015']})) | |
.pipe(gulp.dest(paths.scripts_compiled)) | |
.pipe(gulp.dest(path.join(paths.theme_dir, scripts_dir, source_dir))) | |
.on('error', handleError); | |
}); |
if (deployTarget === 'development') { | |
ENV['ember-cli-mirage'] = { enabled: process.env.WITH_MIRAGE || false }; | |
} |
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
}); |
//mirage/config.js | |
export default function() { | |
this.get('/tenants/current', (schema, request) => { | |
/* | |
returns: | |
{ | |
tenant: { | |
id: 1 | |
profileId: 1 | |
} |
From 9092d3a70d0360dec52c44f2bb81e45c890e67dc Mon Sep 17 00:00:00 2001 | |
From: Benjamin Borowski <[email protected]> | |
Date: Fri, 1 Apr 2016 12:37:39 -0700 | |
Subject: [PATCH] [REDACTOR] Adds ability to set rel option on links | |
--- | |
vendor/redactorII/lib/redactor.js | 9 ++++++--- | |
1 file changed, 6 insertions(+), 3 deletions(-) | |
diff --git a/vendor/redactorII/lib/redactor.js b/vendor/redactorII/lib/redactor.js |