David Chandek-Stark

Results 17 issues of David Chandek-Stark

The reference to `response.headers[:content_length]` is incorrect and raises a NoMethodError. The method should probably just be: ``` ruby def entity_size(response) response.content_length || response.body.size end ``` This issue is filed for...

This line ```ruby parts = headers['Content-Disposition'].split(/;\s*/).collect { |entry| entry.split(/\s*=\s*/) } ``` should be amended.

I am working on a storage adapter for S3 (in a somewhat different fashion from https://github.com/stkenny/valkyrie-storage-s3), and I find that `Valkyrie::StorageAdapter::File` feels awkward in a couple of spots. I wonder...

question

This is to provide a docker-compose workflow for Valkyrie development.

help wanted

3.0.8 ``` irb(main):002:0> d = Date.edtf('199X') => Mon, 01 Jan 1990..Fri, 31 Dec 1999 irb(main):003:0> d.class => EDTF::Decade ``` 3.1.1 ``` irb(main):002:0> d = Date.edtf('199X') => Mon, 01 Jan 1990...

Apparently #clear_association_cache is not enough ... ``` ruby 2.0.0-p353 :006 > c = Collection.first => # 2.0.0-p353 :007 > c.admin_policy => nil 2.0.0-p353 :008 > c.admin_policy = AdminPolicy.first => #...

bug
stale