README.md in ronin-web-spider-0.1.1 vs README.md in ronin-web-spider-0.2.0.rc1

- old
+ new

@@ -302,10 +302,20 @@ puts str end end ``` +Print every JavaScript URL string literal: + +```ruby +Ronin::Web::Spider.domain('example.com') do |spider| + spider.every_javascript_url_string do |url| + puts url + end +end +``` + Print every JavaScript comment: ```ruby Ronin::Web::Spider.domain('example.com') do |spider| spider.every_javascript_comment do |comment| @@ -388,10 +398,10 @@ 7. `bundle exec rake spec` 8. `git push origin my_feature` ## License -Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) ronin-web-spider is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.