From 3dbc49092d5d24e060f6f882d8f3863e88f1c8c1 Mon Sep 17 00:00:00 2001 From: Gonzalo Bulnes Guilpain Date: Sun, 24 Apr 2016 16:06:44 +1000 Subject: [PATCH] Move to semantic versioning Bump version number Minor remove excessive installation details Installing gems manually ('gem install dredd_hooks') is always possible, however, if you who needs it to be mentionned in the README, you are probably not familar with Ruby and should use a Gemfile. --- Gemfile.lock | 2 +- README.md | 14 ++++---------- lib/dredd_hooks/version.rb | 2 +- 3 files changed, 6 insertions(+), 12 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index ce15229..1aa83b1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - dredd_hooks (0.0.1) + dredd_hooks (0.1.0) GEM remote: https://rubygems.org/ diff --git a/README.md b/README.md index 7161e68..bf324a1 100644 --- a/README.md +++ b/README.md @@ -7,19 +7,13 @@ Test your api with [Dredd HTTP API testing framework](https://github.com/apiaryi ## Installation -Add this line to your application's Gemfile: +Add the gem to your `Gemfile`: ```ruby -gem 'dredd_hooks' -``` - -And then execute: - - $ bundle +# Gemfile -Or install it yourself as: - - $ gem install dredd_hooks +gem 'dredd_hooks', '0.1.0' # see semver.org +``` ## Usage diff --git a/lib/dredd_hooks/version.rb b/lib/dredd_hooks/version.rb index af729a1..fd782a9 100644 --- a/lib/dredd_hooks/version.rb +++ b/lib/dredd_hooks/version.rb @@ -1,3 +1,3 @@ module DreddHooks - VERSION = "0.0.1" + VERSION = "0.1.0" end