Sean Collins

Results 36 issues of Sean Collins

Adding the MD extension (last night) caused some things to display differently than they should have. This PR fixes that. Note: I removed leading $ before bash lines because it's...

A quickfix to #2232 (see comments there), though it may be re-written better or removed entirely (the only main architecture/OS combo this seems to leave out now is ARM Windows)....

``` % b e rake /Users/sean/.gem/ruby/2.3.3/gems/hanami-model-1.0.1/lib/hanami/model/configuration.rb:144:in `rescue in load!': PG::ConnectionBad: FATAL: database "bookshelf_test" does not exist (Hanami::Model::Error) from /Users/sean/.gem/ruby/2.3.3/gems/hanami-model-1.0.1/lib/hanami/model/configuration.rb:134:in `load!' from /Users/sean/.gem/ruby/2.3.3/gems/hanami-model-1.0.1/lib/hanami/model.rb:79:in `load!' from /Users/sean/.gem/ruby/2.3.3/gems/hanami-1.0.0/lib/hanami/components/components.rb:83:in `block (2 levels) in '...

enhancement

If a user makes a bad request with JSON (either with `Accept` or `Content-Type`), the response is in HTML. By default, it would be nice to respond with an error...

discussion

I'm implementing a parser for Liquid and it seems like the 'Liquid for Designers' page has the closest thing to a robust spec of the language: https://github.com/Shopify/liquid/wiki/Liquid-for-Designers#expressions-and-variables (I thought the...

`Dry::Monads::Task` has an alias for [its `bind` method as `then`](https://github.com/dry-rb/dry-monads/blob/35d742fe872372a644eb7a3cf9d875736874b3e2/lib/dry/monads/task.rb#L129). Ruby 2.6 itself [added `Kernel#then` as an alias to `Kernel#yield_self`](https://www.ruby-lang.org/en/news/2018/12/25/ruby-2-6-0-released/) (first note) ~11 months after `dry-monads` added its alias. `dry-monads`'s...

bug
help wanted

This is a feature I started working on long ago for Hanami: https://github.com/hanami/hanami/pull/906 There could be two parts to this: - Colorizing the output of `dry-cli`, like each command's `help`...

bug
help wanted

Right now, `--help` only goes one level deep. I think we should keep it that way, but it'd be nice to have another command that recursively prints out every command...

feature
In progress

dry-system provides a nice container for creating new instances of classes, but it doesn't enforce its use. Developers are free to create an object by calling its constant constructor (e.g....

## Describe the bug/feature I ran into an issue where I had defined a constant with an acronym in the name and registered in with `dry-system`. I just needed to...

bug
help wanted