groundskeeper-bitcore 0.39.0 → 0.40.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3e2f964d4cebe7f0c650c0dc344ed70f9060a2039ca826b0b74a7c3e55fb48dd
4
- data.tar.gz: 7c38b44bb9f16d3dada1e54e25e754b57a26e57a68fd37eec32c2fd2c93d6f1d
3
+ metadata.gz: 63b42f4cf4e163dfc17e0a4147e94bbf7f40145ff2d3c61acf1f16956d7049c4
4
+ data.tar.gz: b740118a9ad4636b675f6eaa45d2bf34c22f270dfb7e3147d9aa5811de8b3fa4
5
5
  SHA512:
6
- metadata.gz: df3f75126a99da6cbd8a96cda5d764c1349daa7f29c849c095f1b46b164b0deb160dca2ba56082f521e747a081c13df23911475b94b72df3540513e7542dcafd
7
- data.tar.gz: 112920bb110c2813e1ac0b10464920d51cf54a85afdae1caec24311181132e2ba6abbcad160198b8bea11c07a38e0ba48ea7e44677d16e35d233aa98fcee239d
6
+ metadata.gz: dd96e1cd5f4c020abd8d1ec4e621ff3515423a3ff45dc7d9555babfe3e6cf75bd46467d11cc61a20a9cc1a81b5ba4c6d202db36e92d1be72082a7099afe4f29a
7
+ data.tar.gz: '079eba57ab1b9d79e70f01841c62945b6b69e95b3a16db24b2e029306b2f4bc8541c6f2bbded56fa031e82fa71f4692ae3e442552730f2f0a5d9fabb1d464b43'
data/config/deploy.rb CHANGED
@@ -9,6 +9,29 @@ require_relative "git_config"
9
9
  require_relative "predeploy"
10
10
  require_relative "tasks"
11
11
 
12
+ require "mina/bundler" # Explicitly require bundler to override it
13
+
14
+ # Override bundle:install to fix deprecation warnings
15
+ # Use Rake's redefinition mechanism to replace the task
16
+ Rake::Task["bundle:install"].clear
17
+
18
+ namespace :bundle do
19
+ desc "Install gem dependencies using Bundler."
20
+ task :install do
21
+ comment %(Installing gem dependencies using Bundler)
22
+ command %(#{fetch(:bundle_bin)} config set --local without '#{fetch(:bundle_withouts)}')
23
+ command %(#{fetch(:bundle_bin)} config set --local path '#{fetch(:bundle_path)}')
24
+ command %(#{fetch(:bundle_bin)} config set --local deployment 'true')
25
+ command %(#{fetch(:bundle_bin)} install)
26
+ end
27
+
28
+ desc "Cleans up unused gems in your bundler directory"
29
+ task :clean do
30
+ comment %(Cleaning up unused gems)
31
+ command %(#{fetch(:bundle_bin)} clean)
32
+ end
33
+ end
34
+
12
35
  def load_project
13
36
  invoke :before_run unless fetch(:project)
14
37
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Groundskeeper
4
- VERSION = "0.39.0"
4
+ VERSION = "0.40.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: groundskeeper-bitcore
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.39.0
4
+ version: 0.40.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - RADD
@@ -259,7 +259,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
259
259
  - !ruby/object:Gem::Version
260
260
  version: '0'
261
261
  requirements: []
262
- rubygems_version: 3.7.2
262
+ rubygems_version: 4.0.3
263
263
  specification_version: 4
264
264
  summary: A gem for managing releases and deployments.
265
265
  test_files: []