bundler-rbs-collection 0.0.1 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bundler-rbs-collection.gemspec +1 -1
- data/plugins.rb +2 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 163d0e70c9fc29d3ffe0e1b76c8e08990852aaaa280d9cd658c6e079b110fedb
|
4
|
+
data.tar.gz: e78eb254216d8afec4ebad526780018ab8ab5fccf887afd004183b888507d21b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7110801c66b5708930687679a37edc3a265ed5194db4c50c701bdaf6e71ebd2eba380cc0f8b4d99007cefcaa2f574e8157bd65b049de6c6e4c6b5671bf20351a
|
7
|
+
data.tar.gz: 61e1789257c5c36266368d289e653355a02bdbdbc75a2e14b394b31f4287f3a0e12c303adbc152b4be984f9fa1afeba2bc32fe08c476e753f69a6fe6177f45d2
|
data/plugins.rb
CHANGED
@@ -3,10 +3,8 @@
|
|
3
3
|
require 'bundler'
|
4
4
|
|
5
5
|
Bundler::Plugin.add_hook('after-install-all') do |_dependencies|
|
6
|
-
|
7
|
-
|
8
|
-
system('bundle exec rbs collection update')
|
9
|
-
end
|
6
|
+
$stdout.puts 'Updating RBS collection...'
|
7
|
+
system('bundle exec rbs collection update')
|
10
8
|
|
11
9
|
if ENV['BUNDLER_RBS_COLLECTION_CLEAN']
|
12
10
|
$stdout.puts 'Cleaning RBS collection...'
|