Johnathon E Wright
Johnathon E Wright
Help us help you! Please choose one: - [ ] My app crashes with `react-rails`, so I've included the stack trace and the exact steps which make it crash. -...
First, thanks for developing this tool. After examining close to 20 js charting frameworks, this one was the best match for us. I'll be contributing at least one new renderer...
I tend to only dislike capistrano when I'm setting up a new server. :) Non-interactive things environment issues are someone out of my normal workflow, though I admit I can...
1. Thank you for this incredibly useful gem. 2. I tested this issue with both scenic 1.5.4, 1.5.5, and 1.6.0. 3. The bug I'm reporting is that "WITH NO DATA"...
Took me almost an hour to weave my way through this logic... thought I could save someone the time.
Implement the following test: ``` class Valuable def to_hash attributes.to_hash end end class Phone < Valuable has_value :area_code has_value :exchange has_value :last_four end class Person < Valuable has_value :name has_value...
``` class Fu < Valuable has_value :bar end >> f = Fu.new(bar: 6) >> f.attributes['bar'] => nil >> f.attributes[:bar] => 6 ```
``` class TravelEstimationService < Valuable has_collection :resources end if CONFIG[:live] TravelEstimationService.set_default(:resources => [ MappingProvider::RouteInfo ] end ```
has_value :user, :ar => true has_value :user, :orm => :ar something like that
`instance` is reserved for valuable. But it might make more sense for that to be `__instance__`. In any case, determine what methods are reserved and raise an error when trying...