| Nov | DEC | Jan |
| 13 | ||
| 2019 | 2020 | 2021 |
COLLECTED BY
Collection: github.com
Ruby was developed by Yukihiro "Matz" Matsumoto in 1995 with the intent of having an easily readable programming language. It is used by the Rails framework to create dynamic web-applications. Ruby's syntax is similar to that of Perl and Python.
NoMethodError: undefined method `relation_delegate_class' for Comment:Module
Example:
class Post::Base < ActiveRecord::Base self.table_name = 'posts' end class Post::Special < Post::Base hasRead more activerecord good first issue pinned
register looks like:
private static <T> void register(Map<T, T> substitutions, T annotated, T original, T target) {
if (annotated != null) {
guarantee(!substitutions.containsKey(annotated) || substitutions.get(annotated) == original || substitutions.get(annotated) == target, "Already registered: %s", annotated);
substitutions.put(annotated,
Read more
good first issue
native-image
Open
require_relative should always be preferred to require
We should check for any instance of (send nil? require `{:__dir__ :__FILE__}) and raise an offense.
I can't event think of a single instance where require should be called with an interpolated string tbh
Read more
feature request
good first issue
Open
AllButPattern can't be coerced into Mustermann::Pattern (TypeError)
Here is my example code:
require 'sinatra' get '/index' do 'Hello world!' end class AllButPattern Match = Struct.new(:captuRead more good first issue Open
asdf. In help output a line is printed for the asdf env command:
asdf env <command> [executable] Prints or runs an executable under a command environment
I would assume <command> is an arbitrary command. But from what I can tell needs to be a plugin name or a shim name? I'm also not sure how this differs from executing the shim directly.
FY
Read more
good first issue
help wanted
question