feat!: Implement blank_gem that does nothing.

This commit is contained in:
2020-02-12 18:23:08 +00:00
commit 392826342b
11 changed files with 136 additions and 0 deletions

29
README.md Normal file
View File

@@ -0,0 +1,29 @@
# BlankGem
A blank/empty Ruby gem that does nothing. Useful for testing that only specific
Bundler groups are loaded when using a dummy group.
## Installation
Add this line to your application's Gemfile, ideally under a group you'll never
want:
```ruby
gem 'blank_gem', group: :never
```
And then execute:
$ bundle install
## Usage
Simply set Bundler's `without` option to exclude the group you've put the
`blank_gem` within. For example:
$ bundle config set without 'never'
## Contributing
Bug reports and pull requests are welcome on GitHub at
https://github.com/jimeh/blank_gem.