Nicholas Barone

Results 12 issues of Nicholas Barone

If this is possible and I just missed something in the docs, that's great :) If it's not, I can try my hand at contributing, and would appreciate some pointers...

`File.atime` gets its value from the filesystem (AFAICT), which ofc isn't affected by Timecop: ``` require 'timecop' Timecop.freeze(Time.at(0)) do puts Time.now puts File.new('config.ru').atime end ``` It seems like this is...

https://github.com/slack-ruby/slack-ruby-client/blob/6b559c34b22d18910f6ec950c6e2cc2e40239d2a/lib/slack/web/api/endpoints/files.rb#L75-L79 Just looks like the wrapper code was not applied. Or am I missing something?

bug?

``` message = client.files_upload( channels: '\#dev', as_user: true, file: UploadIO.new('./test.txt', 'text/plain'), title: 'test.txt', filename: 'test.txt', initial_comment: 'testing' ) File.open('./test.txt').size # 27 message.file.size # 35 message.file["size"] # 27 ``` `message.file.size` is...

confirmed bug

Any plan to support Ruby or do you accept ruby support PR? Thanks for the awesome project! I'm super excited to use this when and where I can. We're gradually...

Language Support

**Describe the bug** This test is failing _sometimes_. Maybe 50% of the time? ``` RSpec.describe Model, type: :model do let(:model) { create(:model) } it 'has paper trial' do model.first_event!('updated_by_test') model.second_event!('updated_by_test')...

Per Postgres docs - and experimentation! ;) - specify that the `DISTINCT ON` clause must have a matching `ORDER BY`, such that the columns used in the distinct clause are...

Any tips/tricks/insight for how to write rspec tests that open websockets?

Any plan to support Ruby or do you accept ruby support PR? Thanks for the awesome project! I'm super excited to use this when and where I can. We're gradually...

Language Support

Spent far to long pursuing other resolutions (none of which worked, not really) when the answer was `shellescape` all along.