summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorr-obert <r-obert@users.noreply.github.com>2017-11-18 22:39:10 +0100
committerGitHub <noreply@github.com>2017-11-18 22:39:10 +0100
commit337262c76f498384f351c59b9c91fa7a70672f91 (patch)
treee71d93ba3f89f57ff08533e130cc68be7a0cc5d6 /CHANGELOG.md
parent3499b21a0295ee114bb5b4e0093b4e355389c5a3 (diff)
downloadpry-337262c76f498384f351c59b9c91fa7a70672f91.tar.gz
add gem-stat command … (#1707)
thanks to @dannytatom for the original gem-stats rubygems plugin, which inspired this Pry command. it returns some general statistics about a rubygem when given a name. note that rubygems rate limits the requests, and thanks to that this command can be a "Fail Whale" although the error is handled gracefully. This commit depends on pull request: https://github.com/pry/pry/pull/1701
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md26
1 files changed, 18 insertions, 8 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8792edfb..630491f8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,12 @@
-### 0.11.3
+### HEAD
#### Features
+* Add a new command, "gem-stat", inspired by the rubygem of a similar
+ name (gem-stats) by [@dannytatom](https://github.com/dannytatom).
+
+See pull request [#1705](https://github.com/pry/pry/pull/1705].
+
* Add Pry::Platform#known_engines, returns an Array of Ruby engines
(MRI, JRuby, Rubinius) that Pry is known to run on.
@@ -13,6 +18,18 @@ See pull request [#1694](https://github.com/pry/pry/pull/1694).
See pull request [#1701](https://github.com/pry/pry/pull/1701).
+#### Pry developers
+
+* Optionally skip a spec on specific Ruby engine(s) by providing `expect_failure: [:mri, :jruby]`
+ as a metadata Hash to the example group.
+
+See pull request [#1694](https://github.com/pry/pry/pull/1694).
+
+
+### 0.11.3
+
+#### Features
+
* Add Pry::Testable, an improved modular replacement for PryTestHelpers.
**breaking change**.
@@ -56,13 +73,6 @@ See pull request [#1691](https://github.com/pry/pry/pull/1691).
See pull request [#1674](https://github.com/pry/pry/pull/1674).
-#### Pry developers
-
-* Optionally skip a spec on specific Ruby engine(s) by providing `expect_failure: [:mri, :jruby]`
- as a metadata Hash to the example group.
-
-See pull request [#1694](https://github.com/pry/pry/pull/1694).
-
### 0.11.0
* Add alias 'whereami[?!]+' for 'whereami' command. ([#1597](https://github.com/pry/pry/pull/1597))