blank_gem 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +14 -0
- data/Gemfile +8 -0
- data/LICENSE +21 -0
- data/README.md +29 -0
- data/Rakefile +3 -0
- data/VERSION +1 -0
- data/lib/blank_gem.rb +5 -0
- data/lib/blank_gem/version.rb +7 -0
- metadata +54 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 23b419ab27312f9ab6a74cf8ab6b505a0e8c2d20eb5c8e941fd15c5f1e5a4870
|
4
|
+
data.tar.gz: 8a8998e7fd29d79adb730afe53517157d5277a5a7165b71f5ded055a67534f93
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 03ab2a763170fd3bd6850826ba86f0af4b6969d1e7c3b8f9dfa3553124200aa178e2fd16dab65484c970d454046ce24b1e16ab8ce9adc26d95b251453427a79b
|
7
|
+
data.tar.gz: f6f2ad316c234aaa88d5b0236828d647508ed1c2d158ddba4ff04411c58e196a93d7b269287575913287bd6ff59005311658388c33fae9edf8f11fe0b9d46fcb
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
4
|
+
|
5
|
+
## 1.0.0 (2020-02-12)
|
6
|
+
|
7
|
+
|
8
|
+
### ⚠ BREAKING CHANGES
|
9
|
+
|
10
|
+
* Implement blank_gem that does nothing.
|
11
|
+
|
12
|
+
### Features
|
13
|
+
|
14
|
+
* Implement blank_gem that does nothing. ([3928263](https://github.com/jimeh/blank_gem/commit/392826342bd6ad01fbc8bab946894b9d54b109cb))
|
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2020 Jim Myhrberg
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# BlankGem
|
2
|
+
|
3
|
+
A blank/empty Ruby gem that does nothing. Useful for testing that only specific
|
4
|
+
Bundler groups are loaded when using a dummy group.
|
5
|
+
|
6
|
+
## Installation
|
7
|
+
|
8
|
+
Add this line to your application's Gemfile, ideally under a group you'll never
|
9
|
+
want:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'blank_gem', group: :never
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle install
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
Simply set Bundler's `without` option to exclude the group you've put the
|
22
|
+
`blank_gem` within. For example:
|
23
|
+
|
24
|
+
$ bundle config set without 'never'
|
25
|
+
|
26
|
+
## Contributing
|
27
|
+
|
28
|
+
Bug reports and pull requests are welcome on GitHub at
|
29
|
+
https://github.com/jimeh/blank_gem.
|
data/Rakefile
ADDED
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.0.0
|
data/lib/blank_gem.rb
ADDED
metadata
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: blank_gem
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jim Myhrberg
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-02-12 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: A blank/empty Ruby gem that does nothing. Useful for testing that only
|
14
|
+
specific Bundler groups are loaded when using a dummy group.
|
15
|
+
email:
|
16
|
+
- contact@jimeh.me
|
17
|
+
executables: []
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- CHANGELOG.md
|
22
|
+
- Gemfile
|
23
|
+
- LICENSE
|
24
|
+
- README.md
|
25
|
+
- Rakefile
|
26
|
+
- VERSION
|
27
|
+
- lib/blank_gem.rb
|
28
|
+
- lib/blank_gem/version.rb
|
29
|
+
homepage: https://github.com/jimeh/blank_gem
|
30
|
+
licenses: []
|
31
|
+
metadata:
|
32
|
+
homepage_uri: https://github.com/jimeh/blank_gem
|
33
|
+
source_code_uri: https://github.com/jimeh/blank_gem
|
34
|
+
changelog_uri: https://github.com/jimeh/blank_gem
|
35
|
+
post_install_message:
|
36
|
+
rdoc_options: []
|
37
|
+
require_paths:
|
38
|
+
- lib
|
39
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 2.0.0
|
44
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - ">="
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '0'
|
49
|
+
requirements: []
|
50
|
+
rubygems_version: 3.1.2
|
51
|
+
signing_key:
|
52
|
+
specification_version: 4
|
53
|
+
summary: A blank/empty Ruby gem that does nothing.
|
54
|
+
test_files: []
|