bundler-compose 0.0.1 → 0.0.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/CHANGELOG.md +7 -0
- data/README.md +39 -11
- data/lib/bundler/compose/version.rb +1 -1
- metadata +7 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 72ee6234e544b03a780a0594c8c600201c9e87c82f71886cd5b499cb65f0b091
|
4
|
+
data.tar.gz: 9851c52125ea194da47d7e1479824b53a2aa0434c41588d9a529ace0e1305263
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d8cd43fdf8d3074c9694a337ed9b1dc3b128c5caa61c5dcbdfbcb3a033f50a70812ab9a566a851e5b1c7d6a6c1f88111c37559f5870763ea4940d5408471b55
|
7
|
+
data.tar.gz: ec2411470d78b6d71e1cf2f34b72997877566ee5fd4427c93d30e6ed5c9e6b87ac5fcf6f753dc3699330053a0ff927b8b1841618ae5019541057539f13db28ea
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [0.0.2](https://github.com/segiddins/bundler-compose/compare/v0.0.1...v0.0.2) (2023-04-04)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* Change version to 0.0.2 ([526e9eb](https://github.com/segiddins/bundler-compose/commit/526e9eb9191df10ac350be6337957ef9fb6c10e9))
|
9
|
+
|
3
10
|
## [0.1.0] - 2023-03-20
|
4
11
|
|
5
12
|
- Initial release
|
data/README.md
CHANGED
@@ -1,24 +1,52 @@
|
|
1
1
|
# Bundler::Compose
|
2
2
|
|
3
|
-
|
3
|
+
This is a bundler subcommand called `bundle compose` that makes it easy to layer additional gems on top of an existing bundle.
|
4
4
|
|
5
|
-
|
5
|
+
Currently, two modes are supported: `bundle compose gem GEMNAME` and `bundle compose gemfile PATH_TO_ADDITIONAL_GEMFILE`.
|
6
6
|
|
7
|
-
|
7
|
+
For example, if you want to run solargraph in your rails project without adding it to the main Gemfile for that project,
|
8
|
+
|
9
|
+
```sh
|
10
|
+
$ cd path/to/project
|
11
|
+
$ gem install bundler-compose
|
12
|
+
$ bundle compose gem solargraph -- [solargraph options]
|
13
|
+
```
|
14
|
+
|
15
|
+
or if you want to run rubocop & plugins in a project that doesn't want to commit to a linter,
|
8
16
|
|
9
|
-
|
17
|
+
```sh
|
18
|
+
$ cd path/to/project
|
19
|
+
$ cat >gems.rubocop.rb <<<EOF
|
20
|
+
gem "rubopcop"
|
21
|
+
gem "rubocop-rails"
|
22
|
+
gem "rubocop-rspec"
|
23
|
+
EOF
|
24
|
+
$ bundle compose gemfile ./gems.rubocop.rb --exec rubocop -a
|
25
|
+
```
|
10
26
|
|
11
|
-
|
27
|
+
## Installation
|
28
|
+
|
29
|
+
Update to the latest rubygems and run:
|
12
30
|
|
13
|
-
$
|
31
|
+
$ gem exec bundler-compose ...
|
14
32
|
|
15
|
-
|
33
|
+
To install bundler-compose globally:
|
16
34
|
|
17
|
-
$ gem install
|
35
|
+
$ gem install bundler-compose
|
18
36
|
|
19
37
|
## Usage
|
20
38
|
|
21
|
-
|
39
|
+
```
|
40
|
+
Commands:
|
41
|
+
bundle compose gemfiles GEMFILES... # compose gemfiles into the current gemfile
|
42
|
+
bundle compose gems GEM_NAMES... # compose gems into the current gemfile
|
43
|
+
bundle compose help [COMMAND] # Describe subcommands or one specific subcommand
|
44
|
+
|
45
|
+
Options:
|
46
|
+
[--no-color] # Disable colorization in output
|
47
|
+
-r, [--retry=NUM] # Specify the number of times you wish to attempt network commands
|
48
|
+
-V, [--verbose], [--no-verbose] # Enable verbose output mode
|
49
|
+
```
|
22
50
|
|
23
51
|
## Development
|
24
52
|
|
@@ -28,7 +56,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
28
56
|
|
29
57
|
## Contributing
|
30
58
|
|
31
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
59
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/segiddins/bundler-compose. 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/segiddins/bundler-compose/blob/main/CODE_OF_CONDUCT.md).
|
32
60
|
|
33
61
|
## License
|
34
62
|
|
@@ -36,4 +64,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
36
64
|
|
37
65
|
## Code of Conduct
|
38
66
|
|
39
|
-
Everyone interacting in the Bundler::Compose project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/
|
67
|
+
Everyone interacting in the Bundler::Compose project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/segiddins/bundler-compose/blob/main/CODE_OF_CONDUCT.md).
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bundler-compose
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samuel Giddins
|
@@ -10,7 +10,10 @@ bindir: exe
|
|
10
10
|
cert_chain: []
|
11
11
|
date: 2023-04-04 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description:
|
13
|
+
description: 'This is a bundler subcommand called `bundle compose` that makes it easy
|
14
|
+
to layer additional gems on top of an existing bundle.
|
15
|
+
|
16
|
+
'
|
14
17
|
email:
|
15
18
|
- segiddins@segiddins.me
|
16
19
|
executables:
|
@@ -40,6 +43,7 @@ licenses:
|
|
40
43
|
metadata:
|
41
44
|
homepage_uri: https://github.com/segiddins/bundler-compose
|
42
45
|
source_code_uri: https://github.com/segiddins/bundler-compose
|
46
|
+
changelog_uri: https://github.com/segiddins/bundler-compose/blob/v0.0.2/CHANGELOG.md
|
43
47
|
post_install_message:
|
44
48
|
rdoc_options: []
|
45
49
|
require_paths:
|
@@ -58,5 +62,5 @@ requirements: []
|
|
58
62
|
rubygems_version: 3.4.9
|
59
63
|
signing_key:
|
60
64
|
specification_version: 4
|
61
|
-
summary:
|
65
|
+
summary: Layer additional gems on top of an existing bundle
|
62
66
|
test_files: []
|