Myron Marston

Results 49 issues of Myron Marston

I've just converted a Rails 2.3.5 app from the old config.gem declarations to use bundler instead. One issue I've had is not being able to use system rake. Things seem...

After getting bundler setup in my rails 2.3.5 app, I've found I have to use the bundled rake executable (`./bin/rake`) rather than system rake. (See [this](http://github.com/wycats/bundler/issues/#issue/159) issue for an explanation...

After getting a Rails 2.3.5 app to work with bundler, I've had issues with gem plugins. Any gem that has a `rails/init.rb` file gets treated as a plugin by Rails....

I periodically get this in my logs: ``` ** (FunctionClauseError) no function clause matching in Mariaex.Messages.decode_msg/2 (mariaex) lib/mariaex/messages.ex:215: Mariaex.Messages.decode_msg(, :running) (mariaex) lib/mariaex/messages.ex:209: Mariaex.Messages.decode/2 (mariaex) lib/mariaex/protocol.ex:610: Mariaex.Protocol.msg_recv/3 (mariaex) lib/mariaex/protocol.ex:217: Mariaex.Protocol.disconnect/2 (db_connection)...

My request is similar to #17. `Hashie::Mash`, out of the box, doesn't provide a way to distinguish between a fat-fingered/typo'd key and a key that exists but is set to...

new feature
discuss!

In debugging vcr/vcr#245, I discovered that it is due to a bug in WebMock's excon adapter (reported there as bblimke/webmock#246). WebMock doesn't properly handle the case of a `response_block` being...

pinned

Consider this ruby file: ``` ruby class MyClass def using_symbol_to_proc(array) array.map(&:foo) end def using_a_block(array) array.map { |e| e.foo } end end ``` ...paired with this rbs file: ``` rbs class...

bug

Given this ruby script: require 'net/http' require 'rubygems' def perform_test response = Net::HTTP.new('example.com', 80).request_get('/') { |r| r.read_body { } } puts " " + response.body.class.to_s end puts "Without FakeWeb loaded:...

**Describe the bug** According to the [GraphQL spec](http://spec.graphql.org/October2021/#sec-Objects.Type-Validation): > An Object type must define one or more fields. However, the GraphQL gem appears to treat object types that have no...

Given `json_pure_bug.rb`: ``` ruby require 'json/ext' require 'json/pure' hash = { "a" => 7, "nested" => { "hash" => [1, 2, 3] }} JSON.dump(hash) ``` When I run it: ```...