From 7ca7b1a594b1106212c929a74256eec4bbe68952 Mon Sep 17 00:00:00 2001 From: prashanth-sams Date: Tue, 23 Jul 2019 15:40:15 +0400 Subject: [PATCH] updated gem in the spec --- Gemfile | 1 + README.md | 3 ++- lib/testrail-rspec/version.rb | 2 +- spec/spec_helper.rb | 2 +- testrail-rspec.gemspec | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Gemfile b/Gemfile index 2503c02..03a4c0e 100755 --- a/Gemfile +++ b/Gemfile @@ -6,3 +6,4 @@ gem 'selenium-webdriver' gem 'site_prism' gem "rake" gem 'byebug' +gem 'testrail-rspec' \ No newline at end of file diff --git a/README.md b/README.md index 5dfa75a..48e3645 100755 --- a/README.md +++ b/README.md @@ -13,7 +13,8 @@ require 'testrail-rspec' **Sync Case ID in your BDD scenario** -Prefix TestRail Case ID on start of your rspec scenario; say, C860 +Prefix TestRail Case ID on start of your rspec scenario; say, `C860` + ``` describe 'Verify Google Home Page' do diff --git a/lib/testrail-rspec/version.rb b/lib/testrail-rspec/version.rb index bb6f393..8d67166 100644 --- a/lib/testrail-rspec/version.rb +++ b/lib/testrail-rspec/version.rb @@ -1,3 +1,3 @@ module TestrailRspec - VERSION = '0.1.0'.freeze + VERSION = '0.1.1'.freeze end \ No newline at end of file diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 2df91e4..4b927a1 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -6,7 +6,7 @@ require 'site_prism' require 'pages/app' require 'byebug' -require './lib/testrail-rspec' +require 'testrail-rspec' RSpec.configure do |config| diff --git a/testrail-rspec.gemspec b/testrail-rspec.gemspec index 8eba7df..167652e 100644 --- a/testrail-rspec.gemspec +++ b/testrail-rspec.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = "testrail-rspec" - s.version = "0.1.0" + s.version = "0.1.1" s.licenses = ['MIT'] s.author = ["Prashanth Sams"] s.email = ['sams.prashanth@gmail.com']