I hereby claim:
- I am grodowski on github.
- I am mrgrodo (https://keybase.io/mrgrodo) on keybase.
- I have a public key whose fingerprint is C17C 6E1A D19F E669 0FA5 64D5 05A5 75A2 AEF0 8488
To claim this, I am signing this object:
module MyApp | |
class Application < Rails::Application | |
if Rails.env == 'test' | |
require 'diagnostic' | |
config.middleware.use(MyApp::DiagnosticMiddleware) | |
end | |
end | |
end |
# Some colors | |
export CLICOLOR=1 | |
export LSCOLORS=ExFxBxDxCxegedabagacad | |
alias ls='ls -GFh' | |
# Dev shortcuts | |
alias be="bundle exec" | |
alias dkc='docker-compose' | |
alias dkcr='docker-compose run' | |
alias dkr='docker run' |
#!/bin/bash | |
defaults write com.apple.mail DisableInlineAttachmentViewing -bool yes |
#!/bin/bash | |
shopt -s globstar | |
rootdir=`pwd` | |
for dir in **/ ; do | |
cd $dir | |
exec 5>&1 | |
out=$(go test -v -coverprofile=cov_part.out | tee >(cat - >&5)) | |
if [ $? -eq 1 ] ; then | |
if [ $(cat $out | grep -o 'no buildable Go source files') == "" ] ; then |
package main | |
import ( | |
"bytes" | |
"fmt" | |
"log" | |
"github.com/grodowski/minio-go" | |
) |
{ | |
"color_scheme": "Packages/User/SublimeLinter/Monokai (SL).tmTheme", | |
"ensure_newline_at_eof_on_save": true, | |
"font_size": 11, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"tab_size": 2, | |
"theme": "Default.sublime-theme", |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env ruby | |
# frozen_string_literal: true | |
require 'simplecov' | |
require 'simplecov-lcov' | |
puts('Merging coverage results from parallel CircleCI tests containers into a single LCOV report...') | |
results = [] | |
Dir['/home/circleci/rspec/*.resultset.json'].each do |path| |
Installation
sudo cp dj.service /etc/systemd/system/
sudo systemctl enable dj.service
sudo journalctl -fu dj.service
Features
- name: Unit Tests | |
task: | |
jobs: | |
- name: RSpec | |
commands: | |
- checkout | |
- cache restore | |
- sem-version ruby 2.6.0 | |
- bundle install --deployment --path vendor/bundle | |
- bundle exec rspec |