README.md in faster_path-0.1.3 vs README.md in faster_path-0.1.4
- old
+ new
@@ -1,14 +1,12 @@
# FasterPath
[![Gem Version](https://badge.fury.io/rb/faster_path.svg)](https://badge.fury.io/rb/faster_path)
[![Build Status](https://travis-ci.org/danielpclark/faster_path.svg?branch=master)](https://travis-ci.org/danielpclark/faster_path)
[![Tweet This](https://raw.githubusercontent.com/danielpclark/faster_path/master/assets/tweet.png)](https://twitter.com/share?url=https%3A%2F%2Fgithub.com%2Fdanielpclark%2Ffaster_path&via=6ftdan&hashtags=Ruby&text=You%20could%20save%2015%25%20or%20more%20on%20website%20load%20time%20by%20switching%20to%20the%20FasterPath%20gem.)
-_Build is currently failing is for the monkey-patch tests only._
+#### This gem shaves off more than 30% of my Rails application page load time.
-#### As of gem version 0.0.9 this shaves off 66% of my Rails applications page load time.
-
The primary **GOAL** of this project is to improve performance in the most heavily used areas of Ruby as
path relation and file lookup is currently a huge bottleneck in performance. As this is the case the
path performance updates will likely not be limited to just changing the Pathname class but also will
be offering changes in related methods and classes.
@@ -86,10 +84,10 @@
|FasterPath Rust Implementation|Ruby 2.3.1 Implementation|Performance Improvement|
|---|---|:---:|
| `FasterPath.absolute?` | `Pathname#absolute?` | 1234.6% |
| `FasterPath.basename` | `File.basename` | 31.3% |
-| `FasterPath.chop_basename` | `Pathname#chop_basename` | 46.7% |
+| `FasterPath.chop_basename` | `Pathname#chop_basename` | 66.0% |
| `FasterPath.relative?` | `Pathname#relative?` | 1262.3% |
| `FasterPath.blank?` | | |
You may choose to use the methods directly, or scope change to rewrite behavior on the
standard library with the included refinements, or even call a method to monkeypatch