Lasse Skindstad Ebert

Results 10 issues of Lasse Skindstad Ebert

### Steps to reproduce * Use Distillery 2.0.13 or 2.0.14 * Deploy to read-only filesystem (embedded linux box) Try to start app with e.g. (note that `/data` is read-write) ```...

deployment:scripts
fixed:pre-release

I am using Raxx (and not Plug) in a project and would like to use JSONAPI with that. I have played a little with the code, and it seems that...

rfc
stale:discard

We have postgis for geometric data, and our geometric columns are annotated correctly, e.g.: ``` # coordinates :geography not null, point, 4326 ``` However, we have some enum types that...

I use whatlanguage to scan a possibly multi-language text to find out if it is multi-language. (I `process_text` to find most likely languages) With this change I get to scan...

The README should describe different scenarios where `Kase` can help rewrite the code to be either more safe or more readable. Or both. Examples: - Matching a Rack response by...

enhancement

It might be a good feature to be able to match with a `proc`. Example matching a Rack response: ``` ruby response = app.call(env) kase response do on(proc { |status,...

enhancement

Right now it is possible to reuse error handling code by using the pretty clumsy and undocumented `self` inside the `kase` block: ``` ruby kase result do on(:ok) { |result|...

enhancement

Make public API documentation with YARD, so it is compatible with http://www.rubydoc.info Example: http://www.rubydoc.info/gems/kase/0.1.2/Kase/Switcher

enhancement

## Description Single table inheritance models do not inherit normalized attributes. I would expect them to. E.g. ```ruby class Animal < ActiveRecord base normalize :name, :downcase end class Cat <...

I'm not sure if this is a bug or by design. Lets say I have this class in `foo.rb`: ``` class Foo def foo 1 2 3 4 5 6...