didactic-drunk
didactic-drunk
Taken directly from the [ruby](https://github.com/aws/aws-sdk-ruby) `API`: ``` client = Awscr::S3::Client.new ... bucket = client.bucket("foo") # enumerate every object in a bucket bucket.objects.each do |obj| puts "#{obj.key} => #{obj.etag}" end #...
`head_object` raises `XML::Exception`. I think most providers use HTTP status codes for `HEAD` to indicate if an object exists or not. All of the errors may have similar but I...
With a large number of requests I get the following error: > Unhandled exception: Error connecting to '...': Can't assign requested address (Socket::ConnectError) Could a connection pool with persistent connections...
This partially to support sharding. New shards may be brought online or have been offline for some time requiring migration Version tracking per shard. I'm stuck here. ``` private def...
Setting the [journal mode](https://sqlite.org/pragma.html#pragma_journal_mode) isn't standardized. Suggested url format: ``` DB.open "sqlite3://./data.db?journal_mode=wal" ``` Putting the journal mode in the connection params allows all ORM's to transparently pass through the journal...
Instead of generating `struct stat`, can the bindings use `LibC::Stat`? I tried opening the issue with `libgen`. The author [suggested](https://github.com/olbat/libgen/issues/43) I ask here.
Proposal: A new shards command to see all licenses in use. ```shards licenses``` Output: ``` foo MIT gmp GPL2+ dynamic link -lgmp GPL2 baz GPL2,GPL3 static link -lbaz MIT,Apache,Other ```...
I have a shard with no dependencies that builds a c library through `postinstall`. Unfortunately `postinstall` never runs from `shards install` when using the shard directly. This is causing minor...
Gitter discussion provided to save time and not misquote @oprypin . @oprypin > i see. well, maybe my main dissatisfaction comes from how rigid postinstall is. any tiniest problem and...
Provide a feature similar to bundler [groups](https://bundler.io/guides/groups.html). ``` # Requires all shards listed in shard.yaml. Shards.require # Requires a group. Shards.require :development ``` One possible way to implement this feature:...