Herwin
Herwin
# Issue type - Defect - Unexpected behaviour (obvious or verified by project member). # Defect When using PEAP with proxy-inner-tunnel and proxying to a real RADIUS server, only the...
```ruby class Test alias foo bar end ``` Running steep on this file results in an error: ``` $ ruby2.6 -S bundle exec steep check lib/test.rb # vendor/bundle/ruby/2.6.0/gems/steep-0.10.0/lib/steep/type_construction.rb:1574:in `block in...
The following source code: ```ruby class Foo # @param [Numeric] a # @return [Numeric] private_class_method def self.foo(a) a + 1 end end ``` Results in a warning: ``` [warn]: @param...
There is a very old gem on https://github.com/washu/xmlrpc-streaming, with the following feature set: * Base64 now accepts an IO object to its constructor * The XMLRPC request will now be...
Currently there is no simple way to transport a non-default object over XMLRPC with this lib. ## Contrived example We have a `Money` class, with 3 values: `currency` (like Dollar,...
Given the following code (a slight change from the example of `with`): ```ruby object = mock() object.expects(:expected_method).with(:param1, :param2) kwargs = {} object.expected_method(:param1, :param2, **kwargs) ``` This worked fine in Mocha...
The methods are aliases, so we probably shouldn't have two separate specs hanging around.
These have been copied from the specs of Kernel#caller_locations