bundler-compose 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 55937db52a3f81327cb8ec5bfb0a23a1be03acaec1c0eaadf8b0855d88d56baf
4
- data.tar.gz: '084c592f6492606ebdddd24627cadbc61dfe9d5c525cb16d0258b82afc1cd6b1'
3
+ metadata.gz: 72ee6234e544b03a780a0594c8c600201c9e87c82f71886cd5b499cb65f0b091
4
+ data.tar.gz: 9851c52125ea194da47d7e1479824b53a2aa0434c41588d9a529ace0e1305263
5
5
  SHA512:
6
- metadata.gz: 0b2302ef5f9f7fa874c195514eca350777f1300b81478f6b5ee370f33fe17e38ebf83e3cfe0edfeff2d7ed9d22c33c3eca11f0d9c1bcac2559b9904a577eb2b0
7
- data.tar.gz: 113bc116ead192a50ff3261450534b0e7c14b9f6def701ed51a5f335e4f73a6b3090ec546d20380cb2569ec83dd8cc3cfb5cec1e2d597f54e4daf97fc33c0fe6
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
- TODO: Delete this and the text below, and describe your gem
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
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/bundler/compose`. To experiment with that code, run `bin/console` for an interactive prompt.
5
+ Currently, two modes are supported: `bundle compose gem GEMNAME` and `bundle compose gemfile PATH_TO_ADDITIONAL_GEMFILE`.
6
6
 
7
- ## Installation
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
- TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
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
- Install the gem and add to the application's Gemfile by executing:
27
+ ## Installation
28
+
29
+ Update to the latest rubygems and run:
12
30
 
13
- $ bundle add UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
31
+ $ gem exec bundler-compose ...
14
32
 
15
- If bundler is not being used to manage dependencies, install the gem by executing:
33
+ To install bundler-compose globally:
16
34
 
17
- $ gem install UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
35
+ $ gem install bundler-compose
18
36
 
19
37
  ## Usage
20
38
 
21
- TODO: Write usage instructions here
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/[USERNAME]/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/[USERNAME]/bundler-compose/blob/main/CODE_OF_CONDUCT.md).
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/[USERNAME]/bundler-compose/blob/main/CODE_OF_CONDUCT.md).
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).
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Bundler
4
4
  module Compose
5
- VERSION = "0.0.1"
5
+ VERSION = "0.0.2"
6
6
  end
7
7
  end
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.1
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: Ok
65
+ summary: Layer additional gems on top of an existing bundle
62
66
  test_files: []