firespring_dev_commands 3.1.7 → 3.1.8.pre.alpha.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1167f8eba46cb1e67db765192f78dd8aae78f97575431bc98b54186554d7c5fb
|
4
|
+
data.tar.gz: cf032eb5a21a48c4dbae3c2799586e3533c1ec5918c4bd500728019bd51789c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2beaf7e4596374b220e5bb8d6ae8cf0c622186d1ef94e38437a751e740ba9f2d0a1959af573c1b2843f298e6bb75d66aa197d53ad2515da4c87e6669cb1f3763
|
7
|
+
data.tar.gz: 9f2bc062464e93091a50b84f7edd346c5407b8e371b753dba00fd8f308a7574cd28ddb787780877972f6b3f5d31e3401237a0363676575c39fe8db55fd3f1c53
|
@@ -41,7 +41,7 @@ module Dev
|
|
41
41
|
end
|
42
42
|
end
|
43
43
|
|
44
|
-
attr_accessor :capture, :compose_files, :environment, :options, :project_dir, :project_name, :services, :user, :volumes
|
44
|
+
attr_accessor :capture, :compose_files, :environment, :options, :project_dir, :project_name, :services, :user, :volumes, :running_silent
|
45
45
|
|
46
46
|
def initialize(
|
47
47
|
compose_files: self.class.config.compose_files,
|
@@ -52,7 +52,8 @@ module Dev
|
|
52
52
|
services: [],
|
53
53
|
user: nil,
|
54
54
|
volumes: [],
|
55
|
-
capture: false
|
55
|
+
capture: false,
|
56
|
+
running_silent: false
|
56
57
|
)
|
57
58
|
@compose_files = Array(compose_files)
|
58
59
|
@environment = environment
|
@@ -63,6 +64,7 @@ module Dev
|
|
63
64
|
@user = user
|
64
65
|
@volumes = Array(volumes)
|
65
66
|
@capture = capture
|
67
|
+
@running_silent = running_silent
|
66
68
|
check_version
|
67
69
|
end
|
68
70
|
|
@@ -247,6 +249,7 @@ module Dev
|
|
247
249
|
command = EXECUTABLE_NAME.dup
|
248
250
|
command << '--project-directory' << project_dir
|
249
251
|
command << '-p' << project_name if project_name
|
252
|
+
command << '--progress=quiet' if running_silent
|
250
253
|
Array(compose_files).compact.each { |file| command << '-f' << file }
|
251
254
|
command << action
|
252
255
|
|
@@ -39,6 +39,13 @@ module Dev
|
|
39
39
|
Dev::Docker::Compose.new(services: [application]).up
|
40
40
|
Rake::Task[:_post_up_hooks].execute
|
41
41
|
end
|
42
|
+
|
43
|
+
desc "Starts up the #{application} container and it's dependencies"
|
44
|
+
task up_silent: %w(init_docker _pre_up_hooks) do
|
45
|
+
LOG.debug "In #{application} up"
|
46
|
+
Dev::Docker::Compose.new(running_silent: true, services: [application]).up
|
47
|
+
Rake::Task[:_post_up_hooks].execute
|
48
|
+
end
|
42
49
|
end
|
43
50
|
end
|
44
51
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: firespring_dev_commands
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.1.
|
4
|
+
version: 3.1.8.pre.alpha.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Firespring
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-10-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -476,9 +476,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
476
476
|
version: '3.1'
|
477
477
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
478
478
|
requirements:
|
479
|
-
- - "
|
479
|
+
- - ">"
|
480
480
|
- !ruby/object:Gem::Version
|
481
|
-
version:
|
481
|
+
version: 1.3.1
|
482
482
|
requirements: []
|
483
483
|
rubygems_version: 3.4.10
|
484
484
|
signing_key:
|