gravaty 10.0.0 → 11.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (100) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG +7 -0
  3. data/Gemfile +5 -1
  4. data/README.md +219 -212
  5. data/Rakefile +9 -3
  6. data/copyright.md +33 -136
  7. data/examples/avatar.rb +70 -43
  8. data/examples/basics.rb +30 -20
  9. data/examples/profile.rb +77 -50
  10. data/examples/xmlrpc.rb +24 -10
  11. data/gravaty.gemspec +46 -25
  12. data/html/CHANGELOG.html +13 -20
  13. data/html/COPYING_md.html +8 -24
  14. data/html/Gemfile.html +7 -21
  15. data/html/Gravaty.html +49 -113
  16. data/html/Gravaty/Gravaty.html +138 -343
  17. data/html/Gravaty/ParsableDuckType.html +14 -33
  18. data/html/Gravaty/Parser.html +27 -66
  19. data/html/Gravaty/Parsers.html +3 -11
  20. data/html/Gravaty/Parsers/Avatar.html +19 -36
  21. data/html/Gravaty/Parsers/Callback.html +21 -37
  22. data/html/Gravaty/Parsers/Default.html +28 -45
  23. data/html/Gravaty/Parsers/Force.html +21 -37
  24. data/html/Gravaty/Parsers/Format.html +22 -42
  25. data/html/Gravaty/Parsers/Pixelsize.html +22 -42
  26. data/html/Gravaty/Parsers/Rating.html +22 -42
  27. data/html/Gravaty/Parsers/Secure.html +19 -36
  28. data/html/Gravaty/Parsers/Type.html +22 -42
  29. data/html/Gravaty/Utils.html +11 -13
  30. data/html/Gravaty/Utils/Downloader.html +3 -11
  31. data/html/Gravaty/Utils/Downloader/Downloader.html +25 -59
  32. data/html/Gravaty/Utils/Raisers.html +24 -55
  33. data/html/Gravaty/Utils/Rfc5322.html +12 -19
  34. data/html/Gravaty/Utils/RpcConnector.html +11 -13
  35. data/html/Gravaty/Utils/RpcConnector/RpcConnector.html +33 -73
  36. data/html/Object.html +728 -57
  37. data/html/README_md.html +105 -100
  38. data/html/Rakefile.html +9 -23
  39. data/html/copyright_md.html +17 -119
  40. data/html/created.rid +48 -55
  41. data/html/css/rdoc.css +1 -1
  42. data/html/index.html +97 -114
  43. data/html/js/navigation.js.gz +0 -0
  44. data/html/js/search_index.js +1 -1
  45. data/html/js/search_index.js.gz +0 -0
  46. data/html/js/searcher.js.gz +0 -0
  47. data/html/table_of_contents.html +219 -651
  48. data/lib/gravaty.rb +22 -15
  49. data/lib/gravaty/application.rb +40 -25
  50. data/lib/gravaty/constants.rb +20 -11
  51. data/lib/gravaty/locales/en.yml +9 -3
  52. data/lib/gravaty/locales/it.yml +9 -3
  53. data/lib/gravaty/locales/ja.yml +7 -4
  54. data/lib/gravaty/parser.rb +16 -10
  55. data/lib/gravaty/parsers/avatar.rb +11 -3
  56. data/lib/gravaty/parsers/callback.rb +13 -4
  57. data/lib/gravaty/parsers/default.rb +24 -16
  58. data/lib/gravaty/parsers/force.rb +12 -2
  59. data/lib/gravaty/parsers/format.rb +11 -2
  60. data/lib/gravaty/parsers/pixelsize.rb +12 -3
  61. data/lib/gravaty/parsers/rating.rb +12 -3
  62. data/lib/gravaty/parsers/secure.rb +11 -2
  63. data/lib/gravaty/parsers/type.rb +11 -2
  64. data/lib/gravaty/utils/downloader.rb +98 -96
  65. data/lib/gravaty/utils/raisers.rb +19 -12
  66. data/lib/gravaty/utils/rfc5322.rb +54 -41
  67. data/lib/gravaty/utils/rpc_connector.rb +19 -11
  68. data/lib/gravaty/version.rb +10 -2
  69. data/test/gravaty/locales/en.yml +29 -0
  70. data/test/gravaty/locales/it.yml +29 -0
  71. data/test/gravaty/locales/ja.yml +27 -0
  72. data/test/gravaty/locales/test_locales.rb +17 -13
  73. data/test/gravaty/parsers/test_avatar.rb +9 -1
  74. data/test/gravaty/parsers/test_callback.rb +12 -4
  75. data/test/gravaty/parsers/test_default.rb +25 -21
  76. data/test/gravaty/parsers/test_force.rb +9 -1
  77. data/test/gravaty/parsers/test_format.rb +18 -11
  78. data/test/gravaty/parsers/test_pixelsize.rb +19 -12
  79. data/test/gravaty/parsers/test_rating.rb +18 -11
  80. data/test/gravaty/parsers/test_secure.rb +9 -1
  81. data/test/gravaty/parsers/test_type.rb +14 -5
  82. data/test/gravaty/test_application.rb +14 -6
  83. data/test/gravaty/test_avatar.rb +94 -59
  84. data/test/gravaty/test_parser.rb +11 -5
  85. data/test/gravaty/test_profile.rb +47 -25
  86. data/test/gravaty/utils/test_downloader.rb +43 -28
  87. data/test/gravaty/utils/test_raisers.rb +42 -26
  88. data/test/gravaty/utils/test_rfc5322.rb +35 -13
  89. data/test/gravaty/utils/test_rpc_connector.rb +83 -39
  90. data/test/test_gravaty.rb +12 -4
  91. data/test/test_helper.rb +15 -9
  92. metadata +54 -40
  93. data/ISSUES.md +0 -62
  94. data/acknowledgements.md +0 -66
  95. data/authors.md +0 -63
  96. data/examples/cacert.pem +0 -3466
  97. data/html/ISSUES_md.html +0 -166
  98. data/html/acknowledgements_md.html +0 -161
  99. data/html/authors_md.html +0 -174
  100. data/html/examples/cacert_pem.html +0 -1078
Binary file
@@ -1 +1 @@
1
- var search_data = {"index":{"searchIndex":["gravaty","gravaty","parsableducktype","parser","parsers","avatar","callback","default","force","format","pixelsize","rating","secure","type","utils","downloader","downloader","raisers","rfc5322","rpcconnector","rpcconnector","object","<=>()","avatar()","avatar!()","call()","download()","download_file()","gravatize()","json()","json!()","load_yaml_file()","new()","new()","new()","parse()","parse()","parse()","parse()","parse()","parse()","parse()","parse()","parse()","parse()","profile()","profile!()","qrcode()","qrcode!()","raiser_downcase()","raiser_to_i()","reset()","test_parsable_duck_type()","to_json()","to_s()","xmlrpc()","changelog","copying","gemfile","issues","readme","rakefile","acknowledgements","authors","copyright","cacert.pem"],"longSearchIndex":["gravaty","gravaty::gravaty","gravaty::parsableducktype","gravaty::parser","gravaty::parsers","gravaty::parsers::avatar","gravaty::parsers::callback","gravaty::parsers::default","gravaty::parsers::force","gravaty::parsers::format","gravaty::parsers::pixelsize","gravaty::parsers::rating","gravaty::parsers::secure","gravaty::parsers::type","gravaty::utils","gravaty::utils::downloader","gravaty::utils::downloader::downloader","gravaty::utils::raisers","gravaty::utils::rfc5322","gravaty::utils::rpcconnector","gravaty::utils::rpcconnector::rpcconnector","object","gravaty::gravaty#<=>()","gravaty::gravaty#avatar()","gravaty::gravaty#avatar!()","gravaty::utils::rpcconnector::rpcconnector#call()","gravaty::gravaty#download()","gravaty::utils::downloader::downloader::download_file()","gravaty::gravatize()","gravaty::gravaty#json()","gravaty::gravaty#json!()","object#load_yaml_file()","gravaty::gravaty::new()","gravaty::parser::new()","gravaty::utils::rpcconnector::rpcconnector::new()","gravaty::parser#parse()","gravaty::parsers::avatar#parse()","gravaty::parsers::callback#parse()","gravaty::parsers::default#parse()","gravaty::parsers::force#parse()","gravaty::parsers::format#parse()","gravaty::parsers::pixelsize#parse()","gravaty::parsers::rating#parse()","gravaty::parsers::secure#parse()","gravaty::parsers::type#parse()","gravaty::gravaty#profile()","gravaty::gravaty#profile!()","gravaty::gravaty#qrcode()","gravaty::gravaty#qrcode!()","gravaty::utils::raisers#raiser_downcase()","gravaty::utils::raisers#raiser_to_i()","gravaty::gravaty#reset()","gravaty::parsableducktype#test_parsable_duck_type()","gravaty::gravaty#to_json()","gravaty::gravaty#to_s()","gravaty::gravaty#xmlrpc()","","","","","","","","","",""],"info":[["Gravaty","","Gravaty.html","","<p>Author &mdash; Marco Bresciani\n<p>Copyright &mdash; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani …\n"],["Gravaty::Gravaty","","Gravaty/Gravaty.html","","<p>This class is a simple API to retrieve an URL with specified options from Gravatar site. It can be used …\n"],["Gravaty::ParsableDuckType","","Gravaty/ParsableDuckType.html","","<p>This module represents the parsable duck type element for testing purposes.\n<p>Author &mdash; Marco Bresciani\n<p>Copyright … &mdash; "],["Gravaty::Parser","","Gravaty/Parser.html","","<p>This class is a simple utility that is used to parse and filter parameters for gravaty.\n<p>Author &mdash; Marco Bresciani …\n"],["Gravaty::Parsers","","Gravaty/Parsers.html","",""],["Gravaty::Parsers::Avatar","","Gravaty/Parsers/Avatar.html","","<p>This class is an implementation of the Parsable duck type that checks for avater or profile URI. The …\n"],["Gravaty::Parsers::Callback","","Gravaty/Parsers/Callback.html","","<p>This class is an implementation of the Parsable duck type that provides the callback name. The only needed …\n"],["Gravaty::Parsers::Default","","Gravaty/Parsers/Default.html","","<p>This class is an implementation of the Parsable duck type that checks the default option. The only needed …\n"],["Gravaty::Parsers::Force","","Gravaty/Parsers/Force.html","","<p>This class is an implementation of the Parsable duck type that checks forces the default value. The only …\n"],["Gravaty::Parsers::Format","","Gravaty/Parsers/Format.html","","<p>This class is an implementation of the Parsable duck type that checks the profile type. The only needed …\n"],["Gravaty::Parsers::Pixelsize","","Gravaty/Parsers/Pixelsize.html","","<p>This class is an implementation of the Parsable duck type that checks the image size. The only needed …\n"],["Gravaty::Parsers::Rating","","Gravaty/Parsers/Rating.html","","<p>This class is an implementation of the Parsable duck type that checks the rating type. The only needed …\n"],["Gravaty::Parsers::Secure","","Gravaty/Parsers/Secure.html","","<p>This class is an implementation of the Parsable duck type that provides the secure or unsecure URI. …\n"],["Gravaty::Parsers::Type","","Gravaty/Parsers/Type.html","","<p>This class is an implementation of the Parsable duck type that checks the avatar type. The only needed …\n"],["Gravaty::Utils","","Gravaty/Utils.html","","<p>This module is a simple collection of useful things and methods that I prefer to keep as DRYer as possible. …\n"],["Gravaty::Utils::Downloader","","Gravaty/Utils/Downloader.html","","<p>This module is a simple wrapper container for Peter R. Marreck&#39;s gist.\n<p>Author &mdash; Jon Maken\n<p>License &mdash; 3-clause …\n"],["Gravaty::Utils::Downloader::Downloader","","Gravaty/Utils/Downloader/Downloader.html","","<p>!/usr/bin/env ruby\n\n<pre>An HTTP/HTTPS/FTP file downloader library/CLI based upon\nMiniPortile&#39;s HTTP implementation. ...</pre>\n"],["Gravaty::Utils::Raisers","","Gravaty/Utils/Raisers.html","","<p>This module contains some utility method to raise errors according to (possibly) common conditions.\n<p>Author … &mdash; "],["Gravaty::Utils::Rfc5322","","Gravaty/Utils/Rfc5322.html","","<p>This module is a simple wrapper container for Peter R. Marreck&#39;s gist.\n<p>Author &mdash; Peter R. Marreck\n<p>Copyright … &mdash; "],["Gravaty::Utils::RpcConnector","","Gravaty/Utils/RpcConnector.html","","<p>This module contains the XML-RPC connector class.\n<p>Author &mdash; Marco Bresciani\n<p>Copyright &mdash; Copyright © 2013, 2014, …\n"],["Gravaty::Utils::RpcConnector::RpcConnector","","Gravaty/Utils/RpcConnector/RpcConnector.html","","<p>Creates a <code>RpcConnector</code> described by the user&#39;s email <code>digest</code> and a <code>password</code>. Throws a <code>ArgumentError</code> …\n"],["Object","","Object.html","",""],["<=>","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-3C-3D-3E","(other_gravaty)",""],["avatar","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-avatar","(args = {})","<p>Returns a string containing the URI of the gravatar associated to internal (provided) email address. …\n"],["avatar!","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-avatar-21","(args = {})","<p>See avatar method. This banged version saves the resulting string as internal state.\n"],["call","Gravaty::Utils::RpcConnector::RpcConnector","Gravaty/Utils/RpcConnector/RpcConnector.html#method-i-call","(a_method = RPC_TEST_METHOD, params = {})",""],["download","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-download","(filename = nil)","<p>Saves a file, with specified <code>filename</code>, that contains the current gravaty configuration. Uses the internal …\n"],["download_file","Gravaty::Utils::Downloader::Downloader","Gravaty/Utils/Downloader/Downloader.html#method-c-download_file","(url, full_path, count = 3)",""],["gravatize","Gravaty","Gravaty.html#method-c-gravatize","(email_address)","<p>Creates a new Gravaty described by the user&#39;s <code>email</code>. Throws a <code>ArgumentError</code> exception if the supplied …\n"],["json","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-json","(args = {})","<p>See profile method. Customized version for JSON-specific requests.\n<p>Usage &mdash; <p><code>a_string = new_gravaty.json</code>\n<p><code>a_string</code> …\n"],["json!","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-json-21","(args = {})","<p>See json method. This banged version saves the resulting string as internal state.\n"],["load_yaml_file","Object","Object.html#method-i-load_yaml_file","(locale)",""],["new","Gravaty::Gravaty","Gravaty/Gravaty.html#method-c-new","(email_address, parser)","<p>Creates a <code>Gravaty</code> object described by the user&#39;s <code>email</code>. Throws an <code>ArgumentError</code> exception if the …\n"],["new","Gravaty::Parser","Gravaty/Parser.html#method-c-new","(args = {})",""],["new","Gravaty::Utils::RpcConnector::RpcConnector","Gravaty/Utils/RpcConnector/RpcConnector.html#method-c-new","(digest, password = nil)",""],["parse","Gravaty::Parser","Gravaty/Parser.html#method-i-parse","(method = nil, value = nil)","<p>Provides the duck type for a generic parsing object.\n"],["parse","Gravaty::Parsers::Avatar","Gravaty/Parsers/Avatar.html#method-i-parse","(value = true)","<p>The parsable duck type interface to every parser usage.\n"],["parse","Gravaty::Parsers::Callback","Gravaty/Parsers/Callback.html#method-i-parse","(value = nil)","<p>The parsable duck type interface to every parser usage.\n"],["parse","Gravaty::Parsers::Default","Gravaty/Parsers/Default.html#method-i-parse","(value = nil)","<p>The parsable duck type interface to every parser usage.\n"],["parse","Gravaty::Parsers::Force","Gravaty/Parsers/Force.html#method-i-parse","(value = false)","<p>The parsable duck type interface to every parser usage.\n"],["parse","Gravaty::Parsers::Format","Gravaty/Parsers/Format.html#method-i-parse","(value = nil)","<p>The parsable duck type interface to every parser usage.\n"],["parse","Gravaty::Parsers::Pixelsize","Gravaty/Parsers/Pixelsize.html#method-i-parse","(value = nil)","<p>The parsable duck type interface to every parser usage.\n"],["parse","Gravaty::Parsers::Rating","Gravaty/Parsers/Rating.html#method-i-parse","(value = nil)","<p>the parsable duck type interface to every parser usage.\n"],["parse","Gravaty::Parsers::Secure","Gravaty/Parsers/Secure.html#method-i-parse","(value = false)","<p>The parsable duck type interface to every parser usage.\n"],["parse","Gravaty::Parsers::Type","Gravaty/Parsers/Type.html#method-i-parse","(value = nil)","<p>The parsable duck type interface to every parser usage.\n"],["profile","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-profile","(args = {})","<p>Returns a string containing the URI of the gravatar profile associated to internal (provided) email address. …\n"],["profile!","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-profile-21","(args = {})","<p>See profile method. This banged version saves the resulting string as internal state.\n"],["qrcode","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-qrcode","(args = {})","<p>See profile method. Customized version for QRCode-specific requests.\n<p>Usage &mdash; <p><code>a_string = new_gravaty.qrcode</code> …\n"],["qrcode!","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-qrcode-21","(args = {})","<p>See qrcode method. This banged version saves the resulting string as internal state.\n"],["raiser_downcase","Gravaty::Utils::Raisers","Gravaty/Utils/Raisers.html#method-i-raiser_downcase","(name = 'error.value', value = nil, array = nil)","<p>Raises an <code>ArgumentError</code> according to parameters, unless the <code>array</code> contains a downcased <code>value</code>.\n"],["raiser_to_i","Gravaty::Utils::Raisers","Gravaty/Utils/Raisers.html#method-i-raiser_to_i","(name = 'error.value', value = nil, array = nil)","<p>Raises an <code>ArgumentError</code> according to parameters, unless the <code>array</code> contains the number of the <code>value</code>.\n"],["reset","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-reset","()","<p>Restores the original status cleaning up the (possibly) previously saved URIs restoring the default …\n"],["test_parsable_duck_type","Gravaty::ParsableDuckType","Gravaty/ParsableDuckType.html#method-i-test_parsable_duck_type","()","<p>The method that tests the parsable duck type interface and its <code>parse</code> method.\n"],["to_json","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-to_json","()","<p>Returns a JSon object representing the Gravaty object.\n<p>Usage &mdash; <p><code>a_json = new_gravaty.to_json</code>\n\n<p>Returns &mdash; a <code>JSON</code> …\n"],["to_s","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-to_s","()","<p>Returns a string representing the Gravaty object.\n<p>Usage &mdash; <p><code>a_string = new_gravaty.to_s</code>\n\n<p>Returns &mdash; a <code>String</code> containing …\n"],["xmlrpc","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-xmlrpc","(a_method = RPC_TEST_METHOD, password = nil, args = {})","<p>Interfaces with the Gravatar XML-RPC API.\n<p>Usage &mdash; <p>&lt;tt&gt;response = new_gravaty.xmlrpc &#39;grav.test&#39;, …\n\n\n"],["CHANGELOG","","CHANGELOG.html","","<p>Version 10.0.0\n\n<pre>* MAJOR update from Ruby &#39;~&gt; 2.6&#39; to Ruby &#39;~&gt; 2.7&#39;.\n* MINOR update IntelliJ IDEA (RubyGem) ...</pre>\n"],["COPYING","","COPYING_md.html","","<p>GNU GENERAL PUBLIC LICENSE\n<p>Version 3, 29 June 2007\n<p>Copyright (C) 2007 Free Software Foundation, Inc.\nfsf.org ...\n"],["Gemfile","","Gemfile.html","","<p># gravaty # Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani # # This file …\n"],["ISSUES","","ISSUES_md.html","","<p>Gravaty Issues\n<p>Documentation\n<p>See savannah.nongnu.org/projects/gravaty/ or\nrubydoc.info/gems/gravaty/ for ...\n"],["README","","README_md.html","","<p>Gravaty\n<p><img src=\"https://img.shields.io/gem/v/gravaty.svg?style=plastic\">\n<img src=\"https://img.shields.io/gem/dt/gravaty.svg?style=plastic\"> ...\n"],["Rakefile","","Rakefile.html","","<p># gravaty # Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 201, 20209 Marco Bresciani # # This file …\n"],["acknowledgements","","acknowledgements_md.html","","<p>Acknowledgements\n<p>FSIJ理事会の理事長、新部裕さんの日本語の翻訳。 Japanese translation by\nYutaka Niibe, President of Free Software ...\n"],["authors","","authors_md.html","","<p>Project and gem owned by\n<p><em>Author</em>: Marco Bresciani\n\n<p>Authors list (in appearing order)\n"],["copyright","","copyright_md.html","","<p>Copyright Notes\n<p>2020-03-09 update.\n<p>gravaty\n"],["cacert.pem","","examples/cacert_pem.html","","<p>## ## Bundle of CA Root Certificates ## ## Certificate data from Mozilla as of: Wed Jan 1 04:12:10 2020 …\n"]]}}
1
+ var search_data = {"index":{"searchIndex":["gravaty","gravaty","parsableducktype","parser","parsers","avatar","callback","default","force","format","pixelsize","rating","secure","type","utils","downloader","downloader","raisers","rfc5322","rpcconnector","rpcconnector","object","<=>()","avatar()","avatar!()","call()","download()","download_file()","gravatize()","internet_connection?()","json()","json!()","load_yaml_file()","new()","new()","new()","parse()","parse()","parse()","parse()","parse()","parse()","parse()","parse()","parse()","parse()","parser()","profile()","profile!()","qrcode()","qrcode!()","raiser_downcase()","raiser_to_i()","reset()","test_allowed_sizes()","test_arg_error()","test_avatar_formats()","test_default_options()","test_digest()","test_info_exist()","test_info_test()","test_invalid()","test_invalid_parameter()","test_json()","test_nil()","test_no_arg_error()","test_own_default_image()","test_own_https_image()","test_parameters()","test_parsable_duck_type()","test_password()","test_qrcode()","test_qrcode_sizes()","test_rating_options()","test_unallowed_sizes()","test_unknown_parameters()","test_valid()","test_valid_parameter()","to_json()","to_s()","xmlrpc()","changelog","copying","gemfile","readme","rakefile","copyright"],"longSearchIndex":["gravaty","gravaty::gravaty","gravaty::parsableducktype","gravaty::parser","gravaty::parsers","gravaty::parsers::avatar","gravaty::parsers::callback","gravaty::parsers::default","gravaty::parsers::force","gravaty::parsers::format","gravaty::parsers::pixelsize","gravaty::parsers::rating","gravaty::parsers::secure","gravaty::parsers::type","gravaty::utils","gravaty::utils::downloader","gravaty::utils::downloader::downloader","gravaty::utils::raisers","gravaty::utils::rfc5322","gravaty::utils::rpcconnector","gravaty::utils::rpcconnector::rpcconnector","object","gravaty::gravaty#<=>()","gravaty::gravaty#avatar()","gravaty::gravaty#avatar!()","gravaty::utils::rpcconnector::rpcconnector#call()","gravaty::gravaty#download()","gravaty::utils::downloader::downloader::download_file()","gravaty::gravatize()","object#internet_connection?()","gravaty::gravaty#json()","gravaty::gravaty#json!()","object#load_yaml_file()","gravaty::gravaty::new()","gravaty::parser::new()","gravaty::utils::rpcconnector::rpcconnector::new()","gravaty::parser#parse()","gravaty::parsers::avatar#parse()","gravaty::parsers::callback#parse()","gravaty::parsers::default#parse()","gravaty::parsers::force#parse()","gravaty::parsers::format#parse()","gravaty::parsers::pixelsize#parse()","gravaty::parsers::rating#parse()","gravaty::parsers::secure#parse()","gravaty::parsers::type#parse()","gravaty::parser()","gravaty::gravaty#profile()","gravaty::gravaty#profile!()","gravaty::gravaty#qrcode()","gravaty::gravaty#qrcode!()","gravaty::utils::raisers#raiser_downcase()","gravaty::utils::raisers#raiser_to_i()","gravaty::gravaty#reset()","object#test_allowed_sizes()","object#test_arg_error()","object#test_avatar_formats()","object#test_default_options()","object#test_digest()","object#test_info_exist()","object#test_info_test()","object#test_invalid()","object#test_invalid_parameter()","object#test_json()","object#test_nil()","object#test_no_arg_error()","object#test_own_default_image()","object#test_own_https_image()","object#test_parameters()","gravaty::parsableducktype#test_parsable_duck_type()","object#test_password()","object#test_qrcode()","object#test_qrcode_sizes()","object#test_rating_options()","object#test_unallowed_sizes()","object#test_unknown_parameters()","object#test_valid()","object#test_valid_parameter()","gravaty::gravaty#to_json()","gravaty::gravaty#to_s()","gravaty::gravaty#xmlrpc()","","","","","",""],"info":[["Gravaty","","Gravaty.html","","<p>Author &mdash; Marco Bresciani\n\n<p>rubocop:disable Style/AsciiComments\n<p>Copyright &mdash; Copyright © 2013, 2014, 2015, 2016, …\n"],["Gravaty::Gravaty","","Gravaty/Gravaty.html","","<p>This class is a simple API to retrieve an URL with specified options from Gravatar site. It can be used …\n"],["Gravaty::ParsableDuckType","","Gravaty/ParsableDuckType.html","","<p>This module represents the parsable duck type element for testing purposes.\n<p>Author &mdash; Marco Bresciani\n\n<p>rubocop:disable …\n"],["Gravaty::Parser","","Gravaty/Parser.html","","<p>This class is a simple utility that is used to parse and filter parameters for gravaty.\n<p>Author &mdash; Marco Bresciani …\n\n"],["Gravaty::Parsers","","Gravaty/Parsers.html","",""],["Gravaty::Parsers::Avatar","","Gravaty/Parsers/Avatar.html","","<p>This class is an implementation of the Parsable duck type that checks for avater or profile URI. The …\n"],["Gravaty::Parsers::Callback","","Gravaty/Parsers/Callback.html","","<p>This class is an implementation of the Parsable duck type that provides the callback name. The only needed …\n"],["Gravaty::Parsers::Default","","Gravaty/Parsers/Default.html","","<p>This class is an implementation of the Parsable duck type that checks the default option. The only needed …\n"],["Gravaty::Parsers::Force","","Gravaty/Parsers/Force.html","","<p>This class is an implementation of the Parsable duck type that checks forces the default value. The only …\n"],["Gravaty::Parsers::Format","","Gravaty/Parsers/Format.html","","<p>This class is an implementation of the Parsable duck type that checks the profile type. The only needed …\n"],["Gravaty::Parsers::Pixelsize","","Gravaty/Parsers/Pixelsize.html","","<p>This class is an implementation of the Parsable duck type that checks the image size. The only needed …\n"],["Gravaty::Parsers::Rating","","Gravaty/Parsers/Rating.html","","<p>This class is an implementation of the Parsable duck type that checks the rating type. The only needed …\n"],["Gravaty::Parsers::Secure","","Gravaty/Parsers/Secure.html","","<p>This class is an implementation of the Parsable duck type that provides the secure or unsecure URI. …\n"],["Gravaty::Parsers::Type","","Gravaty/Parsers/Type.html","","<p>This class is an implementation of the Parsable duck type that checks the avatar type. The only needed …\n"],["Gravaty::Utils","","Gravaty/Utils.html","","<p>This module is a simple collection of useful things and methods that I prefer to keep as DRYer as possible. …\n"],["Gravaty::Utils::Downloader","","Gravaty/Utils/Downloader.html","","<p>This module is a simple wrapper container for Peter R. Marreck&#39;s gist.\n<p>Author &mdash; Jon Maken\n<p>License &mdash; 3-clause …\n"],["Gravaty::Utils::Downloader::Downloader","","Gravaty/Utils/Downloader/Downloader.html","","<p>!/usr/bin/env ruby\n<p>An HTTP/HTTPS/FTP file downloader library/CLI based upon MiniPortile&#39;s HTTP implementation. …\n"],["Gravaty::Utils::Raisers","","Gravaty/Utils/Raisers.html","","<p>This module contains some utility method to raise errors according to (possibly) common conditions.\n<p>Author … &mdash; "],["Gravaty::Utils::Rfc5322","","Gravaty/Utils/Rfc5322.html","","<p>This module is a simple wrapper container for Peter R. Marreck&#39;s gist.\n<p>Author &mdash; Peter R. Marreck\n\n<p>rubocop:disable …\n"],["Gravaty::Utils::RpcConnector","","Gravaty/Utils/RpcConnector.html","","<p>This module contains the XML-RPC connector class.\n<p>Author &mdash; Marco Bresciani\n\n<p>rubocop:disable Style/AsciiComments …\n"],["Gravaty::Utils::RpcConnector::RpcConnector","","Gravaty/Utils/RpcConnector/RpcConnector.html","","<p>Creates a <code>RpcConnector</code> described by the user&#39;s email <code>digest</code> and a <code>password</code>. Throws a <code>ArgumentError</code> …\n"],["Object","","Object.html","",""],["<=>","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-3C-3D-3E","(other)",""],["avatar","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-avatar","(args = {})","<p>Returns a string containing the URI of the gravatar associated to internal (provided) email address. …\n"],["avatar!","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-avatar-21","(args = {})","<p>See avatar method. This banged version saves the resulting string as internal state.\n"],["call","Gravaty::Utils::RpcConnector::RpcConnector","Gravaty/Utils/RpcConnector/RpcConnector.html#method-i-call","(a_method = RPC_TEST_METHOD, params = {})",""],["download","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-download","(filename = nil)","<p>Saves a file, with specified <code>filename</code>, that contains the current gravaty configuration. Uses the internal …\n"],["download_file","Gravaty::Utils::Downloader::Downloader","Gravaty/Utils/Downloader/Downloader.html#method-c-download_file","(url, full_path, count = 3)",""],["gravatize","Gravaty","Gravaty.html#method-c-gravatize","(email_address)","<p>Creates a new Gravaty described by the user&#39;s <code>email</code>. Throws a <code>ArgumentError</code> exception if the supplied …\n"],["internet_connection?","Object","Object.html#method-i-internet_connection-3F","()",""],["json","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-json","(args = {})","<p>See profile method. Customized version for JSON-specific requests.\n<p>Usage &mdash; <p><code>a_string = new_gravaty.json</code>\n<p><code>a_string</code> …\n"],["json!","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-json-21","(args = {})","<p>See json method. This banged version saves the resulting string as internal state.\n"],["load_yaml_file","Object","Object.html#method-i-load_yaml_file","(locale)",""],["new","Gravaty::Gravaty","Gravaty/Gravaty.html#method-c-new","(email_address, parser)","<p>Creates a <code>Gravaty</code> object described by the user&#39;s <code>email</code>. Throws an <code>ArgumentError</code> exception if the …\n"],["new","Gravaty::Parser","Gravaty/Parser.html#method-c-new","(args = {})",""],["new","Gravaty::Utils::RpcConnector::RpcConnector","Gravaty/Utils/RpcConnector/RpcConnector.html#method-c-new","(digest, password = nil)",""],["parse","Gravaty::Parser","Gravaty/Parser.html#method-i-parse","(method = nil, params = nil)","<p>Provides the duck type for a generic parsing object.\n"],["parse","Gravaty::Parsers::Avatar","Gravaty/Parsers/Avatar.html#method-i-parse","(value = true)","<p>The parsable duck type interface to every parser usage.\n"],["parse","Gravaty::Parsers::Callback","Gravaty/Parsers/Callback.html#method-i-parse","(value = nil)","<p>The parsable duck type interface to every parser usage.\n"],["parse","Gravaty::Parsers::Default","Gravaty/Parsers/Default.html#method-i-parse","(value = nil)","<p>The parsable duck type interface to every parser usage.\n"],["parse","Gravaty::Parsers::Force","Gravaty/Parsers/Force.html#method-i-parse","(value = false)","<p>The parsable duck type interface to every parser usage.\n"],["parse","Gravaty::Parsers::Format","Gravaty/Parsers/Format.html#method-i-parse","(value = nil)","<p>The parsable duck type interface to every parser usage.\n"],["parse","Gravaty::Parsers::Pixelsize","Gravaty/Parsers/Pixelsize.html#method-i-parse","(value = nil)","<p>The parsable duck type interface to every parser usage.\n"],["parse","Gravaty::Parsers::Rating","Gravaty/Parsers/Rating.html#method-i-parse","(value = nil)","<p>the parsable duck type interface to every parser usage.\n"],["parse","Gravaty::Parsers::Secure","Gravaty/Parsers/Secure.html#method-i-parse","(value = false)","<p>The parsable duck type interface to every parser usage.\n"],["parse","Gravaty::Parsers::Type","Gravaty/Parsers/Type.html#method-i-parse","(value = nil)","<p>The parsable duck type interface to every parser usage.\n"],["parser","Gravaty","Gravaty.html#method-c-parser","()","<p>Provides the parameters&#39; parsers object.\n"],["profile","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-profile","(args = {})","<p>Returns a string containing the URI of the gravatar profile associated to internal (provided) email address. …\n"],["profile!","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-profile-21","(args = {})","<p>See profile method. This banged version saves the resulting string as internal state.\n"],["qrcode","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-qrcode","(args = {})","<p>See profile method. Customized version for QRCode-specific requests.\n<p>Usage &mdash; <p><code>a_string = new_gravaty.qrcode</code> …\n"],["qrcode!","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-qrcode-21","(args = {})","<p>See qrcode method. This banged version saves the resulting string as internal state.\n"],["raiser_downcase","Gravaty::Utils::Raisers","Gravaty/Utils/Raisers.html#method-i-raiser_downcase","(name = 'error.value', value = nil, array = nil)","<p>Raises an <code>ArgumentError</code> according to parameters, unless the <code>array</code> contains a downcased <code>value</code>.\n"],["raiser_to_i","Gravaty::Utils::Raisers","Gravaty/Utils/Raisers.html#method-i-raiser_to_i","(name = 'error.value', value = nil, array = nil)","<p>Raises an <code>ArgumentError</code> according to parameters, unless the <code>array</code> contains the number of the <code>value</code>.\n"],["reset","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-reset","()","<p>Restores the original status cleaning up the (possibly) previously saved URIs restoring the default …\n"],["test_allowed_sizes","Object","Object.html#method-i-test_allowed_sizes","()",""],["test_arg_error","Object","Object.html#method-i-test_arg_error","()",""],["test_avatar_formats","Object","Object.html#method-i-test_avatar_formats","()",""],["test_default_options","Object","Object.html#method-i-test_default_options","()",""],["test_digest","Object","Object.html#method-i-test_digest","(param, password)",""],["test_info_exist","Object","Object.html#method-i-test_info_exist","(digest)",""],["test_info_test","Object","Object.html#method-i-test_info_test","()",""],["test_invalid","Object","Object.html#method-i-test_invalid","()",""],["test_invalid_parameter","Object","Object.html#method-i-test_invalid_parameter","(digest, password)",""],["test_json","Object","Object.html#method-i-test_json","()",""],["test_nil","Object","Object.html#method-i-test_nil","()",""],["test_no_arg_error","Object","Object.html#method-i-test_no_arg_error","()",""],["test_own_default_image","Object","Object.html#method-i-test_own_default_image","()",""],["test_own_https_image","Object","Object.html#method-i-test_own_https_image","()",""],["test_parameters","Object","Object.html#method-i-test_parameters","(param)",""],["test_parsable_duck_type","Gravaty::ParsableDuckType","Gravaty/ParsableDuckType.html#method-i-test_parsable_duck_type","()","<p>The method that tests the parsable duck type interface and its <code>parse</code> method.\n"],["test_password","Object","Object.html#method-i-test_password","(digest, param)",""],["test_qrcode","Object","Object.html#method-i-test_qrcode","()",""],["test_qrcode_sizes","Object","Object.html#method-i-test_qrcode_sizes","()",""],["test_rating_options","Object","Object.html#method-i-test_rating_options","()",""],["test_unallowed_sizes","Object","Object.html#method-i-test_unallowed_sizes","()",""],["test_unknown_parameters","Object","Object.html#method-i-test_unknown_parameters","()",""],["test_valid","Object","Object.html#method-i-test_valid","()",""],["test_valid_parameter","Object","Object.html#method-i-test_valid_parameter","(digest)",""],["to_json","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-to_json","(*_args)","<p>Returns a JSon object representing the Gravaty object.\n<p>Usage &mdash; <p><code>a_json = new_gravaty.to_json</code>\n\n<p>Returns &mdash; a <code>JSON</code> …\n"],["to_s","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-to_s","()","<p>Returns a string representing the Gravaty object.\n<p>Usage &mdash; <p><code>a_string = new_gravaty.to_s</code>\n\n<p>Returns &mdash; a <code>String</code> containing …\n"],["xmlrpc","Gravaty::Gravaty","Gravaty/Gravaty.html#method-i-xmlrpc","(a_method = RPC_TEST_METHOD, password = nil, args = {})","<p>Interfaces with the Gravatar XML-RPC API.\n<p>Usage &mdash; <p>&lt;tt&gt;response = new_gravaty.xmlrpc &#39;grav.test&#39;, …\n\n\n"],["CHANGELOG","","CHANGELOG.html","","<p>Version 11.0.0\n\n<pre>* MAJOR update from Ruby &#39;~&gt; 2.7&#39; to Ruby &#39;~&gt; 3.0&#39;.\n* PATCH update IntelliJ IDEA (RubyGem) ...</pre>\n"],["COPYING","","COPYING_md.html","","<p>GNU GENERAL PUBLIC LICENSE\n<p>Version 3, 29 June 2007\n<p>Copyright (C) 2007 Free Software Foundation, Inc.\nfsf.org ...\n"],["Gemfile","","Gemfile.html","","<p># frozen_string_literal: true\n<p>#– # gravaty # (C) 2013 Marco Bresciani # # This file is part of gravaty. …\n"],["README","","README_md.html","","<p>Gravaty\n<p><img src=\"https://badgen.net/rubygems/n/gravaty\">\n<img src=\"https://badgen.net/rubygems/p/gravaty\"> ...\n"],["Rakefile","","Rakefile.html","","<p># frozen_string_literal: true\n<p>#– # gravaty # rubocop:disable Style/AsciiComments # © 2013 Marco Bresciani …\n"],["copyright","","copyright_md.html","","<p>Copyright Notes\n<p>2020-11-30 update.\n<p>gravaty\n"]]}}
Binary file
Binary file
@@ -4,7 +4,7 @@
4
4
  <head>
5
5
  <meta charset="UTF-8">
6
6
 
7
- <title>Table of Contents - gravaty 10.0.0</title>
7
+ <title>Table of Contents - gravaty 11.0.1</title>
8
8
 
9
9
  <script type="text/javascript">
10
10
  var rdoc_rel_prefix = "./";
@@ -21,801 +21,245 @@
21
21
  <link href="./css/rdoc.css" rel="stylesheet">
22
22
 
23
23
 
24
-
25
-
26
24
  <body id="top" class="table-of-contents">
27
25
  <main role="main">
28
- <h1 class="class">Table of Contents - gravaty 10.0.0</h1>
29
-
30
-
26
+ <h1 class="class">Table of Contents - gravaty 11.0.1</h1>
31
27
 
32
28
  <h2 id="pages">Pages</h2>
33
29
  <ul>
34
-
35
30
  <li class="file">
36
31
  <a href="CHANGELOG.html">CHANGELOG</a>
37
32
 
38
33
  <ul>
39
-
34
+ <li><a href="CHANGELOG.html#label-Version+11.0.0">Version 11.0.0</a>
40
35
  <li><a href="CHANGELOG.html#label-Version+10.0.0">Version 10.0.0</a>
41
-
42
36
  <li><a href="CHANGELOG.html#label-Version+9.0.1">Version 9.0.1</a>
43
-
44
37
  <li><a href="CHANGELOG.html#label-Version+9.0.0">Version 9.0.0</a>
45
-
46
38
  <li><a href="CHANGELOG.html#label-Version+8.0.1">Version 8.0.1</a>
47
-
48
39
  <li><a href="CHANGELOG.html#label-Version+8.0.0">Version 8.0.0</a>
49
-
50
40
  <li><a href="CHANGELOG.html#label-Version+7.0.0">Version 7.0.0</a>
51
-
52
41
  <li><a href="CHANGELOG.html#label-Version+6.0.0">Version 6.0.0</a>
53
-
54
42
  <li><a href="CHANGELOG.html#label-Version+5.0.0">Version 5.0.0</a>
55
-
56
43
  <li><a href="CHANGELOG.html#label-Version+4.2.2">Version 4.2.2</a>
57
-
58
44
  <li><a href="CHANGELOG.html#label-Version+4.2.0">Version 4.2.0</a>
59
-
60
45
  <li><a href="CHANGELOG.html#label-Version+3.5.8">Version 3.5.8</a>
61
-
62
46
  <li><a href="CHANGELOG.html#label-Version+3.5.7">Version 3.5.7</a>
63
-
64
47
  <li><a href="CHANGELOG.html#label-Version+3.5.6">Version 3.5.6</a>
65
-
66
48
  <li><a href="CHANGELOG.html#label-Version+3.5.5">Version 3.5.5</a>
67
-
68
49
  <li><a href="CHANGELOG.html#label-Version+3.5.4">Version 3.5.4</a>
69
-
70
50
  <li><a href="CHANGELOG.html#label-Version+3.5.2">Version 3.5.2</a>
71
-
72
51
  <li><a href="CHANGELOG.html#label-Version+3.5.1">Version 3.5.1</a>
73
-
74
52
  <li><a href="CHANGELOG.html#label-Version+3.4.1">Version 3.4.1</a>
75
-
76
53
  <li><a href="CHANGELOG.html#label-Version+3.4.0">Version 3.4.0</a>
77
-
78
54
  <li><a href="CHANGELOG.html#label-Version+3.3.4">Version 3.3.4</a>
79
-
80
55
  <li><a href="CHANGELOG.html#label-Version+3.3.3">Version 3.3.3</a>
81
-
82
56
  <li><a href="CHANGELOG.html#label-Version+3.3.1">Version 3.3.1</a>
83
-
84
57
  <li><a href="CHANGELOG.html#label-Version+3.3.0">Version 3.3.0</a>
85
-
86
58
  <li><a href="CHANGELOG.html#label-Version+3.2.4">Version 3.2.4</a>
87
-
88
59
  <li><a href="CHANGELOG.html#label-Version+3.2.3">Version 3.2.3</a>
89
-
90
60
  <li><a href="CHANGELOG.html#label-Version+3.2.2">Version 3.2.2</a>
91
-
92
61
  <li><a href="CHANGELOG.html#label-Version+3.2.1">Version 3.2.1</a>
93
-
94
62
  <li><a href="CHANGELOG.html#label-Version+3.1.7">Version 3.1.7</a>
95
-
96
63
  <li><a href="CHANGELOG.html#label-Version+3.1.5">Version 3.1.5</a>
97
-
98
64
  <li><a href="CHANGELOG.html#label-Version+3.1.4">Version 3.1.4</a>
99
-
100
65
  <li><a href="CHANGELOG.html#label-Version+3.1.3">Version 3.1.3</a>
101
-
102
66
  <li><a href="CHANGELOG.html#label-Version+3.0.6">Version 3.0.6</a>
103
-
104
67
  <li><a href="CHANGELOG.html#label-Version+3.0.5">Version 3.0.5</a>
105
-
106
68
  <li><a href="CHANGELOG.html#label-Version+2.7.23">Version 2.7.23</a>
107
-
108
69
  <li><a href="CHANGELOG.html#label-Version+2.7.18">Version 2.7.18</a>
109
-
110
70
  <li><a href="CHANGELOG.html#label-Version+2.7.17">Version 2.7.17</a>
111
-
112
71
  <li><a href="CHANGELOG.html#label-Version+2.7.14">Version 2.7.14</a>
113
-
114
72
  <li><a href="CHANGELOG.html#label-Version+2.7.12">Version 2.7.12</a>
115
-
116
73
  <li><a href="CHANGELOG.html#label-Version+2.7.9">Version 2.7.9</a>
117
-
118
74
  <li><a href="CHANGELOG.html#label-Version+2.7.6">Version 2.7.6</a>
119
-
120
75
  <li><a href="CHANGELOG.html#label-Version+2.7.5">Version 2.7.5</a>
121
-
122
76
  <li><a href="CHANGELOG.html#label-Version+2.6.2">Version 2.6.2</a>
123
-
124
77
  <li><a href="CHANGELOG.html#label-Version+2.5.18">Version 2.5.18</a>
125
-
126
78
  <li><a href="CHANGELOG.html#label-Version+2.5.16">Version 2.5.16</a>
127
-
128
79
  <li><a href="CHANGELOG.html#label-Version+2.5.13.pre">Version 2.5.13.pre</a>
129
-
130
80
  <li><a href="CHANGELOG.html#label-Version+2.5.9.pre">Version 2.5.9.pre</a>
131
-
132
81
  <li><a href="CHANGELOG.html#label-Version+2.4.8">Version 2.4.8</a>
133
-
134
82
  <li><a href="CHANGELOG.html#label-Version+2.4.7">Version 2.4.7</a>
135
-
136
83
  <li><a href="CHANGELOG.html#label-Version+1.3.4">Version 1.3.4</a>
137
-
138
84
  <li><a href="CHANGELOG.html#label-Version+1.3.3">Version 1.3.3</a>
139
-
140
85
  <li><a href="CHANGELOG.html#label-Version+1.2.0">Version 1.2.0</a>
141
-
142
86
  <li><a href="CHANGELOG.html#label-Version+1.1.0">Version 1.1.0</a>
143
-
144
87
  <li><a href="CHANGELOG.html#label-Version+1.0.0">Version 1.0.0</a>
145
-
146
88
  <li><a href="CHANGELOG.html#label-Version+0.9.0.pre">Version 0.9.0.pre</a>
147
-
148
89
  <li><a href="CHANGELOG.html#label-Version+0.8.2">Version 0.8.2</a>
149
-
150
90
  <li><a href="CHANGELOG.html#label-Version+0.8.1">Version 0.8.1</a>
151
-
152
91
  <li><a href="CHANGELOG.html#label-Version+0.8.0">Version 0.8.0</a>
153
-
154
92
  <li><a href="CHANGELOG.html#label-Version+0.7.0">Version 0.7.0</a>
155
-
156
93
  <li><a href="CHANGELOG.html#label-Version+0.7.0.pre">Version 0.7.0.pre</a>
157
-
158
94
  <li><a href="CHANGELOG.html#label-Version+0.6.5">Version 0.6.5</a>
159
-
160
95
  <li><a href="CHANGELOG.html#label-Version+0.6.4">Version 0.6.4</a>
161
-
162
96
  <li><a href="CHANGELOG.html#label-Version+0.6.3">Version 0.6.3</a>
163
-
164
97
  <li><a href="CHANGELOG.html#label-Version+0.6.2">Version 0.6.2</a>
165
-
166
98
  <li><a href="CHANGELOG.html#label-Version+0.6.1">Version 0.6.1</a>
167
-
168
99
  <li><a href="CHANGELOG.html#label-Version+0.6.0">Version 0.6.0</a>
169
-
170
100
  <li><a href="CHANGELOG.html#label-Version+0.5.1">Version 0.5.1</a>
171
-
172
101
  <li><a href="CHANGELOG.html#label-Version+0.5.1.pre">Version 0.5.1.pre</a>
173
-
174
102
  <li><a href="CHANGELOG.html#label-Version+0.5.0">Version 0.5.0</a>
175
-
176
103
  <li><a href="CHANGELOG.html#label-Version+0.5.0.pre">Version 0.5.0.pre</a>
177
-
178
104
  <li><a href="CHANGELOG.html#label-Version+0.4.0">Version 0.4.0</a>
179
-
180
105
  <li><a href="CHANGELOG.html#label-Version+0.3.4">Version 0.3.4</a>
181
-
182
106
  <li><a href="CHANGELOG.html#label-Version+0.3.3">Version 0.3.3</a>
183
-
184
107
  <li><a href="CHANGELOG.html#label-Version+0.3.2">Version 0.3.2</a>
185
-
186
108
  <li><a href="CHANGELOG.html#label-Version+0.2.0">Version 0.2.0</a>
187
-
188
109
  <li><a href="CHANGELOG.html#label-Version+0.1.6">Version 0.1.6</a>
189
-
190
110
  <li><a href="CHANGELOG.html#label-Version+0.1.5">Version 0.1.5</a>
191
-
192
111
  <li><a href="CHANGELOG.html#label-Version+0.1.4">Version 0.1.4</a>
193
-
194
112
  <li><a href="CHANGELOG.html#label-Version+0.1.3">Version 0.1.3</a>
195
-
196
113
  <li><a href="CHANGELOG.html#label-Version+0.1.2">Version 0.1.2</a>
197
-
198
114
  <li><a href="CHANGELOG.html#label-Version+0.1.1">Version 0.1.1</a>
199
-
200
115
  <li><a href="CHANGELOG.html#label-Version+0.1.0">Version 0.1.0</a>
201
-
202
116
  <li><a href="CHANGELOG.html#label-Version+0.1.0.pre">Version 0.1.0.pre</a>
203
-
204
117
  <li><a href="CHANGELOG.html#label-Version+0.0.9">Version 0.0.9</a>
205
-
206
118
  <li><a href="CHANGELOG.html#label-Version+0.0.8">Version 0.0.8</a>
207
-
208
119
  <li><a href="CHANGELOG.html#label-Version+0.0.7">Version 0.0.7</a>
209
-
210
120
  <li><a href="CHANGELOG.html#label-Version+0.0.6">Version 0.0.6</a>
211
-
212
121
  <li><a href="CHANGELOG.html#label-Version+0.0.5">Version 0.0.5</a>
213
-
214
122
  <li><a href="CHANGELOG.html#label-Version+0.0.4">Version 0.0.4</a>
123
+ <li><a href="CHANGELOG.html#label-Version+0.0.3">Version 0.0.3</a>
124
+ <li><a href="CHANGELOG.html#label-Version+0.0.2">Version 0.0.2</a>
125
+ <li><a href="CHANGELOG.html#label-Version+0.0.1">Version 0.0.1</a>
126
+ <li><a href="CHANGELOG.html#label-Version+0.0.0">Version 0.0.0</a>
127
+ </ul>
128
+ </li>
129
+ <li class="file">
130
+ <a href="COPYING_md.html">COPYING</a>
215
131
 
216
- <li><a href="CHANGELOG.html#label-Version+0.0.3">Version 0.0.3</a>
217
-
218
- <li><a href="CHANGELOG.html#label-Version+0.0.2">Version 0.0.2</a>
219
-
220
- <li><a href="CHANGELOG.html#label-Version+0.0.1">Version 0.0.1</a>
221
-
222
- <li><a href="CHANGELOG.html#label-Version+0.0.0">Version 0.0.0</a>
223
-
224
- </ul>
225
-
226
- </li>
227
-
228
- <li class="file">
229
- <a href="COPYING_md.html">COPYING</a>
230
-
231
- <ul>
232
-
233
- <li><a href="COPYING_md.html#label-GNU+GENERAL+PUBLIC+LICENSE">GNU GENERAL PUBLIC LICENSE</a>
234
-
235
- <li><a href="COPYING_md.html#label-Preamble">Preamble</a>
236
-
237
- <li><a href="COPYING_md.html#label-TERMS+AND+CONDITIONS">TERMS AND CONDITIONS</a>
238
-
239
- <li><a href="COPYING_md.html#label-0.+Definitions.">0. Definitions.</a>
240
-
241
- <li><a href="COPYING_md.html#label-1.+Source+Code.">1. Source Code.</a>
242
-
243
- <li><a href="COPYING_md.html#label-2.+Basic+Permissions.">2. Basic Permissions.</a>
244
-
245
- <li><a href="COPYING_md.html#label-3.+Protecting+Users-27+Legal+Rights+From+Anti-Circumvention+Law.">3. Protecting Users&#39; Legal Rights From Anti-Circumvention Law.</a>
246
-
247
- <li><a href="COPYING_md.html#label-4.+Conveying+Verbatim+Copies.">4. Conveying Verbatim Copies.</a>
248
-
249
- <li><a href="COPYING_md.html#label-5.+Conveying+Modified+Source+Versions.">5. Conveying Modified Source Versions.</a>
250
-
251
- <li><a href="COPYING_md.html#label-6.+Conveying+Non-Source+Forms.">6. Conveying Non-Source Forms.</a>
252
-
253
- <li><a href="COPYING_md.html#label-7.+Additional+Terms.">7. Additional Terms.</a>
254
-
255
- <li><a href="COPYING_md.html#label-8.+Termination.">8. Termination.</a>
256
-
257
- <li><a href="COPYING_md.html#label-9.+Acceptance+Not+Required+for+Having+Copies.">9. Acceptance Not Required for Having Copies.</a>
258
-
259
- <li><a href="COPYING_md.html#label-10.+Automatic+Licensing+of+Downstream+Recipients.">10. Automatic Licensing of Downstream Recipients.</a>
260
-
261
- <li><a href="COPYING_md.html#label-11.+Patents.">11. Patents.</a>
262
-
263
- <li><a href="COPYING_md.html#label-12.+No+Surrender+of+Others-27+Freedom.">12. No Surrender of Others&#39; Freedom.</a>
264
-
265
- <li><a href="COPYING_md.html#label-13.+Use+with+the+GNU+Affero+General+Public+License.">13. Use with the GNU Affero General Public License.</a>
266
-
267
- <li><a href="COPYING_md.html#label-14.+Revised+Versions+of+this+License.">14. Revised Versions of this License.</a>
268
-
269
- <li><a href="COPYING_md.html#label-15.+Disclaimer+of+Warranty.">15. Disclaimer of Warranty.</a>
270
-
271
- <li><a href="COPYING_md.html#label-16.+Limitation+of+Liability.">16. Limitation of Liability.</a>
272
-
273
- <li><a href="COPYING_md.html#label-17.+Interpretation+of+Sections+15+and+16.">17. Interpretation of Sections 15 and 16.</a>
274
-
275
- <li><a href="COPYING_md.html#label-How+to+Apply+These+Terms+to+Your+New+Programs">How to Apply These Terms to Your New Programs</a>
276
-
277
- </ul>
278
-
279
- </li>
280
-
281
- <li class="file">
282
- <a href="Gemfile.html">Gemfile</a>
283
-
284
- </li>
285
-
286
- <li class="file">
287
- <a href="ISSUES_md.html">ISSUES</a>
288
-
289
- <ul>
290
-
291
- <li><a href="ISSUES_md.html#label-Gravaty+Issues">Gravaty Issues</a>
292
-
293
- <li><a href="ISSUES_md.html#label-Documentation">Documentation</a>
294
-
295
- <li><a href="ISSUES_md.html#label-Known+Bugs">Known Bugs</a>
296
-
297
- <li><a href="ISSUES_md.html#label-Reporting+Unresolved+Problems">Reporting Unresolved Problems</a>
298
-
299
- </ul>
300
-
301
- </li>
302
-
303
- <li class="file">
304
- <a href="README_md.html">README</a>
305
-
306
- <ul>
307
-
308
- <li><a href="README_md.html#label-Gravaty">Gravaty</a>
309
-
310
- <li><a href="README_md.html#label-Description">Description</a>
311
-
312
- <li><a href="README_md.html#label-Documentation">Documentation</a>
313
-
314
- <li><a href="README_md.html#label-Installing+Gravaty">Installing Gravaty</a>
315
-
316
- <li><a href="README_md.html#label-Supported+Ruby+Versions+and+Implementations">Supported Ruby Versions and Implementations</a>
317
-
318
- <li><a href="README_md.html#label-Support">Support</a>
319
-
320
- <li><a href="README_md.html#label-Contributing">Contributing</a>
321
-
322
- <li><a href="README_md.html#label-License">License</a>
323
-
324
- <li><a href="README_md.html#label-Links">Links</a>
325
-
326
- <li><a href="README_md.html#label-Savannah">Savannah</a>
327
-
328
- <li><a href="README_md.html#label-RubyGems">RubyGems</a>
329
-
330
- <li><a href="README_md.html#label-Other+links">Other links</a>
331
-
332
- <li><a href="README_md.html#label-Usage+Examples">Usage Examples</a>
333
-
334
- <li><a href="README_md.html#label-Gravatar+Terms+of+Service">Gravatar Terms of Service</a>
335
-
336
- </ul>
337
-
338
- </li>
339
-
340
- <li class="file">
341
- <a href="Rakefile.html">Rakefile</a>
342
-
343
- </li>
344
-
345
- <li class="file">
346
- <a href="acknowledgements_md.html">acknowledgements</a>
347
-
348
- <ul>
349
-
350
- <li><a href="acknowledgements_md.html#label-Acknowledgements">Acknowledgements</a>
351
-
352
- <li><a href="acknowledgements_md.html#label-RFC+5322+Email+Validation+Regex+in+Ruby+Regular+Expressions">RFC 5322 Email Validation Regex in Ruby Regular Expressions</a>
353
-
354
- <li><a href="acknowledgements_md.html#label-An+HTTP-2FHTTPS-2FFTP+file+downloader+library-2FCLI+based+upon+MiniPortile-27s+HTTP+implementation.">An HTTP/HTTPS/FTP file downloader library/CLI based upon MiniPortile&#39;s HTTP implementation.</a>
355
-
356
- </ul>
357
-
358
- </li>
359
-
360
- <li class="file">
361
- <a href="authors_md.html">authors</a>
362
-
363
- <ul>
364
-
365
- <li><a href="authors_md.html#label-Project+and+gem+owned+by">Project and gem owned by</a>
366
-
367
- <li><a href="authors_md.html#label-Authors+list+-28in+appearing+order-29">Authors list (in appearing order)</a>
368
-
369
- <li><a href="authors_md.html#label-Translations+Authors+-28in+appearing+order-29">Translations Authors (in appearing order)</a>
370
-
371
- </ul>
372
-
373
- </li>
374
-
375
- <li class="file">
376
- <a href="copyright_md.html">copyright</a>
377
-
378
- <ul>
379
-
380
- <li><a href="copyright_md.html#label-Copyright+Notes">Copyright Notes</a>
381
-
382
- <li><a href="copyright_md.html#label-RDoc">RDoc</a>
383
-
384
- <li><a href="copyright_md.html#label-Darkfish+-28darkfish.js+-26+rdoc.css-29">Darkfish (darkfish.js &amp; rdoc.css)</a>
385
-
386
- <li><a href="copyright_md.html#label-Sorce+Code+Pro+Font+-28-26+fonts.css-29">Sorce Code Pro Font (&amp; fonts.css)</a>
387
-
388
- <li><a href="copyright_md.html#label-Lato+Font">Lato Font</a>
389
-
390
- <li><a href="copyright_md.html#label-Silk+Icons">Silk Icons</a>
391
-
392
- <li><a href="copyright_md.html#label-jquery.js">jquery.js</a>
393
-
394
- <li><a href="copyright_md.html#label-Sizzle.js">Sizzle.js</a>
395
-
396
- <li><a href="copyright_md.html#label-JsonIndex+generator+-28navigation.js+-26+search.js+-26+search_index.js+-26+searcher.js-29">JsonIndex generator (navigation.js &amp; search.js &amp; search_index.js &amp; searcher.js)</a>
397
-
398
- <li><a href="copyright_md.html#label-root.crt">root.crt</a>
399
-
400
- <li><a href="copyright_md.html#label-Root+Distribution+License">Root Distribution License</a>
401
-
402
- <li><a href="copyright_md.html#label-Terms">Terms</a>
403
-
404
- <li><a href="copyright_md.html#label-Copyright">Copyright</a>
405
-
406
- <li><a href="copyright_md.html#label-License">License</a>
407
-
408
- <li><a href="copyright_md.html#label-Disclaimer">Disclaimer</a>
409
-
410
- <li><a href="copyright_md.html#label-Statutory+Rights">Statutory Rights</a>
411
-
412
- <li><a href="copyright_md.html#label-Alternatives">Alternatives</a>
413
-
414
- </ul>
415
-
416
- </li>
417
-
418
- <li class="file">
419
- <a href="examples/cacert_pem.html">cacert.pem</a>
420
-
421
- <ul>
422
-
423
- <li><a href="examples/cacert_pem.html#label-"></a>
424
-
425
- <li><a href="examples/cacert_pem.html#label-"></a>
426
-
427
- <li><a href="examples/cacert_pem.html#label-"></a>
428
-
429
- <li><a href="examples/cacert_pem.html#label-"></a>
430
-
431
- <li><a href="examples/cacert_pem.html#label-"></a>
432
-
433
- <li><a href="examples/cacert_pem.html#label-"></a>
434
-
435
- <li><a href="examples/cacert_pem.html#label-"></a>
436
-
437
- <li><a href="examples/cacert_pem.html#label-"></a>
438
-
439
- <li><a href="examples/cacert_pem.html#label-"></a>
440
-
441
- <li><a href="examples/cacert_pem.html#label-"></a>
442
-
443
- <li><a href="examples/cacert_pem.html#label-"></a>
444
-
445
- <li><a href="examples/cacert_pem.html#label-"></a>
446
-
447
- <li><a href="examples/cacert_pem.html#label-"></a>
448
-
449
- <li><a href="examples/cacert_pem.html#label-"></a>
450
-
451
- <li><a href="examples/cacert_pem.html#label-"></a>
452
-
453
- <li><a href="examples/cacert_pem.html#label-"></a>
454
-
455
- <li><a href="examples/cacert_pem.html#label-"></a>
456
-
457
- <li><a href="examples/cacert_pem.html#label-"></a>
458
-
459
- <li><a href="examples/cacert_pem.html#label-"></a>
460
-
461
- <li><a href="examples/cacert_pem.html#label-"></a>
462
-
463
- <li><a href="examples/cacert_pem.html#label-"></a>
464
-
465
- <li><a href="examples/cacert_pem.html#label-"></a>
466
-
467
- <li><a href="examples/cacert_pem.html#label-"></a>
468
-
469
- <li><a href="examples/cacert_pem.html#label-"></a>
470
-
471
- <li><a href="examples/cacert_pem.html#label-"></a>
472
-
473
- <li><a href="examples/cacert_pem.html#label-"></a>
474
-
475
- <li><a href="examples/cacert_pem.html#label-"></a>
476
-
477
- <li><a href="examples/cacert_pem.html#label-"></a>
478
-
479
- <li><a href="examples/cacert_pem.html#label-"></a>
480
-
481
- <li><a href="examples/cacert_pem.html#label-"></a>
482
-
483
- <li><a href="examples/cacert_pem.html#label-"></a>
484
-
485
- <li><a href="examples/cacert_pem.html#label-"></a>
486
-
487
- <li><a href="examples/cacert_pem.html#label-"></a>
488
-
489
- <li><a href="examples/cacert_pem.html#label-"></a>
490
-
491
- <li><a href="examples/cacert_pem.html#label-"></a>
492
-
493
- <li><a href="examples/cacert_pem.html#label-"></a>
494
-
495
- <li><a href="examples/cacert_pem.html#label-"></a>
496
-
497
- <li><a href="examples/cacert_pem.html#label-"></a>
498
-
499
- <li><a href="examples/cacert_pem.html#label-"></a>
500
-
501
- <li><a href="examples/cacert_pem.html#label-"></a>
502
-
503
- <li><a href="examples/cacert_pem.html#label-"></a>
504
-
505
- <li><a href="examples/cacert_pem.html#label-"></a>
506
-
507
- <li><a href="examples/cacert_pem.html#label-"></a>
508
-
509
- <li><a href="examples/cacert_pem.html#label-"></a>
510
-
511
- <li><a href="examples/cacert_pem.html#label-"></a>
512
-
513
- <li><a href="examples/cacert_pem.html#label-"></a>
514
-
515
- <li><a href="examples/cacert_pem.html#label-"></a>
516
-
517
- <li><a href="examples/cacert_pem.html#label-"></a>
518
-
519
- <li><a href="examples/cacert_pem.html#label-"></a>
520
-
521
- <li><a href="examples/cacert_pem.html#label-"></a>
522
-
523
- <li><a href="examples/cacert_pem.html#label-"></a>
524
-
525
- <li><a href="examples/cacert_pem.html#label-"></a>
526
-
527
- <li><a href="examples/cacert_pem.html#label-"></a>
528
-
529
- <li><a href="examples/cacert_pem.html#label-"></a>
530
-
531
- <li><a href="examples/cacert_pem.html#label-"></a>
532
-
533
- <li><a href="examples/cacert_pem.html#label-"></a>
534
-
535
- <li><a href="examples/cacert_pem.html#label-"></a>
536
-
537
- <li><a href="examples/cacert_pem.html#label-"></a>
538
-
539
- <li><a href="examples/cacert_pem.html#label-"></a>
540
-
541
- <li><a href="examples/cacert_pem.html#label-"></a>
542
-
543
- <li><a href="examples/cacert_pem.html#label-"></a>
544
-
545
- <li><a href="examples/cacert_pem.html#label-"></a>
546
-
547
- <li><a href="examples/cacert_pem.html#label-"></a>
548
-
549
- <li><a href="examples/cacert_pem.html#label-"></a>
550
-
551
- <li><a href="examples/cacert_pem.html#label-"></a>
552
-
553
- <li><a href="examples/cacert_pem.html#label-"></a>
554
-
555
- <li><a href="examples/cacert_pem.html#label-"></a>
556
-
557
- <li><a href="examples/cacert_pem.html#label-"></a>
558
-
559
- <li><a href="examples/cacert_pem.html#label-"></a>
560
-
561
- <li><a href="examples/cacert_pem.html#label-"></a>
562
-
563
- <li><a href="examples/cacert_pem.html#label-"></a>
564
-
565
- <li><a href="examples/cacert_pem.html#label-"></a>
566
-
567
- <li><a href="examples/cacert_pem.html#label-"></a>
568
-
569
- <li><a href="examples/cacert_pem.html#label-"></a>
570
-
571
- <li><a href="examples/cacert_pem.html#label-"></a>
572
-
573
- <li><a href="examples/cacert_pem.html#label-"></a>
574
-
575
- <li><a href="examples/cacert_pem.html#label-"></a>
576
-
577
- <li><a href="examples/cacert_pem.html#label-"></a>
578
-
579
- <li><a href="examples/cacert_pem.html#label-"></a>
580
-
581
- <li><a href="examples/cacert_pem.html#label-"></a>
582
-
583
- <li><a href="examples/cacert_pem.html#label-"></a>
584
-
585
- <li><a href="examples/cacert_pem.html#label-"></a>
586
-
587
- <li><a href="examples/cacert_pem.html#label-"></a>
588
-
589
- <li><a href="examples/cacert_pem.html#label-"></a>
590
-
591
- <li><a href="examples/cacert_pem.html#label-"></a>
592
-
593
- <li><a href="examples/cacert_pem.html#label-"></a>
594
-
595
- <li><a href="examples/cacert_pem.html#label-"></a>
596
-
597
- <li><a href="examples/cacert_pem.html#label-"></a>
598
-
599
- <li><a href="examples/cacert_pem.html#label-"></a>
600
-
601
- <li><a href="examples/cacert_pem.html#label-"></a>
602
-
603
- <li><a href="examples/cacert_pem.html#label-"></a>
604
-
605
- <li><a href="examples/cacert_pem.html#label-"></a>
606
-
607
- <li><a href="examples/cacert_pem.html#label-"></a>
608
-
609
- <li><a href="examples/cacert_pem.html#label-"></a>
610
-
611
- <li><a href="examples/cacert_pem.html#label-"></a>
612
-
613
- <li><a href="examples/cacert_pem.html#label-"></a>
614
-
615
- <li><a href="examples/cacert_pem.html#label-"></a>
616
-
617
- <li><a href="examples/cacert_pem.html#label-"></a>
618
-
619
- <li><a href="examples/cacert_pem.html#label-"></a>
620
-
621
- <li><a href="examples/cacert_pem.html#label-"></a>
622
-
623
- <li><a href="examples/cacert_pem.html#label-"></a>
624
-
625
- <li><a href="examples/cacert_pem.html#label-"></a>
626
-
627
- <li><a href="examples/cacert_pem.html#label-"></a>
628
-
629
- <li><a href="examples/cacert_pem.html#label-"></a>
630
-
631
- <li><a href="examples/cacert_pem.html#label-"></a>
632
-
633
- <li><a href="examples/cacert_pem.html#label-"></a>
634
-
635
- <li><a href="examples/cacert_pem.html#label-"></a>
636
-
637
- <li><a href="examples/cacert_pem.html#label-"></a>
638
-
639
- <li><a href="examples/cacert_pem.html#label-"></a>
640
-
641
- <li><a href="examples/cacert_pem.html#label-"></a>
642
-
643
- <li><a href="examples/cacert_pem.html#label-"></a>
644
-
645
- <li><a href="examples/cacert_pem.html#label-"></a>
646
-
647
- <li><a href="examples/cacert_pem.html#label-"></a>
648
-
649
- <li><a href="examples/cacert_pem.html#label-"></a>
650
-
651
- <li><a href="examples/cacert_pem.html#label-"></a>
652
-
653
- <li><a href="examples/cacert_pem.html#label-"></a>
654
-
655
- <li><a href="examples/cacert_pem.html#label-"></a>
656
-
657
- <li><a href="examples/cacert_pem.html#label-"></a>
658
-
659
- <li><a href="examples/cacert_pem.html#label-"></a>
660
-
661
- <li><a href="examples/cacert_pem.html#label-"></a>
662
-
663
- <li><a href="examples/cacert_pem.html#label-"></a>
664
-
665
- <li><a href="examples/cacert_pem.html#label-"></a>
666
-
667
- <li><a href="examples/cacert_pem.html#label-"></a>
668
-
669
- <li><a href="examples/cacert_pem.html#label-"></a>
670
-
671
- <li><a href="examples/cacert_pem.html#label-"></a>
672
-
673
- <li><a href="examples/cacert_pem.html#label-"></a>
674
-
675
- <li><a href="examples/cacert_pem.html#label-"></a>
676
-
677
- <li><a href="examples/cacert_pem.html#label-"></a>
678
-
679
- <li><a href="examples/cacert_pem.html#label-"></a>
680
-
681
- <li><a href="examples/cacert_pem.html#label-"></a>
682
-
683
- <li><a href="examples/cacert_pem.html#label-"></a>
684
-
685
- <li><a href="examples/cacert_pem.html#label-"></a>
686
-
687
- <li><a href="examples/cacert_pem.html#label-"></a>
688
-
689
- <li><a href="examples/cacert_pem.html#label-"></a>
690
-
691
- <li><a href="examples/cacert_pem.html#label-"></a>
692
-
693
- <li><a href="examples/cacert_pem.html#label-"></a>
694
-
695
- <li><a href="examples/cacert_pem.html#label-"></a>
696
-
697
- <li><a href="examples/cacert_pem.html#label-"></a>
132
+ <ul>
133
+ <li><a href="COPYING_md.html#label-GNU+GENERAL+PUBLIC+LICENSE">GNU GENERAL PUBLIC LICENSE</a>
134
+ <li><a href="COPYING_md.html#label-Preamble">Preamble</a>
135
+ <li><a href="COPYING_md.html#label-TERMS+AND+CONDITIONS">TERMS AND CONDITIONS</a>
136
+ <li><a href="COPYING_md.html#label-0.+Definitions.">0. Definitions.</a>
137
+ <li><a href="COPYING_md.html#label-1.+Source+Code.">1. Source Code.</a>
138
+ <li><a href="COPYING_md.html#label-2.+Basic+Permissions.">2. Basic Permissions.</a>
139
+ <li><a href="COPYING_md.html#label-3.+Protecting+Users-27+Legal+Rights+From+Anti-Circumvention+Law.">3. Protecting Users&#39; Legal Rights From Anti-Circumvention Law.</a>
140
+ <li><a href="COPYING_md.html#label-4.+Conveying+Verbatim+Copies.">4. Conveying Verbatim Copies.</a>
141
+ <li><a href="COPYING_md.html#label-5.+Conveying+Modified+Source+Versions.">5. Conveying Modified Source Versions.</a>
142
+ <li><a href="COPYING_md.html#label-6.+Conveying+Non-Source+Forms.">6. Conveying Non-Source Forms.</a>
143
+ <li><a href="COPYING_md.html#label-7.+Additional+Terms.">7. Additional Terms.</a>
144
+ <li><a href="COPYING_md.html#label-8.+Termination.">8. Termination.</a>
145
+ <li><a href="COPYING_md.html#label-9.+Acceptance+Not+Required+for+Having+Copies.">9. Acceptance Not Required for Having Copies.</a>
146
+ <li><a href="COPYING_md.html#label-10.+Automatic+Licensing+of+Downstream+Recipients.">10. Automatic Licensing of Downstream Recipients.</a>
147
+ <li><a href="COPYING_md.html#label-11.+Patents.">11. Patents.</a>
148
+ <li><a href="COPYING_md.html#label-12.+No+Surrender+of+Others-27+Freedom.">12. No Surrender of Others&#39; Freedom.</a>
149
+ <li><a href="COPYING_md.html#label-13.+Use+with+the+GNU+Affero+General+Public+License.">13. Use with the GNU Affero General Public License.</a>
150
+ <li><a href="COPYING_md.html#label-14.+Revised+Versions+of+this+License.">14. Revised Versions of this License.</a>
151
+ <li><a href="COPYING_md.html#label-15.+Disclaimer+of+Warranty.">15. Disclaimer of Warranty.</a>
152
+ <li><a href="COPYING_md.html#label-16.+Limitation+of+Liability.">16. Limitation of Liability.</a>
153
+ <li><a href="COPYING_md.html#label-17.+Interpretation+of+Sections+15+and+16.">17. Interpretation of Sections 15 and 16.</a>
154
+ <li><a href="COPYING_md.html#label-How+to+Apply+These+Terms+to+Your+New+Programs">How to Apply These Terms to Your New Programs</a>
155
+ </ul>
156
+ </li>
157
+ <li class="file">
158
+ <a href="Gemfile.html">Gemfile</a>
159
+ </li>
160
+ <li class="file">
161
+ <a href="README_md.html">README</a>
698
162
 
163
+ <ul>
164
+ <li><a href="README_md.html#label-Gravaty">Gravaty</a>
165
+ <li><a href="README_md.html#label-Table+of+Contents">Table of Contents</a>
166
+ <li><a href="README_md.html#label-Background">Background</a>
167
+ <li><a href="README_md.html#label-Install">Install</a>
168
+ <li><a href="README_md.html#label-Savannah">Savannah</a>
169
+ <li><a href="README_md.html#label-RubyGems">RubyGems</a>
170
+ <li><a href="README_md.html#label-Usage">Usage</a>
171
+ <li><a href="README_md.html#label-Maintainers">Maintainers</a>
172
+ <li><a href="README_md.html#label-Thanks">Thanks</a>
173
+ <li><a href="README_md.html#label-Contributing">Contributing</a>
174
+ <li><a href="README_md.html#label-License">License</a>
699
175
  </ul>
176
+ </li>
177
+ <li class="file">
178
+ <a href="Rakefile.html">Rakefile</a>
179
+ </li>
180
+ <li class="file">
181
+ <a href="copyright_md.html">copyright</a>
700
182
 
183
+ <ul>
184
+ <li><a href="copyright_md.html#label-Copyright+Notes">Copyright Notes</a>
185
+ <li><a href="copyright_md.html#label-RDoc">RDoc</a>
186
+ <li><a href="copyright_md.html#label-Darkfish+-28darkfish.js+-26+rdoc.css-29">Darkfish (darkfish.js &amp; rdoc.css)</a>
187
+ <li><a href="copyright_md.html#label-Sorce+Code+Pro+Font+-28-26+fonts.css-29">Sorce Code Pro Font (&amp; fonts.css)</a>
188
+ <li><a href="copyright_md.html#label-Lato+Font">Lato Font</a>
189
+ <li><a href="copyright_md.html#label-Silk+Icons">Silk Icons</a>
190
+ <li><a href="copyright_md.html#label-JsonIndex+generator+-28navigation.js+-26+search.js+-26+search_index.js+-26+searcher.js-29">JsonIndex generator (navigation.js &amp; search.js &amp; search_index.js &amp; searcher.js)</a>
191
+ </ul>
701
192
  </li>
702
-
703
193
  </ul>
704
194
 
705
-
706
195
  <h2 id="classes">Classes and Modules</h2>
707
196
  <ul>
708
-
709
197
  <li class="module">
710
198
  <a href="Gravaty.html">Gravaty</a>
711
-
712
199
  </li>
713
-
714
200
  <li class="class">
715
201
  <a href="Gravaty/Gravaty.html">Gravaty::Gravaty</a>
716
-
717
202
  </li>
718
-
719
203
  <li class="module">
720
204
  <a href="Gravaty/ParsableDuckType.html">Gravaty::ParsableDuckType</a>
721
-
722
205
  </li>
723
-
724
206
  <li class="class">
725
207
  <a href="Gravaty/Parser.html">Gravaty::Parser</a>
726
-
727
208
  </li>
728
-
729
209
  <li class="module">
730
210
  <a href="Gravaty/Parsers.html">Gravaty::Parsers</a>
731
-
732
211
  </li>
733
-
734
212
  <li class="class">
735
213
  <a href="Gravaty/Parsers/Avatar.html">Gravaty::Parsers::Avatar</a>
736
-
737
214
  </li>
738
-
739
215
  <li class="class">
740
216
  <a href="Gravaty/Parsers/Callback.html">Gravaty::Parsers::Callback</a>
741
-
742
217
  </li>
743
-
744
218
  <li class="class">
745
219
  <a href="Gravaty/Parsers/Default.html">Gravaty::Parsers::Default</a>
746
-
747
220
  </li>
748
-
749
221
  <li class="class">
750
222
  <a href="Gravaty/Parsers/Force.html">Gravaty::Parsers::Force</a>
751
-
752
223
  </li>
753
-
754
224
  <li class="class">
755
225
  <a href="Gravaty/Parsers/Format.html">Gravaty::Parsers::Format</a>
756
-
757
226
  </li>
758
-
759
227
  <li class="class">
760
228
  <a href="Gravaty/Parsers/Pixelsize.html">Gravaty::Parsers::Pixelsize</a>
761
-
762
229
  </li>
763
-
764
230
  <li class="class">
765
231
  <a href="Gravaty/Parsers/Rating.html">Gravaty::Parsers::Rating</a>
766
-
767
232
  </li>
768
-
769
233
  <li class="class">
770
234
  <a href="Gravaty/Parsers/Secure.html">Gravaty::Parsers::Secure</a>
771
-
772
235
  </li>
773
-
774
236
  <li class="class">
775
237
  <a href="Gravaty/Parsers/Type.html">Gravaty::Parsers::Type</a>
776
-
777
238
  </li>
778
-
779
239
  <li class="module">
780
240
  <a href="Gravaty/Utils.html">Gravaty::Utils</a>
781
-
782
241
  </li>
783
-
784
242
  <li class="module">
785
243
  <a href="Gravaty/Utils/Downloader.html">Gravaty::Utils::Downloader</a>
786
-
787
244
  </li>
788
-
789
245
  <li class="class">
790
246
  <a href="Gravaty/Utils/Downloader/Downloader.html">Gravaty::Utils::Downloader::Downloader</a>
791
-
792
247
  </li>
793
-
794
248
  <li class="module">
795
249
  <a href="Gravaty/Utils/Raisers.html">Gravaty::Utils::Raisers</a>
796
-
797
250
  </li>
798
-
799
251
  <li class="module">
800
252
  <a href="Gravaty/Utils/Rfc5322.html">Gravaty::Utils::Rfc5322</a>
801
-
802
253
  </li>
803
-
804
254
  <li class="module">
805
255
  <a href="Gravaty/Utils/RpcConnector.html">Gravaty::Utils::RpcConnector</a>
806
-
807
256
  </li>
808
-
809
257
  <li class="class">
810
258
  <a href="Gravaty/Utils/RpcConnector/RpcConnector.html">Gravaty::Utils::RpcConnector::RpcConnector</a>
811
-
812
259
  </li>
813
-
814
260
  <li class="class">
815
261
  <a href="Object.html">Object</a>
816
-
817
262
  </li>
818
-
819
263
  </ul>
820
264
 
821
265
  <h2 id="methods">Methods</h2>
@@ -831,11 +275,6 @@
831
275
  &mdash;
832
276
  <span class="container">Gravaty</span>
833
277
 
834
- <li class="method">
835
- <a href="Gravaty/Parser.html#method-c-new">::new</a>
836
- &mdash;
837
- <span class="container">Gravaty::Parser</span>
838
-
839
278
  <li class="method">
840
279
  <a href="Gravaty/Gravaty.html#method-c-new">::new</a>
841
280
  &mdash;
@@ -846,6 +285,16 @@
846
285
  &mdash;
847
286
  <span class="container">Gravaty::Utils::RpcConnector::RpcConnector</span>
848
287
 
288
+ <li class="method">
289
+ <a href="Gravaty/Parser.html#method-c-new">::new</a>
290
+ &mdash;
291
+ <span class="container">Gravaty::Parser</span>
292
+
293
+ <li class="method">
294
+ <a href="Gravaty.html#method-c-parser">::parser</a>
295
+ &mdash;
296
+ <span class="container">Gravaty</span>
297
+
849
298
  <li class="method">
850
299
  <a href="Gravaty/Gravaty.html#method-i-3C-3D-3E">#&lt;=&gt;</a>
851
300
  &mdash;
@@ -871,6 +320,11 @@
871
320
  &mdash;
872
321
  <span class="container">Gravaty::Gravaty</span>
873
322
 
323
+ <li class="method">
324
+ <a href="Object.html#method-i-internet_connection-3F">#internet_connection?</a>
325
+ &mdash;
326
+ <span class="container">Object</span>
327
+
874
328
  <li class="method">
875
329
  <a href="Gravaty/Gravaty.html#method-i-json">#json</a>
876
330
  &mdash;
@@ -887,54 +341,54 @@
887
341
  <span class="container">Object</span>
888
342
 
889
343
  <li class="method">
890
- <a href="Gravaty/Parsers/Rating.html#method-i-parse">#parse</a>
344
+ <a href="Gravaty/Parser.html#method-i-parse">#parse</a>
891
345
  &mdash;
892
- <span class="container">Gravaty::Parsers::Rating</span>
346
+ <span class="container">Gravaty::Parser</span>
893
347
 
894
348
  <li class="method">
895
- <a href="Gravaty/Parsers/Secure.html#method-i-parse">#parse</a>
349
+ <a href="Gravaty/Parsers/Callback.html#method-i-parse">#parse</a>
896
350
  &mdash;
897
- <span class="container">Gravaty::Parsers::Secure</span>
351
+ <span class="container">Gravaty::Parsers::Callback</span>
898
352
 
899
353
  <li class="method">
900
- <a href="Gravaty/Parsers/Type.html#method-i-parse">#parse</a>
354
+ <a href="Gravaty/Parsers/Rating.html#method-i-parse">#parse</a>
901
355
  &mdash;
902
- <span class="container">Gravaty::Parsers::Type</span>
356
+ <span class="container">Gravaty::Parsers::Rating</span>
903
357
 
904
358
  <li class="method">
905
- <a href="Gravaty/Parser.html#method-i-parse">#parse</a>
359
+ <a href="Gravaty/Parsers/Force.html#method-i-parse">#parse</a>
906
360
  &mdash;
907
- <span class="container">Gravaty::Parser</span>
361
+ <span class="container">Gravaty::Parsers::Force</span>
908
362
 
909
363
  <li class="method">
910
- <a href="Gravaty/Parsers/Avatar.html#method-i-parse">#parse</a>
364
+ <a href="Gravaty/Parsers/Format.html#method-i-parse">#parse</a>
911
365
  &mdash;
912
- <span class="container">Gravaty::Parsers::Avatar</span>
366
+ <span class="container">Gravaty::Parsers::Format</span>
913
367
 
914
368
  <li class="method">
915
- <a href="Gravaty/Parsers/Callback.html#method-i-parse">#parse</a>
369
+ <a href="Gravaty/Parsers/Secure.html#method-i-parse">#parse</a>
916
370
  &mdash;
917
- <span class="container">Gravaty::Parsers::Callback</span>
371
+ <span class="container">Gravaty::Parsers::Secure</span>
918
372
 
919
373
  <li class="method">
920
- <a href="Gravaty/Parsers/Default.html#method-i-parse">#parse</a>
374
+ <a href="Gravaty/Parsers/Pixelsize.html#method-i-parse">#parse</a>
921
375
  &mdash;
922
- <span class="container">Gravaty::Parsers::Default</span>
376
+ <span class="container">Gravaty::Parsers::Pixelsize</span>
923
377
 
924
378
  <li class="method">
925
- <a href="Gravaty/Parsers/Force.html#method-i-parse">#parse</a>
379
+ <a href="Gravaty/Parsers/Avatar.html#method-i-parse">#parse</a>
926
380
  &mdash;
927
- <span class="container">Gravaty::Parsers::Force</span>
381
+ <span class="container">Gravaty::Parsers::Avatar</span>
928
382
 
929
383
  <li class="method">
930
- <a href="Gravaty/Parsers/Format.html#method-i-parse">#parse</a>
384
+ <a href="Gravaty/Parsers/Type.html#method-i-parse">#parse</a>
931
385
  &mdash;
932
- <span class="container">Gravaty::Parsers::Format</span>
386
+ <span class="container">Gravaty::Parsers::Type</span>
933
387
 
934
388
  <li class="method">
935
- <a href="Gravaty/Parsers/Pixelsize.html#method-i-parse">#parse</a>
389
+ <a href="Gravaty/Parsers/Default.html#method-i-parse">#parse</a>
936
390
  &mdash;
937
- <span class="container">Gravaty::Parsers::Pixelsize</span>
391
+ <span class="container">Gravaty::Parsers::Default</span>
938
392
 
939
393
  <li class="method">
940
394
  <a href="Gravaty/Gravaty.html#method-i-profile">#profile</a>
@@ -971,11 +425,126 @@
971
425
  &mdash;
972
426
  <span class="container">Gravaty::Gravaty</span>
973
427
 
428
+ <li class="method">
429
+ <a href="Object.html#method-i-test_allowed_sizes">#test_allowed_sizes</a>
430
+ &mdash;
431
+ <span class="container">Object</span>
432
+
433
+ <li class="method">
434
+ <a href="Object.html#method-i-test_arg_error">#test_arg_error</a>
435
+ &mdash;
436
+ <span class="container">Object</span>
437
+
438
+ <li class="method">
439
+ <a href="Object.html#method-i-test_avatar_formats">#test_avatar_formats</a>
440
+ &mdash;
441
+ <span class="container">Object</span>
442
+
443
+ <li class="method">
444
+ <a href="Object.html#method-i-test_default_options">#test_default_options</a>
445
+ &mdash;
446
+ <span class="container">Object</span>
447
+
448
+ <li class="method">
449
+ <a href="Object.html#method-i-test_digest">#test_digest</a>
450
+ &mdash;
451
+ <span class="container">Object</span>
452
+
453
+ <li class="method">
454
+ <a href="Object.html#method-i-test_info_exist">#test_info_exist</a>
455
+ &mdash;
456
+ <span class="container">Object</span>
457
+
458
+ <li class="method">
459
+ <a href="Object.html#method-i-test_info_test">#test_info_test</a>
460
+ &mdash;
461
+ <span class="container">Object</span>
462
+
463
+ <li class="method">
464
+ <a href="Object.html#method-i-test_invalid">#test_invalid</a>
465
+ &mdash;
466
+ <span class="container">Object</span>
467
+
468
+ <li class="method">
469
+ <a href="Object.html#method-i-test_invalid_parameter">#test_invalid_parameter</a>
470
+ &mdash;
471
+ <span class="container">Object</span>
472
+
473
+ <li class="method">
474
+ <a href="Object.html#method-i-test_json">#test_json</a>
475
+ &mdash;
476
+ <span class="container">Object</span>
477
+
478
+ <li class="method">
479
+ <a href="Object.html#method-i-test_nil">#test_nil</a>
480
+ &mdash;
481
+ <span class="container">Object</span>
482
+
483
+ <li class="method">
484
+ <a href="Object.html#method-i-test_no_arg_error">#test_no_arg_error</a>
485
+ &mdash;
486
+ <span class="container">Object</span>
487
+
488
+ <li class="method">
489
+ <a href="Object.html#method-i-test_own_default_image">#test_own_default_image</a>
490
+ &mdash;
491
+ <span class="container">Object</span>
492
+
493
+ <li class="method">
494
+ <a href="Object.html#method-i-test_own_https_image">#test_own_https_image</a>
495
+ &mdash;
496
+ <span class="container">Object</span>
497
+
498
+ <li class="method">
499
+ <a href="Object.html#method-i-test_parameters">#test_parameters</a>
500
+ &mdash;
501
+ <span class="container">Object</span>
502
+
974
503
  <li class="method">
975
504
  <a href="Gravaty/ParsableDuckType.html#method-i-test_parsable_duck_type">#test_parsable_duck_type</a>
976
505
  &mdash;
977
506
  <span class="container">Gravaty::ParsableDuckType</span>
978
507
 
508
+ <li class="method">
509
+ <a href="Object.html#method-i-test_password">#test_password</a>
510
+ &mdash;
511
+ <span class="container">Object</span>
512
+
513
+ <li class="method">
514
+ <a href="Object.html#method-i-test_qrcode">#test_qrcode</a>
515
+ &mdash;
516
+ <span class="container">Object</span>
517
+
518
+ <li class="method">
519
+ <a href="Object.html#method-i-test_qrcode_sizes">#test_qrcode_sizes</a>
520
+ &mdash;
521
+ <span class="container">Object</span>
522
+
523
+ <li class="method">
524
+ <a href="Object.html#method-i-test_rating_options">#test_rating_options</a>
525
+ &mdash;
526
+ <span class="container">Object</span>
527
+
528
+ <li class="method">
529
+ <a href="Object.html#method-i-test_unallowed_sizes">#test_unallowed_sizes</a>
530
+ &mdash;
531
+ <span class="container">Object</span>
532
+
533
+ <li class="method">
534
+ <a href="Object.html#method-i-test_unknown_parameters">#test_unknown_parameters</a>
535
+ &mdash;
536
+ <span class="container">Object</span>
537
+
538
+ <li class="method">
539
+ <a href="Object.html#method-i-test_valid">#test_valid</a>
540
+ &mdash;
541
+ <span class="container">Object</span>
542
+
543
+ <li class="method">
544
+ <a href="Object.html#method-i-test_valid_parameter">#test_valid_parameter</a>
545
+ &mdash;
546
+ <span class="container">Object</span>
547
+
979
548
  <li class="method">
980
549
  <a href="Gravaty/Gravaty.html#method-i-to_json">#to_json</a>
981
550
  &mdash;
@@ -990,14 +559,13 @@
990
559
  <a href="Gravaty/Gravaty.html#method-i-xmlrpc">#xmlrpc</a>
991
560
  &mdash;
992
561
  <span class="container">Gravaty::Gravaty</span>
993
-
994
562
  </ul>
995
563
  </main>
996
564
 
997
565
 
998
566
  <footer id="validator-badges" role="contentinfo">
999
567
  <p><a href="https://validator.w3.org/check/referer">Validate</a>
1000
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
568
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.0.
1001
569
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
1002
570
  </footer>
1003
571