openhub.net
Black Duck Software, Inc.
Open Hub
Follow @
OH
Sign In
Join Now
Projects
People
Organizations
Tools
Blog
BDSA
Projects
People
Projects
Organizations
A
Addressable URI parser
Settings
|
Report Duplicate
1
I Use This!
×
Login Required
Log in to Open Hub
Remember Me
Inactive
Commits
: Listings
Analyzed
about 1 hour
ago. based on code collected
about 1 hour
ago.
Dec 28, 2024 — Dec 28, 2025
Showing page 19 of 27
Search / Filter on:
Commit Message
Contributor
Files Modified
Lines Added
Lines Removed
Code Location
Date
Fixing mismatched code style issues from recent pull requests.
Bob Aman
More...
over 14 years ago
Updating CHANGELOG and version.
Bob Aman
More...
over 14 years ago
Merge pull request #38 from newtonapple/master
Bob Aman
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"
David Dai
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"
David Dai
More...
over 14 years ago
Removed dead code.
Bob Aman
More...
over 14 years ago
Updated exclusions for test coverage.
Bob Aman
More...
over 14 years ago
Updated CHANGELOG.
Bob Aman
More...
over 14 years ago
Merge pull request #32 from zquestz/master
Bob Aman
More...
over 14 years ago
Moving test to more logical place in file.
Bob Aman
More...
over 14 years ago
Updated CHANGELOG and version.
Bob Aman
More...
over 14 years ago
Changed the way ambiguous URIs are handled.
Bob Aman
More...
over 14 years ago
Switching to use less common path. Causes test lag if /home is an NFS mount.
Bob Aman
More...
over 14 years ago
Whitespace.
Bob Aman
More...
over 14 years ago
Merge pull request #33 from gkellogg/frozen-uri
Bob Aman
More...
over 14 years ago
Fixed bug where #normalized_path was changing @path.
Gregg Kellogg
More...
over 14 years ago
Make sure #normalized_path does not depend on modifying @path.
Gregg Kellogg
More...
over 14 years ago
Evaluate methods creating instance variables when freezing URI.
Gregg Kellogg
More...
over 14 years ago
Added https support to heuristic_parse
quest
More...
over 14 years ago
README filename changed.
Bob Aman
More...
over 14 years ago
Switching to Apache 2.0 going forward.
Bob Aman
More...
over 14 years ago
Updated documentation to use Markdown.
Bob Aman
More...
over 14 years ago
Fixed a bug with Ruby 1.9.x unicode composition lookups.
Bob Aman
More...
over 14 years ago
Added switch to prevent side-effects from failed IDN load.
Bob Aman
More...
over 14 years ago
Updating gemspec.
Bob Aman
More...
over 14 years ago
Fixed issue with coverage on IDNA.
Bob Aman
More...
over 14 years ago
Fixed normalization issue with ampersands in query strings.
Bob Aman
More...
over 14 years ago
Updated CHANGELOG.
Bob Aman
More...
over 14 years ago
Added tests for query string edge cases.
Bob Aman
More...
over 14 years ago
Cleaned up the handling of IDNA implementation switching.
Bob Aman
More...
over 14 years ago
←
1
2
…
15
16
17
18
19
20
21
22
23
…
26
27
→
This site uses cookies to give you the best possible experience. By using the site, you consent to our use of cookies. For more information, please see our
Privacy Policy
Agree