bundleup 0.9.0 → 1.0.0
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 +10 -0
- data/.travis.yml +1 -1
- data/bundleup.gemspec +11 -1
- data/lib/bundleup/version.rb +1 -1
- metadata +24 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ee16c90b0f2775beedcbfb529bf6aedaf107566c36db6a9a55b461cf83112505
|
|
4
|
+
data.tar.gz: d23b203e401b46e97a35de7edb781277111223608149a47b5bba27aa56ff0809
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c4e42550c2d45273596ede207388ec09edbff6bfaa744e049e728bd9f1464d0302dedac0387b076c897ff90f3fd1c976d694bca15594197cb6856863c287d816
|
|
7
|
+
data.tar.gz: 8875b0b77409678558a053ecd5e32ff3f8781d677acb4e05109abb99708337fd2adf6c4fdf01ab07679b05b490d60863e27c07f124fabcd5f4c0c6b26a4f5408
|
data/.rubocop.yml
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
require:
|
|
2
|
+
- rubocop-minitest
|
|
2
3
|
- rubocop-performance
|
|
3
4
|
|
|
4
5
|
AllCops:
|
|
@@ -40,8 +41,17 @@ Style/DoubleNegation:
|
|
|
40
41
|
Style/FrozenStringLiteralComment:
|
|
41
42
|
Enabled: false
|
|
42
43
|
|
|
44
|
+
Style/HashEachMethods:
|
|
45
|
+
Enabled: true
|
|
46
|
+
|
|
43
47
|
Style/HashSyntax:
|
|
44
48
|
EnforcedStyle: ruby19
|
|
45
49
|
|
|
50
|
+
Style/HashTransformKeys:
|
|
51
|
+
Enabled: true
|
|
52
|
+
|
|
53
|
+
Style/HashTransformValues:
|
|
54
|
+
Enabled: true
|
|
55
|
+
|
|
46
56
|
Style/StringLiterals:
|
|
47
57
|
EnforcedStyle: double_quotes
|
data/.travis.yml
CHANGED
data/bundleup.gemspec
CHANGED
|
@@ -11,6 +11,15 @@ Gem::Specification.new do |spec|
|
|
|
11
11
|
|
|
12
12
|
spec.summary = "A friendlier command-line interface for Bundler’s "\
|
|
13
13
|
"`update` and `outdated` commands."
|
|
14
|
+
spec.description = "Use `bundleup` whenever you want to update the "\
|
|
15
|
+
"locked Gemfile dependencies of a Ruby project. It "\
|
|
16
|
+
"shows exactly what gems will be updated with color "\
|
|
17
|
+
"output that calls attention to significant semver "\
|
|
18
|
+
"changes. Bundleup will also let you know when a "\
|
|
19
|
+
'version "pin" in your Gemfile is preventing an '\
|
|
20
|
+
"update. Bundleup is a standalone tool that leverages "\
|
|
21
|
+
"standard Bundler output and does not patch code or "\
|
|
22
|
+
"use Bundler internals."
|
|
14
23
|
spec.homepage = "https://github.com/mattbrictson/bundleup"
|
|
15
24
|
spec.license = "MIT"
|
|
16
25
|
|
|
@@ -25,6 +34,7 @@ Gem::Specification.new do |spec|
|
|
|
25
34
|
spec.add_development_dependency "minitest", "~> 5.0"
|
|
26
35
|
spec.add_development_dependency "minitest-reporters", "~> 1.1"
|
|
27
36
|
spec.add_development_dependency "rake", "~> 13.0"
|
|
28
|
-
spec.add_development_dependency "rubocop", "0.
|
|
37
|
+
spec.add_development_dependency "rubocop", "0.80.0"
|
|
38
|
+
spec.add_development_dependency "rubocop-minitest", "0.6.2"
|
|
29
39
|
spec.add_development_dependency "rubocop-performance", "1.5.2"
|
|
30
40
|
end
|
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: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matt Brictson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-02-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -72,14 +72,28 @@ dependencies:
|
|
|
72
72
|
requirements:
|
|
73
73
|
- - '='
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: 0.
|
|
75
|
+
version: 0.80.0
|
|
76
76
|
type: :development
|
|
77
77
|
prerelease: false
|
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
80
80
|
- - '='
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: 0.
|
|
82
|
+
version: 0.80.0
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: rubocop-minitest
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - '='
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: 0.6.2
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - '='
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: 0.6.2
|
|
83
97
|
- !ruby/object:Gem::Dependency
|
|
84
98
|
name: rubocop-performance
|
|
85
99
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -94,7 +108,12 @@ dependencies:
|
|
|
94
108
|
- - '='
|
|
95
109
|
- !ruby/object:Gem::Version
|
|
96
110
|
version: 1.5.2
|
|
97
|
-
description:
|
|
111
|
+
description: Use `bundleup` whenever you want to update the locked Gemfile dependencies
|
|
112
|
+
of a Ruby project. It shows exactly what gems will be updated with color output
|
|
113
|
+
that calls attention to significant semver changes. Bundleup will also let you know
|
|
114
|
+
when a version "pin" in your Gemfile is preventing an update. Bundleup is a standalone
|
|
115
|
+
tool that leverages standard Bundler output and does not patch code or use Bundler
|
|
116
|
+
internals.
|
|
98
117
|
email:
|
|
99
118
|
- bundleup@mattbrictson.com
|
|
100
119
|
executables:
|