James C Russell
James C Russell
I currently can't add dependency to a pre gem unless I specify its version, so `gem "rango", "0.2.1.pre"` is fine, but I'd welcome `gem "rango", pre: true` or something so...
I'm usually using two gemspecs for my gems, one is for standard release and one is for prerelease. It might sound weird, but I have good reasons for this layout....
I'm talking about this pattern: ```ruby # test/commands/test_pay.rb require_relative '../../lib/zold/commands/pay' ``` This is impractical and I believe `Kernel#require_relative` should _never_ be used for loading files from a different logical chunk...
Many of our commands have many subcommands, but everything is tested in one test class. _It makes it hard to see which tests are testing which subcommand._ In rSpec I’m...
#320 Please note that the squiggly heredoc has been introduced only as recently as in Ruby 2.3. Travis should be fine as soon as we upgrade our Ruby version, part...
This is the `Zold::Upgrades` documentation requested by @ledestin in #343.
Every single command has improperly aligned help banner: https://github.com/zold-io/zold/blob/master/lib/zold/commands/pay.rb#L43-L49 It doesn’t make sense and it’s hard to read. (And it’s [not just my opinion](https://github.com/zold-io/zold/pull/317#pullrequestreview-133458481).) I [inquired about what’s the minimal...
There's a significant difference between behaviour of primitive transports such as polling and more advanced transport such as websockets in case of closing connection in user app (see http://pastie.org/pastes/3011573). So...
As per the title. It works on desktop and mobile Chrome, but on iOS Safari it gets stucked on 'sending'. It works when I tap the refresh button long and...