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 'test_helper' | |
class ServiceTest < ActiveSupport::TestCase | |
def setup | |
super | |
@klass = Class.new do | |
include Service |
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
Looks like you found one of my discs with a QR code on it! Thanks for taking the time to scan it and read this page. | |
I love getting my discs back when I've lost or forgotten them. I always offer a reward in the form of a disc or two from my disc storage in exchange for getting my disc back. | |
Since this page is public, I'm not including my phone number. | |
Email me here: [email protected] | |
Include your phone # if you want and I'll text you since that's probably easier |
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 | |
local_branch = `git rev-parse --abbrev-ref HEAD`.chomp | |
valid_branch_regex = /^(task|chore|feature|fix|text|hotfix|release)\/[a-z0-9._-]{2,30}$/ | |
if local_branch =~ valid_branch_regex | |
exit 0 | |
else | |
puts "Branch name does not match our convention, please make sure it follows this pattern: #{valid_branch_regex}" |
OlderNewer