Richard Wilson
Richard Wilson
Here's an example on how I've accomplished this for our rails project. (sanitized some NDA stuff out) ## Problem 1 - Configuration ```ruby module ProjectNamespace module Netsuite Honeybadger = ::Honeybadger::Agent.new...
## Problem When a user does not have permission to get a record, the gem reports an incorrect error `NetSuite::Records::CreditMemo.get(123)` Will yield `NetSuite::RecordNotFound: NetSuite::Records::CreditMemo with OPTIONS={:internal_id=>123} could not be found...
Okay, this is a mouthful Given ```ruby class MainBox include LittleBoxes::Box box(:things) do let(:stuff) { "stuff" } let(:otherstuff) { "stuff I dont care about" } end end ``` If I...
Consider ```pkl class Bird { name: String lifespan: Int } // Allowed pigeon = new Dynamic { name = "Pigeon" lifespan = 8 notInBird = "not in bird" }.toTyped(Bird) //...
Playground: https://pkl-playground.vercel.app/?share=strike-what-planet (Please let me know if this stuff should be a discussion instead) When instantiating a class e.g. `thing = new Thing {}`, if at the time of evaluation...
Philliam and I were discussing JSON error reporting in Discord. Currently, there is no `pkl import` type command I am aware of that allows us to import JSON/YAML/etc into PKL,...