bake-bundler 0.3.1 → 0.3.2
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 +4 -4
- data/bake/bundler.rb +1 -1
- data/bake/bundler/release.rb +2 -2
- data/lib/bake/bundler/version.rb +1 -1
- metadata +10 -14
- data/.gitignore +0 -12
- data/.rspec +0 -3
- data/Gemfile +0 -4
- data/README.md +0 -65
- data/bake-bundler.gemspec +0 -24
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5d94b43b2cb8ad37c97f8ad4a88657707ce5d5329185b58e0e819013100a7188
|
|
4
|
+
data.tar.gz: 060fde377386d35bf841f33c8f83c90329d574331d72111cc729c2cda507edbb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8aa8b459a31a4f467237368fad4f47875963d0459bd2ba8c2da5bfdcfd24adc19d535252891633ea184f0cc42216361bf842bd1f9613755423ec3ac355677109
|
|
7
|
+
data.tar.gz: 34aa9d57cd6cf1b50a29638818731d4956ba48c87075f9a1797eb02c52d252f1132aa52f86973c636e4dd9038e17553472ef36c87931414ac9a23bd85c0de978
|
data/bake/bundler.rb
CHANGED
data/bake/bundler/release.rb
CHANGED
|
@@ -18,8 +18,8 @@ VERSION_PATTERN = /VERSION = ['"](?<value>\d+\.\d+\.\d+)(?<pre>.*?)['"]/
|
|
|
18
18
|
|
|
19
19
|
# Scans the files listed in the gemspec for a file named `version.rb`. Extracts the VERSION constant and updates it according to the version bump. Commits the changes to git using the specified message.
|
|
20
20
|
#
|
|
21
|
-
# @
|
|
22
|
-
# @
|
|
21
|
+
# @parameter bump [Array(Integer | Nil)] the version bump to apply before publishing, e.g. `0,1,0` to increment minor version number.
|
|
22
|
+
# @parameter message [String] the git commit message to use.
|
|
23
23
|
def increment(bump, message: "Bump version.")
|
|
24
24
|
release = context.lookup('bundler:release')
|
|
25
25
|
helper = release.instance.helper
|
data/lib/bake/bundler/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bake-bundler
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Samuel Williams
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-09-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bake
|
|
@@ -38,27 +38,23 @@ dependencies:
|
|
|
38
38
|
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '0'
|
|
41
|
-
description:
|
|
41
|
+
description:
|
|
42
42
|
email:
|
|
43
|
-
- samuel.williams@oriontransfer.co.nz
|
|
44
43
|
executables: []
|
|
45
44
|
extensions: []
|
|
46
45
|
extra_rdoc_files: []
|
|
47
46
|
files:
|
|
48
|
-
- ".gitignore"
|
|
49
|
-
- ".rspec"
|
|
50
|
-
- Gemfile
|
|
51
|
-
- README.md
|
|
52
|
-
- bake-bundler.gemspec
|
|
53
47
|
- bake/bundler.rb
|
|
54
48
|
- bake/bundler/release.rb
|
|
55
49
|
- lib/bake/bundler.rb
|
|
56
50
|
- lib/bake/bundler/helper.rb
|
|
57
51
|
- lib/bake/bundler/version.rb
|
|
58
52
|
homepage: https://github.com/ioquatix/bake-bundler
|
|
59
|
-
licenses:
|
|
60
|
-
|
|
61
|
-
|
|
53
|
+
licenses:
|
|
54
|
+
- MIT
|
|
55
|
+
metadata:
|
|
56
|
+
funding_uri: https://github.com/sponsors/ioquatix/
|
|
57
|
+
post_install_message:
|
|
62
58
|
rdoc_options: []
|
|
63
59
|
require_paths:
|
|
64
60
|
- lib
|
|
@@ -74,7 +70,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
74
70
|
version: '0'
|
|
75
71
|
requirements: []
|
|
76
72
|
rubygems_version: 3.1.2
|
|
77
|
-
signing_key:
|
|
73
|
+
signing_key:
|
|
78
74
|
specification_version: 4
|
|
79
75
|
summary: Provides recipes for bundler.
|
|
80
76
|
test_files: []
|
data/.gitignore
DELETED
data/.rspec
DELETED
data/Gemfile
DELETED
data/README.md
DELETED
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
# Bake::Bundler
|
|
2
|
-
|
|
3
|
-
Provides bake tasks for releasing gems using bundler.
|
|
4
|
-
|
|
5
|
-
## Installation
|
|
6
|
-
|
|
7
|
-
```
|
|
8
|
-
bundle add bake-bundler
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
## Usage
|
|
12
|
-
|
|
13
|
-
### Build
|
|
14
|
-
|
|
15
|
-
```
|
|
16
|
-
bake bundler:build
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
### Install
|
|
20
|
-
|
|
21
|
-
```
|
|
22
|
-
bake bundler:install
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
### Release
|
|
26
|
-
|
|
27
|
-
```
|
|
28
|
-
bake bundler:release
|
|
29
|
-
```
|
|
30
|
-
|
|
31
|
-
## Contributing
|
|
32
|
-
|
|
33
|
-
1. Fork it
|
|
34
|
-
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
35
|
-
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
36
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
|
37
|
-
5. Create new Pull Request
|
|
38
|
-
|
|
39
|
-
## See Also
|
|
40
|
-
|
|
41
|
-
- [Bake](https://github.com/ioquatix/bake) — The bake task execution tool.
|
|
42
|
-
|
|
43
|
-
## License
|
|
44
|
-
|
|
45
|
-
Released under the MIT license.
|
|
46
|
-
|
|
47
|
-
Copyright, 2020, by [Samuel G. D. Williams](http://www.codeotaku.com).
|
|
48
|
-
|
|
49
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
50
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
51
|
-
in the Software without restriction, including without limitation the rights
|
|
52
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
53
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
54
|
-
furnished to do so, subject to the following conditions:
|
|
55
|
-
|
|
56
|
-
The above copyright notice and this permission notice shall be included in
|
|
57
|
-
all copies or substantial portions of the Software.
|
|
58
|
-
|
|
59
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
60
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
61
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
62
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
63
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
64
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
65
|
-
THE SOFTWARE.
|
data/bake-bundler.gemspec
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
require_relative 'lib/bake/bundler/version'
|
|
2
|
-
|
|
3
|
-
Gem::Specification.new do |spec|
|
|
4
|
-
spec.name = "bake-bundler"
|
|
5
|
-
spec.version = Bake::Bundler::VERSION
|
|
6
|
-
spec.authors = ["Samuel Williams"]
|
|
7
|
-
spec.email = ["samuel.williams@oriontransfer.co.nz"]
|
|
8
|
-
|
|
9
|
-
spec.summary = "Provides recipes for bundler."
|
|
10
|
-
spec.homepage = "https://github.com/ioquatix/bake-bundler"
|
|
11
|
-
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
|
12
|
-
|
|
13
|
-
# Specify which files should be added to the gem when it is released.
|
|
14
|
-
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
15
|
-
spec.files = Dir.chdir(__dir__) do
|
|
16
|
-
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
17
|
-
end
|
|
18
|
-
|
|
19
|
-
spec.add_dependency "bake", "~> 0.9"
|
|
20
|
-
spec.add_dependency "rspec"
|
|
21
|
-
|
|
22
|
-
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
23
|
-
spec.require_paths = ["lib"]
|
|
24
|
-
end
|