Robb Shecter

Results 88 issues of Robb Shecter

[This code](https://github.com/textstat/textstat/blob/master/textstat/textstat.py#L1186): ```python if raw_score > 0.05: ``` should be: ```python if pdw > 5: ``` I added this to my PR #190

This is the U.S. Federal Gov't [accessibility standard](http://www.section508.gov/). Check these out: - [ ] [pa11y: Used by 18F to auto-scan .gov domains for Pulse](https://github.com/pa11y/pa11y) - [ ] [Webalin: Section 508...

new matcher

All tests pass locally, but not on Circle CI.

bug

https://github.com/sonarwhal/sonarwhal

enhancement

Here's the [conversation about it](https://www.reddit.com/r/ruby/comments/4d0unq/generating_rspec_from_a_web_interface/).

enhancement

Custom matchers should call public test functions which return `TestResult`. E.g., `BeUpTestResult` will have `success?` and `status_code`

enhancement

From the https://github.com/sporkmonger/addressable README: ``` ruby uri = Addressable::URI.parse("http://www.詹姆斯.com/") uri.normalize #=> # ``` How do the matchers currently do with URLs like these?

I.e., [Capybara matchers](http://cheatrags.com/capybara). Here's one use-case: Tests to verify that certain searches work as expected. It'd be extremely useful for webmasters of sites which have a built-in search function. At...

new matcher

A website like `mysite.com` should only be available from `mysite.com` or `www.mysite.com`, but not both. One of them must redirect 301 to the other.

new matcher

This is a rough idea: it would check for a set of problems like: - Duplicate content available via both `www.domain.com` and `domain.com`. I.e., does not have a clear canonical...

new matcher