From 9b3d10c2b0468d3d6f92f4f0ed8237fdd7e7b015 Mon Sep 17 00:00:00 2001 From: Maicol Bentancor Date: Fri, 12 Jun 2020 14:13:48 -0300 Subject: [PATCH] Finish renaming gem (#12) --- Gemfile | 2 +- Gemfile.lock | 4 ++-- README.md | 8 ++++---- simple_redis_lock.gemspec | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Gemfile b/Gemfile index 878c34f..e1f9089 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,6 @@ source 'https://rubygems.org' -# Specify your gem's dependencies in simple-redis-lock.gemspec +# Specify your gem's dependencies in simple_redis_lock.gemspec gemspec gem 'activesupport' diff --git a/Gemfile.lock b/Gemfile.lock index 89b73d9..5cf6b43 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - simple-redis-lock (0.1.0) + simple_redis_lock (0.1.0) GEM remote: https://rubygems.org/ @@ -43,7 +43,7 @@ DEPENDENCIES activesupport rake (~> 10.0) rspec (~> 3.0) - simple-redis-lock! + simple_redis_lock! BUNDLED WITH 2.0.1 diff --git a/README.md b/README.md index df78dfe..4784eeb 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Simple Redis Lock -[![CircleCI](https://circleci.com/gh/hinthealth/simple-redis-lock/tree/master.svg?style=svg&circle-token=572e9e02e6a60342db0e62647bcc0ced8295435f)](https://circleci.com/gh/hinthealth/simple-redis-lock/tree/master) +[![CircleCI](https://circleci.com/gh/hinthealth/simple_redis_lock/tree/master.svg?style=svg&circle-token=572e9e02e6a60342db0e62647bcc0ced8295435f)](https://circleci.com/gh/hinthealth/simple_redis_lock/tree/master) This gem implements a lock using Redis in 90 lines of code. @@ -9,7 +9,7 @@ This gem implements a lock using Redis in 90 lines of code. Add this line to your application's Gemfile: ```ruby -gem 'simple-redis-lock' +gem 'simple_redis_lock' ``` And then execute: @@ -32,7 +32,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To ## Contributing -Bug reports and pull requests are welcome on GitHub at https://github.com/hinthealth/simple-redis-lock. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct. +Bug reports and pull requests are welcome on GitHub at https://github.com/hinthealth/simple_redis_lock. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct. ## License @@ -40,4 +40,4 @@ The gem is available as open source under the terms of the [MIT License](https:/ ## Code of Conduct -Everyone interacting in the Simple::Redis::Lock project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/hinthealth/simple-redis-lock/blob/master/CODE_OF_CONDUCT.md). +Everyone interacting in the Simple::Redis::Lock project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/hinthealth/simple_redis_lock/blob/master/CODE_OF_CONDUCT.md). diff --git a/simple_redis_lock.gemspec b/simple_redis_lock.gemspec index c7fa2ce..6d760ca 100644 --- a/simple_redis_lock.gemspec +++ b/simple_redis_lock.gemspec @@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'version' Gem::Specification.new do |spec| - spec.name = 'simple-redis-lock' + spec.name = 'simple_redis_lock' spec.version = SimpleRedisLock::VERSION spec.authors = ['Hint'] spec.email = ['maicol.bentancor@gmail.com']