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
From d6cf71ff546cb28a0278ea7c8c45cd378ead42e1 Mon Sep 17 00:00:00 2001 | |
From: Eloy Duran <[email protected]> | |
Date: Thu, 31 Dec 2009 14:03:04 +0100 | |
Subject: [PATCH 1/5] Add AssociationReflection#collection_association? which returns true if it's for a has_many or has_and_belongs_to_many association. | |
--- | |
activerecord/lib/active_record/reflection.rb | 9 ++++++++- | |
activerecord/test/cases/reflection_test.rb | 9 +++++++++ | |
2 files changed, 17 insertions(+), 1 deletions(-) |
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
@mixin category-colors($after: false) | |
@each $category in $categories | |
@if $after == true | |
.cat-#{nth($category, 1)}:after | |
background-color: nth($category, 2) | |
@else | |
.cat-#{nth($category, 1)} | |
background-color: nth($category, 2) |
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 "erb" | |
require "shellwords" | |
# | |
# Use ERB in your test fixtures and easily load them. | |
# | |
# By: Skye Shaw (https://github.com/sshaw) | |
# Date: 2016-06-30 | |
# Source: https://gist.github.com/sshaw/f9bad743bb53d2439501d03fb6056a4c | |
# |