From 0ad651729c6ff71b70a9de3d68a9337273e2f780 Mon Sep 17 00:00:00 2001 From: Thorsten Eckel Date: Mon, 16 May 2016 16:51:15 +0200 Subject: [PATCH] Changed gem name to prevent collisions. --- README.md | 6 +++--- inquirer.gemspec | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 29679c9..7a6bfd1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Inquirer +# inquirer.rb A collection of common interactive command line user interfaces. A (not yet compleded) clone of the great [Inquirer.js](https://github.com/SBoudrias/Inquirer.js) and strongly inspired by the similar [inquirer.rb](https://github.com/arlimus/inquirer.rb). @@ -16,7 +16,7 @@ Started as a fork of [inquirer.rb](https://github.com/arlimus/inquirer.rb) the c Add this line to your application's Gemfile: ```ruby -gem 'inquirer' +gem 'inquirer.rb' ``` And then execute: @@ -25,7 +25,7 @@ And then execute: Or install it yourself as: - $ gem install inquirer + $ gem install inquirer.rb ## Usage diff --git a/inquirer.gemspec b/inquirer.gemspec index dd36946..6a3feaa 100644 --- a/inquirer.gemspec +++ b/inquirer.gemspec @@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'inquirer/version' Gem::Specification.new do |spec| - spec.name = 'inquirer' + spec.name = 'inquirer.rb' spec.version = Inquirer::VERSION spec.authors = ['Thorsten Eckel'] spec.email = ['te@znuny.com']