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 +4 -4
- data/config/deploy.rb +23 -0
- data/lib/groundskeeper/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 63b42f4cf4e163dfc17e0a4147e94bbf7f40145ff2d3c61acf1f16956d7049c4
|
|
4
|
+
data.tar.gz: b740118a9ad4636b675f6eaa45d2bf34c22f270dfb7e3147d9aa5811de8b3fa4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
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.
|
|
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:
|
|
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: []
|