I hereby claim:
- I am robvitaro on github.
- I am robvitaro (https://keybase.io/robvitaro) on keybase.
- I have a public key ASCaPSEHXhh8YLY0Oy2rNVou7uZkD5oT485tPnVIyjgpzAo
To claim this, I am signing this object:
# frozen_string_literal: true | |
require "bundler/inline" | |
gemfile(true) do | |
source "https://rubygems.org" | |
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | |
# Activate the gem you are reporting the issue against. |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<xsl:output omit-xml-declaration="yes" indent="yes"/> | |
<xsl:strip-space elements="*"/> | |
<xsl:template match="*[@* or not(*)] "> | |
<xsl:if test="not(*)"> | |
<xsl:apply-templates select="ancestor-or-self::*" mode="path"/> | |
<xsl:value-of select="concat(',',.)"/> | |
<xsl:text>
</xsl:text> | |
</xsl:if> |
I hereby claim:
To claim this, I am signing this object:
# RSpec matcher to spec delegations. | |
# | |
# Usage: | |
# | |
# describe Post do | |
# it { should delegate(:name).to(:author).with_prefix } # post.author_name | |
# it { should delegate(:month).to(:created_at) } | |
# it { should delegate(:year).to(:created_at) } | |
# end |