From 75e4a587e9e79e827809e1cdd798044d73eed93b Mon Sep 17 00:00:00 2001 From: lulalala Date: Wed, 27 May 2020 10:17:51 +0800 Subject: [PATCH] Fix readme example link Also since this is not on Rubygems, I changed the readme slightly. --- README.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a92a896..f817d90 100644 --- a/README.md +++ b/README.md @@ -7,17 +7,13 @@ Simplifies recording and analyzing a call graph from your Ruby code. Add this line to your application's Gemfile: ```ruby -gem 'flowgraph' +gem 'flowgraph', github: 'thegedge/flowgraph' ``` And then execute: $ bundle -Or install it yourself as: - - $ gem install flowgraph - ## Usage Generate a SQLite database containing a call graph for your Ruby code: @@ -45,7 +41,7 @@ Flowgraph::Hooks::RSpec.install_hook(recorder) Flowgraph::Hooks::Minitest.install_hook(recorder) ``` -See the [`examples`](https://github.com/thegedge/flowgraph/tree/examples) directory for examples of +See the [`examples`](https://github.com/thegedge/flowgraph/tree/master/examples) directory for examples of how to use this gem. ## License