README.md in race_block-0.2.2 vs README.md in race_block-0.3.0
- old
+ new
@@ -60,11 +60,11 @@
```
Any code that you want to be "thread-safe" and ensure is only executing in one location should be placed in a `RaceBlock` with a unique identifying key that will be checked across all instances.
```ruby
-RaceBlock.start('unique_key', {}) do
+RaceBlock.start('unique_key', **kwargs) do
# Insert code that should only be executed once at a time here...
end
```
### Configuration
@@ -94,9 +94,19 @@
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/joeyparis/race_block. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/joeyparis/race_block/blob/master/CODE_OF_CONDUCT.md).
+
+I am also interested in porting this project to multiple languages and would love help in the languages I am less familiar with.
+
+- [x] Ruby
+- [ ] JavaScript
+- [ ] Python
+- [ ] Go
+- [ ] LolCode
+- [ ] ..?
+
## License
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).