binbundle 1.0.5 → 1.0.8
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/.rubocop.yml +17 -0
- data/CHANGELOG.md +18 -0
- data/Gemfile +6 -4
- data/Gemfile.lock +7 -1
- data/README.md +34 -9
- data/Rakefile +67 -4
- data/bin/binbundle +2 -6
- data/binbundle.gemspec +21 -19
- data/lib/binbundle/gem_bins.rb +9 -5
- data/lib/binbundle/gem_list.rb +6 -4
- data/lib/binbundle/version.rb +1 -1
- data/lib/binbundle.rb +1 -0
- data/src/_README.md +79 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c0b2748f2e8c24eec90dc2856e26ddcb5844482d976ea4cefd6147d88821d65f
|
4
|
+
data.tar.gz: 3192461bfa06f6eb6cfdbbbd7f402032c36fd7eda67df87b91a08fb69e7e6e5b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6723f148c5cc7f64c1220863d77cdfb74c65ff918f3d91098419fb23660d0cf1cf07d15be626559a36d1649b6a0a59f12481b74bebd65a3bfd0fd33ce6dd46f0
|
7
|
+
data.tar.gz: c89ceb0a85a1ba3d2e7f7e404eb06c5221d2a85e83f4f8f7627b99c47efd0cdfff5572fed1fa98a37182b12f5cd962636465f03601f252081ac4b739870a7156
|
data/.rubocop.yml
CHANGED
@@ -1,5 +1,10 @@
|
|
1
|
+
require:
|
2
|
+
- rubocop-rspec
|
3
|
+
- rubocop-rake
|
4
|
+
|
1
5
|
AllCops:
|
2
6
|
TargetRubyVersion: 2.6
|
7
|
+
# SuggestExtensions: false
|
3
8
|
|
4
9
|
Style/StringLiterals:
|
5
10
|
Enabled: true
|
@@ -11,3 +16,15 @@ Style/StringLiteralsInInterpolation:
|
|
11
16
|
|
12
17
|
Layout/LineLength:
|
13
18
|
Max: 120
|
19
|
+
|
20
|
+
Metrics/MethodLength:
|
21
|
+
Max: 40
|
22
|
+
|
23
|
+
Metrics/CyclomaticComplexity:
|
24
|
+
Max: 10
|
25
|
+
|
26
|
+
Metrics/PerceivedComplexity:
|
27
|
+
Max: 30
|
28
|
+
|
29
|
+
Metrics/AbcSize:
|
30
|
+
Max: 40
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,21 @@
|
|
1
|
+
### 1.0.8
|
2
|
+
|
3
|
+
2024-08-02 09:23
|
4
|
+
|
5
|
+
#### IMPROVED
|
6
|
+
|
7
|
+
- Updates for automation
|
8
|
+
- Fix tests and rubocop warnings
|
9
|
+
|
10
|
+
### 1.0.7
|
11
|
+
|
12
|
+
2024-08-02 09:15
|
13
|
+
|
14
|
+
#### IMPROVED
|
15
|
+
|
16
|
+
- Updates for automation
|
17
|
+
- Fix tests and rubocop warnings
|
18
|
+
|
1
19
|
## 1.0.6
|
2
20
|
|
3
21
|
- Add spinners
|
data/Gemfile
CHANGED
@@ -1,12 +1,14 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
source
|
3
|
+
source 'https://rubygems.org'
|
4
4
|
|
5
5
|
# Specify your gem's dependencies in binbundle.gemspec
|
6
6
|
gemspec
|
7
7
|
|
8
|
-
gem
|
8
|
+
gem 'rake', '~> 13.0'
|
9
9
|
|
10
|
-
gem
|
10
|
+
gem 'rspec', '~> 3.0'
|
11
11
|
|
12
|
-
gem
|
12
|
+
gem 'rubocop', '~> 1.21'
|
13
|
+
gem 'rubocop-rake', require: false
|
14
|
+
gem 'rubocop-rspec', require: false
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
binbundle (1.0.
|
4
|
+
binbundle (1.0.7)
|
5
5
|
tty-spinner (~> 0.9)
|
6
6
|
|
7
7
|
GEM
|
@@ -47,6 +47,10 @@ GEM
|
|
47
47
|
unicode-display_width (>= 2.4.0, < 3.0)
|
48
48
|
rubocop-ast (1.31.3)
|
49
49
|
parser (>= 3.3.1.0)
|
50
|
+
rubocop-rake (0.6.0)
|
51
|
+
rubocop (~> 1.0)
|
52
|
+
rubocop-rspec (3.0.3)
|
53
|
+
rubocop (~> 1.61)
|
50
54
|
ruby-progressbar (1.13.0)
|
51
55
|
strscan (3.1.0)
|
52
56
|
tty-cursor (0.7.1)
|
@@ -62,6 +66,8 @@ DEPENDENCIES
|
|
62
66
|
rake (~> 13.0)
|
63
67
|
rspec (~> 3.0)
|
64
68
|
rubocop (~> 1.21)
|
69
|
+
rubocop-rake
|
70
|
+
rubocop-rspec
|
65
71
|
|
66
72
|
BUNDLED WITH
|
67
73
|
2.2.29
|
data/README.md
CHANGED
@@ -1,10 +1,13 @@
|
|
1
1
|
# Binbundle
|
2
2
|
|
3
|
+
[](https://rubygems.org/gems/na)
|
4
|
+
[](./LICENSE.txt)
|
5
|
+
|
3
6
|
Creates a "bundle" file of all installed gems with executables. The resulting file is an executable script that can be run standalone, or in combination with this script to add options like `sudo` or `--user-install` to the `gem install` commands. These options can be specified when creating the file as well. A file created with `sudo` or `--user-install` commands can still be overridden when running via this script and `--install`.
|
4
7
|
|
5
8
|
Created file is called `Binfile` in the current directory unless another path is specified with `--file`.
|
6
9
|
|
7
|
-
|
10
|
+
### Installation
|
8
11
|
|
9
12
|
Install with:
|
10
13
|
|
@@ -14,14 +17,24 @@ If this causes errors, use:
|
|
14
17
|
|
15
18
|
$ gem install --user-install binbundle
|
16
19
|
|
17
|
-
|
20
|
+
### Usage
|
21
|
+
|
22
|
+
Run `binbundle bundle` to create a Binfile in the current directory, or with `--file FILENAME` to specify a path/filename. That file can optionally be made executable (you'll be prompted). In the future when doing a clean install or using a new system, you can just run that file as a standalone to reinstall all of your gem binaries.
|
23
|
+
|
24
|
+
Example:
|
25
|
+
|
26
|
+
binbundle bundle --file ~/dotfiles/Binfile
|
18
27
|
|
19
|
-
|
28
|
+
Using this script with the `install` subcommand will read the Binfile and execute it line by line, adding options like version numbers, sudo, or the `--user-install` flag, overriding any of these specified when bundling.
|
20
29
|
|
21
|
-
|
30
|
+
Example:
|
31
|
+
|
32
|
+
binbundle install --no-versions --user-install --file ~/dotfiles/Binfile
|
22
33
|
|
23
34
|
You can also run with subcommands `bundle` or `install`, e.g. `bundle_gem_bins install`.
|
24
35
|
|
36
|
+
#### Options
|
37
|
+
|
25
38
|
```
|
26
39
|
Usage: binbundle [options] [bundle|install]
|
27
40
|
--[no-]versions Include version info in output (default true)
|
@@ -30,24 +43,36 @@ Usage: binbundle [options] [bundle|install]
|
|
30
43
|
-u, --user-install Use --user-install to install gems
|
31
44
|
-f, --file FILE Output to alternative filename (default Binfile)
|
32
45
|
-v, --version Display version
|
33
|
-
--install Run bundle script
|
34
46
|
-h, --help Display this screen
|
35
47
|
```
|
36
48
|
|
37
|
-
|
49
|
+
### Recommendations
|
50
|
+
|
51
|
+
I recommend using Binbundle along with a tool like Dotfiles. Commit your bundle to a repo that you can easily clone to a new machine and then make `gem install binbundle` and `binbundle install ~/dotfiles/Binfile` part of your restore process.
|
52
|
+
|
53
|
+
|
54
|
+
### Support
|
55
|
+
|
56
|
+
PayPal link: [paypal.me/ttscoff](https://paypal.me/ttscoff)
|
57
|
+
|
58
|
+
### Changelog
|
59
|
+
|
60
|
+
See [CHANGELOG.md](https://github.com/ttscoff/binbundle/blob/main/CHANGELOG.md)
|
61
|
+
|
62
|
+
### Development
|
38
63
|
|
39
64
|
After checking out the repo, run `bundle install` to install dependencies. Then, run `rake spec` to run the tests.
|
40
65
|
|
41
66
|
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
42
67
|
|
43
|
-
|
68
|
+
### Contributing
|
44
69
|
|
45
70
|
Bug reports and pull requests are welcome on GitHub at <https://github.com/ttscoff/binbundle>. 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/ttscoff/binbundle/blob/main/CODE_OF_CONDUCT.md).
|
46
71
|
|
47
|
-
|
72
|
+
### License
|
48
73
|
|
49
74
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
50
75
|
|
51
|
-
|
76
|
+
### Code of Conduct
|
52
77
|
|
53
78
|
Everyone interacting in the Binbundle project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/ttscoff/binbundle/blob/main/CODE_OF_CONDUCT.md).
|
data/Rakefile
CHANGED
@@ -1,12 +1,75 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require
|
4
|
-
require
|
3
|
+
require 'rake/clean'
|
4
|
+
require 'rubygems'
|
5
|
+
require 'rubygems/package_task'
|
6
|
+
require 'rdoc/task'
|
7
|
+
require 'bundler/gem_tasks'
|
8
|
+
require 'rspec/core/rake_task'
|
9
|
+
require 'rubocop/rake_task'
|
10
|
+
|
11
|
+
desc 'Run test suite'
|
12
|
+
task test: %i[rubocop spec]
|
13
|
+
|
14
|
+
desc 'Package gem'
|
15
|
+
task package: %i[clobber build]
|
16
|
+
|
17
|
+
RuboCop::RakeTask.new do |t|
|
18
|
+
t.formatters = ['progress']
|
19
|
+
end
|
5
20
|
|
6
21
|
RSpec::Core::RakeTask.new(:spec)
|
7
22
|
|
8
|
-
|
23
|
+
Rake::RDocTask.new do |rd|
|
24
|
+
rd.main = 'README.rdoc'
|
25
|
+
rd.rdoc_files.include('README.rdoc', 'lib/**/*.rb', 'bin/**/*')
|
26
|
+
rd.title = 'binbundle'
|
27
|
+
end
|
28
|
+
|
29
|
+
desc 'Development version check'
|
30
|
+
task :ver do
|
31
|
+
gver = `git ver`
|
32
|
+
cver = IO.read(File.join(File.dirname(__FILE__), 'CHANGELOG.md')).match(/^#+ (\d+\.\d+\.\d+(\w+)?)/)[1]
|
33
|
+
res = `grep VERSION lib/binbundle/version.rb`
|
34
|
+
version = res.match(/VERSION *= *['"](\d+\.\d+\.\d+(\w+)?)/)[1]
|
35
|
+
puts "git tag: #{gver}"
|
36
|
+
puts "version.rb: #{version}"
|
37
|
+
puts "changelog: #{cver}"
|
38
|
+
end
|
39
|
+
|
40
|
+
desc 'Changelog version check'
|
41
|
+
task :cver do
|
42
|
+
puts IO.read(File.join(File.dirname(__FILE__), 'CHANGELOG.md')).match(/^#+ (\d+\.\d+\.\d+(\w+)?)/)[1]
|
43
|
+
end
|
44
|
+
|
45
|
+
desc 'Bump incremental version number'
|
46
|
+
task :bump, :type do |_, args|
|
47
|
+
args.with_defaults(type: 'inc')
|
48
|
+
version_file = 'lib/binbundle/version.rb'
|
49
|
+
content = IO.read(version_file)
|
50
|
+
content.sub!(/VERSION = '(?<major>\d+)\.(?<minor>\d+)\.(?<inc>\d+)(?<pre>\S+)?'/) do
|
51
|
+
m = Regexp.last_match
|
52
|
+
major = m['major'].to_i
|
53
|
+
minor = m['minor'].to_i
|
54
|
+
inc = m['inc'].to_i
|
55
|
+
pre = m['pre']
|
56
|
+
|
57
|
+
case args[:type]
|
58
|
+
when /^maj/
|
59
|
+
major += 1
|
60
|
+
minor = 0
|
61
|
+
inc = 0
|
62
|
+
when /^min/
|
63
|
+
minor += 1
|
64
|
+
inc = 0
|
65
|
+
else
|
66
|
+
inc += 1
|
67
|
+
end
|
9
68
|
|
10
|
-
|
69
|
+
$stdout.puts "At version #{major}.#{minor}.#{inc}#{pre}"
|
70
|
+
"VERSION = '#{major}.#{minor}.#{inc}#{pre}'"
|
71
|
+
end
|
72
|
+
File.open(version_file, 'w+') { |f| f.puts content }
|
73
|
+
end
|
11
74
|
|
12
75
|
task default: %i[spec rubocop]
|
data/bin/binbundle
CHANGED
@@ -12,7 +12,7 @@ options = {
|
|
12
12
|
}
|
13
13
|
|
14
14
|
optparse = OptionParser.new do |opts|
|
15
|
-
opts.banner = "Usage: #{File.basename(__FILE__)} [options]"
|
15
|
+
opts.banner = "Usage: #{File.basename(__FILE__)} [options] [bundle|install]"
|
16
16
|
|
17
17
|
opts.on('--[no-]versions', 'Include version info in output (default true)') do |opt|
|
18
18
|
options[:include_version] = opt
|
@@ -39,10 +39,6 @@ optparse = OptionParser.new do |opts|
|
|
39
39
|
Process.exit 0
|
40
40
|
end
|
41
41
|
|
42
|
-
opts.on('--install', 'Run bundle script') do
|
43
|
-
options[:install] = true
|
44
|
-
end
|
45
|
-
|
46
42
|
opts.on('-h', '--help', 'Display this screen') do
|
47
43
|
puts opts
|
48
44
|
exit
|
@@ -58,7 +54,7 @@ end
|
|
58
54
|
|
59
55
|
gb = Binbundle::GemBins.new(options)
|
60
56
|
|
61
|
-
options[:install] = true if ARGV.count.positive? && ARGV[0] =~ /^inst/
|
57
|
+
options[:install] = true if ARGV.count.positive? && ARGV[0] =~ /^(inst|rest)/
|
62
58
|
|
63
59
|
if options[:install]
|
64
60
|
gb.install
|
data/binbundle.gemspec
CHANGED
@@ -1,33 +1,35 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
3
|
+
lib = File.expand_path(File.join('..', 'lib'), __FILE__)
|
4
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
5
|
+
require 'binbundle/version'
|
4
6
|
|
5
|
-
Gem::Specification.new do |
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
7
|
+
Gem::Specification.new do |s|
|
8
|
+
s.name = 'binbundle'
|
9
|
+
s.version = Binbundle::VERSION
|
10
|
+
s.authors = ['Brett Terpstra']
|
11
|
+
s.email = ['me@brettterpstra.com']
|
10
12
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
s.summary = 'Bundle all your gem binaries.'
|
14
|
+
s.description = 'Easily take a snapshot of all binaries installed with Gem and restore on a fresh system.'
|
15
|
+
s.homepage = 'https://github.com/ttscoff/binbundle'
|
16
|
+
s.license = 'MIT'
|
17
|
+
s.required_ruby_version = '>= 2.6.0'
|
16
18
|
|
17
|
-
|
18
|
-
|
19
|
-
|
19
|
+
s.metadata['homepage_uri'] = s.homepage
|
20
|
+
s.metadata['source_code_uri'] = 'https://github.com/ttscoff/binbundle'
|
21
|
+
s.metadata['changelog_uri'] = 'https://github.com/ttscoff/binbundle/CHANGELOG.md'
|
20
22
|
|
21
23
|
# Specify which files should be added to the gem when it is released.
|
22
24
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
23
|
-
|
25
|
+
s.files = Dir.chdir(File.expand_path(__dir__)) do
|
24
26
|
`git ls-files -z`.split("\x0").reject do |f|
|
25
27
|
(f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
|
26
28
|
end
|
27
29
|
end
|
28
|
-
|
29
|
-
|
30
|
-
|
30
|
+
s.bindir = 'bin'
|
31
|
+
s.executables = s.files.grep(%r{\Abin/}) { |f| File.basename(f) }
|
32
|
+
s.require_paths = ['lib']
|
31
33
|
|
32
|
-
|
34
|
+
s.add_runtime_dependency('tty-spinner', '~> 0.9')
|
33
35
|
end
|
data/lib/binbundle/gem_bins.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Binbundle
|
2
4
|
# Main class
|
3
5
|
class GemBins
|
@@ -47,12 +49,14 @@ module Binbundle
|
|
47
49
|
@errors = []
|
48
50
|
|
49
51
|
lines.each do |cmd|
|
52
|
+
# rubocop:disable Naming/VariableNumber
|
50
53
|
spinner = TTY::Spinner.new("[:spinner] #{cmd} ...", hide_cursor: true, format: :dots_2)
|
54
|
+
# rubocop:enable Naming/VariableNumber
|
51
55
|
|
52
56
|
spinner.auto_spin
|
53
57
|
|
54
58
|
output = `/bin/bash -c '#{cmd}' 2>&1`
|
55
|
-
result =
|
59
|
+
result = $CHILD_STATUS.success?
|
56
60
|
|
57
61
|
if result
|
58
62
|
spinner.success
|
@@ -64,10 +68,10 @@ module Binbundle
|
|
64
68
|
end
|
65
69
|
end
|
66
70
|
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
+
return if @errors.empty?
|
72
|
+
|
73
|
+
puts 'ERRORS:'
|
74
|
+
puts @errors.join("\n")
|
71
75
|
end
|
72
76
|
|
73
77
|
def gem_command(gem, attrs)
|
data/lib/binbundle/gem_list.rb
CHANGED
@@ -5,8 +5,6 @@ module Binbundle
|
|
5
5
|
class GemList
|
6
6
|
attr_writer :include_version
|
7
7
|
|
8
|
-
attr_reader :gem_list
|
9
|
-
|
10
8
|
def initialize(contents, include_version: true)
|
11
9
|
@contents = contents
|
12
10
|
@include_version = include_version
|
@@ -14,8 +12,12 @@ module Binbundle
|
|
14
12
|
end
|
15
13
|
|
16
14
|
def gem_list
|
17
|
-
@gem_list ||= @contents.split("\n")
|
18
|
-
|
15
|
+
@gem_list ||= @contents.split("\n")
|
16
|
+
.delete_if { |line| line.strip.empty? || line =~ /^#/ }
|
17
|
+
.each_with_object([]) do |l, arr|
|
18
|
+
rx = /^(?x)(?:sudo\s)?gem\sinstall\s(?:--user-install\s)?
|
19
|
+
(?<gem>\S+)(?:\s(?:-v|--version)\s'(?<version>[0-9.]+)')?/
|
20
|
+
m = l.match(rx)
|
19
21
|
arr << { gem: m['gem'], version: m['version'] }
|
20
22
|
end
|
21
23
|
end
|
data/lib/binbundle/version.rb
CHANGED
data/lib/binbundle.rb
CHANGED
data/src/_README.md
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
<!--README--><!--GITHUB--># Binbundle
|
2
|
+
|
3
|
+
[](https://rubygems.org/gems/na)
|
4
|
+
[](./LICENSE.txt)<!--END GITHUB-->
|
5
|
+
|
6
|
+
Creates a "bundle" file of all installed gems with executables. The resulting file is an executable script that can be run standalone, or in combination with this script to add options like `sudo` or `--user-install` to the `gem install` commands. These options can be specified when creating the file as well. A file created with `sudo` or `--user-install` commands can still be overridden when running via this script and `--install`.
|
7
|
+
|
8
|
+
Created file is called `Binfile` in the current directory unless another path is specified with `--file`.
|
9
|
+
|
10
|
+
### Installation
|
11
|
+
|
12
|
+
Install with:
|
13
|
+
|
14
|
+
$ gem install binbundle
|
15
|
+
|
16
|
+
If this causes errors, use:
|
17
|
+
|
18
|
+
$ gem install --user-install binbundle
|
19
|
+
|
20
|
+
### Usage
|
21
|
+
|
22
|
+
Run `binbundle bundle` to create a Binfile in the current directory, or with `--file FILENAME` to specify a path/filename. That file can optionally be made executable (you'll be prompted). In the future when doing a clean install or using a new system, you can just run that file as a standalone to reinstall all of your gem binaries.
|
23
|
+
|
24
|
+
Example:
|
25
|
+
|
26
|
+
binbundle bundle --file ~/dotfiles/Binfile
|
27
|
+
|
28
|
+
Using this script with the `install` subcommand will read the Binfile and execute it line by line, adding options like version numbers, sudo, or the `--user-install` flag, overriding any of these specified when bundling.
|
29
|
+
|
30
|
+
Example:
|
31
|
+
|
32
|
+
binbundle install --no-versions --user-install --file ~/dotfiles/Binfile
|
33
|
+
|
34
|
+
You can also run with subcommands `bundle` or `install`, e.g. `bundle_gem_bins install`.
|
35
|
+
|
36
|
+
#### Options
|
37
|
+
|
38
|
+
```
|
39
|
+
Usage: binbundle [options] [bundle|install]
|
40
|
+
--[no-]versions Include version info in output (default true)
|
41
|
+
--dry-run Output to STDOUT instead of file
|
42
|
+
-s, --sudo Install gems with sudo
|
43
|
+
-u, --user-install Use --user-install to install gems
|
44
|
+
-f, --file FILE Output to alternative filename (default Binfile)
|
45
|
+
-v, --version Display version
|
46
|
+
-h, --help Display this screen
|
47
|
+
```
|
48
|
+
|
49
|
+
### Recommendations
|
50
|
+
|
51
|
+
I recommend using Binbundle along with a tool like Dotfiles. Commit your bundle to a repo that you can easily clone to a new machine and then make `gem install binbundle` and `binbundle install ~/dotfiles/Binfile` part of your restore process.
|
52
|
+
|
53
|
+
<!--GITHUB-->
|
54
|
+
### Support
|
55
|
+
|
56
|
+
PayPal link: [paypal.me/ttscoff](https://paypal.me/ttscoff)
|
57
|
+
|
58
|
+
### Changelog
|
59
|
+
|
60
|
+
See [CHANGELOG.md](https://github.com/ttscoff/binbundle/blob/main/CHANGELOG.md)
|
61
|
+
|
62
|
+
### Development
|
63
|
+
|
64
|
+
After checking out the repo, run `bundle install` to install dependencies. Then, run `rake spec` to run the tests.
|
65
|
+
|
66
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
67
|
+
|
68
|
+
### Contributing
|
69
|
+
|
70
|
+
Bug reports and pull requests are welcome on GitHub at <https://github.com/ttscoff/binbundle>. 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/ttscoff/binbundle/blob/main/CODE_OF_CONDUCT.md).
|
71
|
+
|
72
|
+
### License
|
73
|
+
|
74
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
75
|
+
|
76
|
+
### Code of Conduct
|
77
|
+
|
78
|
+
Everyone interacting in the Binbundle project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/ttscoff/binbundle/blob/main/CODE_OF_CONDUCT.md).
|
79
|
+
<!--END GITHUB--><!--END README-->
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: binbundle
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brett Terpstra
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-08-
|
11
|
+
date: 2024-08-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tty-spinner
|
@@ -49,6 +49,7 @@ files:
|
|
49
49
|
- lib/binbundle/gem_list.rb
|
50
50
|
- lib/binbundle/prompt.rb
|
51
51
|
- lib/binbundle/version.rb
|
52
|
+
- src/_README.md
|
52
53
|
homepage: https://github.com/ttscoff/binbundle
|
53
54
|
licenses:
|
54
55
|
- MIT
|