1
I Use This!
Inactive

Commits : Listings

Analyzed about 1 hour ago. based on code collected about 1 hour ago.
Dec 28, 2024 — Dec 28, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Fixing mismatched code style issues from recent pull requests. More... over 14 years ago
Updating CHANGELOG and version. More... over 14 years ago
Merge pull request #38 from newtonapple/master More... over 14 years ago
URI#query_value= will convert Numeric type using #to_s. Currently the following throws a TypeError: uri = Addressable::URI.new uri.query_values = {'a' => 1, 'b' => 1.5} # => TypeError: Can't convert Integer into String. # Expected uri.query => "a=1&b=1.5" More... over 14 years ago
Fixing issues related to URI#query_values=. - error on nested hash containing array(s). example: uri = Addressable::URI.new uri.query_values = {'a' => {'b' => [ 'c']}}. # => TypeError: Can't convert Array into String. - incorrect sort order when nested hash is used. example: uri = Addressable::URI.new uri.query_values = {'a' => { 'c' => '1' }, 'b' => '2'} uri.query # => "b=2&a[d]=1" # Expected => "a[d]=1&b=2" More... over 14 years ago
Removed dead code. More... over 14 years ago
Updated exclusions for test coverage. More... over 14 years ago
Updated CHANGELOG. More... over 14 years ago
Merge pull request #32 from zquestz/master More... over 14 years ago
Moving test to more logical place in file. More... over 14 years ago
Updated CHANGELOG and version. More... over 14 years ago
Changed the way ambiguous URIs are handled. More... over 14 years ago
Switching to use less common path. Causes test lag if /home is an NFS mount. More... over 14 years ago
Whitespace. More... over 14 years ago
Merge pull request #33 from gkellogg/frozen-uri More... over 14 years ago
Fixed bug where #normalized_path was changing @path. More... over 14 years ago
Make sure #normalized_path does not depend on modifying @path. More... over 14 years ago
Evaluate methods creating instance variables when freezing URI. More... over 14 years ago
Added https support to heuristic_parse More... over 14 years ago
README filename changed. More... over 14 years ago
Switching to Apache 2.0 going forward. More... over 14 years ago
Updated documentation to use Markdown. More... over 14 years ago
Fixed a bug with Ruby 1.9.x unicode composition lookups. More... over 14 years ago
Added switch to prevent side-effects from failed IDN load. More... over 14 years ago
Updating gemspec. More... over 14 years ago
Fixed issue with coverage on IDNA. More... over 14 years ago
Fixed normalization issue with ampersands in query strings. More... over 14 years ago
Updated CHANGELOG. More... over 14 years ago
Added tests for query string edge cases. More... over 14 years ago
Cleaned up the handling of IDNA implementation switching. More... over 14 years ago