bundleup 2.1.3 → 2.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f8a962e269c6e12d142a5e7e464044acdf1ffd80e4a75939fc6f5be7a2a19ad1
4
- data.tar.gz: 86692adf1c57156cf441e2dc7b8aba2fe9f424fe1e93c3abb075e1db7b38a22e
3
+ metadata.gz: 90900280e56ac6b5f06de3ff3e2abd50c793f6983bc26311834c42b0ce539e0a
4
+ data.tar.gz: 56cfe6367e27a4d004fb23b0a8aec8d80bc3f790509a75da9fef1597891e12f0
5
5
  SHA512:
6
- metadata.gz: c288f7fdcc1b441a1bd027303ef0270870d6a36be2272d0c4e4984f04612a1d69a847ae73e47db9dba4fd6eba326c5d44cb7b256a860221cb975dc04a7ae283b
7
- data.tar.gz: 7891c266cc969b16a66e1ab5ef245fbf6119218972e4ed94317bc2488e914863176e49eba0ce04aea634df1be51c827f4d9357ddad9be1fb5a6f63ae2b09e09f
6
+ metadata.gz: b805fc9edd1a175b4a24490e5f2a4c873b4f287284d57ca7cbee68a86f5c212c063536f3b4da471da9b8800a809eecc7a0821f107115840aaf2457b630a87666
7
+ data.tar.gz: 07de7fb2b55a42175874132cee04bc6ffc4ec9e6122a7f4861c62fbc6e8c591c212029364226ecbcc611ea0cfc2653f114305b701d500b54cef30252182ef547
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2021 Matt Brictson
3
+ Copyright (c) 2022 Matt Brictson
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -19,7 +19,7 @@ Here it is in action:
19
19
  ## Requirements
20
20
 
21
21
  - Bundler 1.16 or later
22
- - Ruby 2.5 or later
22
+ - Ruby 2.6 or later
23
23
 
24
24
  ## Usage
25
25
 
@@ -12,13 +12,13 @@ module Bundleup
12
12
 
13
13
  def initialize(*paths)
14
14
  @original_contents = paths.each_with_object({}) do |path, hash|
15
- hash[path] = IO.read(path)
15
+ hash[path] = File.read(path)
16
16
  end
17
17
  end
18
18
 
19
19
  def restore
20
20
  original_contents.each do |path, contents|
21
- IO.write(path, contents)
21
+ File.write(path, contents)
22
22
  end
23
23
  end
24
24
 
@@ -4,7 +4,7 @@ module Bundleup
4
4
 
5
5
  def initialize(path="Gemfile")
6
6
  @path = path
7
- @contents = IO.read(path)
7
+ @contents = File.read(path)
8
8
  end
9
9
 
10
10
  def gem_comments
@@ -45,7 +45,7 @@ module Bundleup
45
45
  end
46
46
  raise "Can't rewrite version for #{gem_name}; it does not have a pin" unless found
47
47
 
48
- IO.write(path, contents)
48
+ File.write(path, contents)
49
49
  end
50
50
 
51
51
  attr_reader :contents
@@ -1,3 +1,3 @@
1
1
  module Bundleup
2
- VERSION = "2.1.3".freeze
2
+ VERSION = "2.2.2".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundleup
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.3
4
+ version: 2.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Brictson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-04-04 00:00:00.000000000 Z
11
+ date: 2022-02-26 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Use `bundleup` whenever you want to update the locked Gemfile dependencies
14
14
  of a Ruby project. It shows exactly what gems will be updated with color output
@@ -47,6 +47,7 @@ metadata:
47
47
  changelog_uri: https://github.com/mattbrictson/bundleup/releases
48
48
  source_code_uri: https://github.com/mattbrictson/bundleup
49
49
  homepage_uri: https://github.com/mattbrictson/bundleup
50
+ rubygems_mfa_required: 'true'
50
51
  post_install_message:
51
52
  rdoc_options: []
52
53
  require_paths:
@@ -55,14 +56,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
55
56
  requirements:
56
57
  - - ">="
57
58
  - !ruby/object:Gem::Version
58
- version: 2.5.0
59
+ version: 2.6.0
59
60
  required_rubygems_version: !ruby/object:Gem::Requirement
60
61
  requirements:
61
62
  - - ">="
62
63
  - !ruby/object:Gem::Version
63
64
  version: '0'
64
65
  requirements: []
65
- rubygems_version: 3.2.15
66
+ rubygems_version: 3.3.7
66
67
  signing_key:
67
68
  specification_version: 4
68
69
  summary: A friendlier command-line interface for Bundler’s `update` and `outdated`