umlify
umlify copied to clipboard
umlifies your projects.
``` gems/ruby-3.0.0/gems/umlify-1.2.6/lib/umlify/runner.rb:65:in `block in download_image': undefined method `escape' for URI:Module (NoMethodError) ``` URI.escape was deprecated , CGI.escape should be used.
uml.png output is: ```HTML 301 Moved Permanently 301 Moved Permanently nginx ```
Here's the diff for a fix: [diff.txt](https://github.com/mikaa123/umlify/files/1018257/diff.txt)
When i try to run the application everythings seems to work fine, but the resulting png contains the following (text) and is therefore invalid: ``` 1 2 414 Request-URI Too...
I'm getting this message, though there certainly are! I'm using JRuby 1.6.1, on windows 7. Gem install appeared to go just fine. I tried ``` umlify lib/*/* ``` and got...
The download_image function should check if the response from yUML is a valid image. If it returns for instance a 500 Internal Server Error, the error message is saved as...
Since it's using Ruby-Parser, it doesn't parse Ruby 1.9 at the moment.
When using `attr :attribute_name` the attributes are not recognized in the uml-graph. code example: ``` ruby class Example attr :example_attr, true end ``` the example_attr will not be shown in...
Hi. I'm Trying umlify on Ruby source which has some methods ending in a `?`. I had to manually escape them (%3F) in order to get it working. Thanks.