bundleup 2.2.0 → 2.2.1

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: '02583d0ea6a0b389400ed3c24f312effae81880bbf2409ac25136681f6cd0028'
4
- data.tar.gz: e1ffadae2408a04df7d336531b41329e9de416d4b3149644768ef526658561d0
3
+ metadata.gz: 7d5e452355464a53bcf221f7fe0ea354d1ec89c08fcfd91a9989eba473b88d93
4
+ data.tar.gz: f5d1604efbe92c487e8783cca06ce38e1709d611121773062171b571f5eaa165
5
5
  SHA512:
6
- metadata.gz: e36564061fd34a361512543e26ded1f2158beb57f019eb3c67e8e1f626f00f1af02d83df19626c36632e07d0ffc1163507a006dacc2080a42fa1c522d6cfdeaa
7
- data.tar.gz: db630caef95d92d94c68e83dbd82a9cd1bec082943f377efb1655361802e2f11c86f7800956ae71f7748caa5d22347ee90d5a9d87e83c51087a26bdef7727772
6
+ metadata.gz: b0a295de79f9e7df972fb00ed879900c4d8ed654ce10496d0d37a820469e26bdc3e526d1fc5e53df5239aebcb692ff186f4b1c2ec37b3c5a76b5dc2a294facbb
7
+ data.tar.gz: 9ca7bd1d309c8b21b297ee61505d23d3a2db4b2e6bbb066061bb38b26c5b9c36d7ba33216b74a58499a02d77107b24df85eb904a1f5bd533f5d25777cf906350
@@ -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.2.0".freeze
2
+ VERSION = "2.2.1".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.2.0
4
+ version: 2.2.1
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-07-10 00:00:00.000000000 Z
11
+ date: 2021-10-13 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
@@ -62,7 +62,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
62
62
  - !ruby/object:Gem::Version
63
63
  version: '0'
64
64
  requirements: []
65
- rubygems_version: 3.2.22
65
+ rubygems_version: 3.2.26
66
66
  signing_key:
67
67
  specification_version: 4
68
68
  summary: A friendlier command-line interface for Bundler’s `update` and `outdated`