Ben Sheldon [he/him]
Ben Sheldon [he/him]
Certification is _mostly_ working as a result of #24, with the exception of TrackingLookup. I've sent this email to USPS support: ``` To: [email protected] Subject: Testing values / testing environment...
I received a response with TrackV2 test value: > Thank you for contacting Web Tools. See below for test TrackIDs to be used in the testing environment (https://stg-secure.shippingapis.com/shippingapi.dll) Mail Class...
Those callback options being absent was unintentional. I think that makes sense for the `_delivery` callbacks to be consistent with `_action` callbacks. Also, revisiting my implementation in light of this,...
I looked at this with @matthewd and we think this will work: ```diff diff --git a/railties/lib/rails/command.rb b/railties/lib/rails/command.rb --- a/railties/lib/rails/command.rb +++ b/railties/lib/rails/command.rb @@ -65,7 +65,12 @@ full_namespace = full_namespace.to_s namespace, command_name...
Still on my todo, but open if anyone else gets to it.
Thanks for opening the issue! I (obviously) haven't updated this repository in a while. But I'm open to taking Pull Requests and will push them through to get updated. The...
Also, you might look here for an implementation in the Sublime plugin that was the inspiration for this project: https://github.com/kyamaguchi/SublimeObjC2RubyMotion/blob/deae4f269b572012297003af0e2011e27c383773/CodeConverter.py#L134-L137
@TigerWolf looks good. Would you be able to add a spec for it? https://github.com/TigerWolf/objc2rubymotion/blob/feature/trueandfalse/app/assets/javascripts/spec/converter_spec.js.coffee And then please do open a PR. Thank you!
Just to further describe "weird": - if I call a predicate method on a null instance _before_ initializing an instance of the impersonated class, then I get a Boolean (which...
Sure, I can put together a test. To avoid pulling in ActiveRecord as a test dependency (cringe), I'll try lightly reproducing in a test class how ActiveRecord implements [`method_missing`](https://github.com/rails/rails/blob/a6da73f975892635e6a0bcbfe8eb8410fcbb07a4/activemodel/lib/active_model/attribute_methods.rb#L430-L437) and...