bundleup 2.2.0 → 2.2.1
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/lib/bundleup/backup.rb +2 -2
- data/lib/bundleup/gemfile.rb +2 -2
- data/lib/bundleup/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7d5e452355464a53bcf221f7fe0ea354d1ec89c08fcfd91a9989eba473b88d93
|
4
|
+
data.tar.gz: f5d1604efbe92c487e8783cca06ce38e1709d611121773062171b571f5eaa165
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b0a295de79f9e7df972fb00ed879900c4d8ed654ce10496d0d37a820469e26bdc3e526d1fc5e53df5239aebcb692ff186f4b1c2ec37b3c5a76b5dc2a294facbb
|
7
|
+
data.tar.gz: 9ca7bd1d309c8b21b297ee61505d23d3a2db4b2e6bbb066061bb38b26c5b9c36d7ba33216b74a58499a02d77107b24df85eb904a1f5bd533f5d25777cf906350
|
data/lib/bundleup/backup.rb
CHANGED
@@ -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] =
|
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
|
-
|
21
|
+
File.write(path, contents)
|
22
22
|
end
|
23
23
|
end
|
24
24
|
|
data/lib/bundleup/gemfile.rb
CHANGED
@@ -4,7 +4,7 @@ module Bundleup
|
|
4
4
|
|
5
5
|
def initialize(path="Gemfile")
|
6
6
|
@path = path
|
7
|
-
@contents =
|
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
|
-
|
48
|
+
File.write(path, contents)
|
49
49
|
end
|
50
50
|
|
51
51
|
attr_reader :contents
|
data/lib/bundleup/version.rb
CHANGED
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.
|
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-
|
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.
|
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`
|