Skip to content

Commit

Permalink
Finish renaming gem (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaicolBen authored Jun 12, 2020
1 parent a6d5851 commit 9b3d10c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -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'
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
simple-redis-lock (0.1.0)
simple_redis_lock (0.1.0)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -43,7 +43,7 @@ DEPENDENCIES
activesupport
rake (~> 10.0)
rspec (~> 3.0)
simple-redis-lock!
simple_redis_lock!

BUNDLED WITH
2.0.1
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand All @@ -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:
Expand All @@ -32,12 +32,12 @@ 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

The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).

## 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).
2 changes: 1 addition & 1 deletion simple_redis_lock.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ['[email protected]']
Expand Down

0 comments on commit 9b3d10c

Please sign in to comment.