firespring_dev_commands 3.1.9 → 3.2.0.beta.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: 79b2d2b2de504b826905325abefc0a4703cf1f0263e4c1ab8221d3c3bed0ba1f
|
|
4
|
+
data.tar.gz: 158c5a49a9334e819ebcaf2432a1babf1b46c952bb44b20644499db3eaded4c4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef8ebe3d73bc2ed4cb8a666e09b37127b1f46f8c5f33d10f7de35c2bb68c5880f2f95e853157c012004dd345c98dc444128bfa4ed2591b8a1eadf62cd72ec8ad
|
|
7
|
+
data.tar.gz: 49b99107d9b5744f4669165dd93dfc57d39d458b49503e4d7d8c2ce6b85ac030aac7a7f4dfff9d7d79c0c7c693069babb338e9737da03fe547a509fc07f430fc
|
|
@@ -40,7 +40,7 @@ module Dev
|
|
|
40
40
|
Rake::Task[:_post_up_hooks].execute
|
|
41
41
|
end
|
|
42
42
|
|
|
43
|
-
desc "Starts up the #{application} container and it's dependencies"
|
|
43
|
+
desc "Starts up the #{application} container and it's dependencies silently"
|
|
44
44
|
task up_silent: %w(init_docker _pre_up_hooks) do
|
|
45
45
|
LOG.debug "In #{application} up"
|
|
46
46
|
Dev::Docker::Compose.new(running_silent: true, services: [application]).up
|
|
@@ -65,6 +65,13 @@ module Dev
|
|
|
65
65
|
Dev::Docker::Compose.new(services: [application], options: ['--no-deps']).up
|
|
66
66
|
Rake::Task[:_post_up_hooks].execute
|
|
67
67
|
end
|
|
68
|
+
|
|
69
|
+
desc "Starts up the #{application} container silently but no dependencies"
|
|
70
|
+
task up_no_deps_silent: %w(init_docker _pre_up_hooks) do
|
|
71
|
+
LOG.debug "In #{application} up_no_deps_silent"
|
|
72
|
+
Dev::Docker::Compose.new(running_silent: true, services: [application], options: ['--no-deps']).up
|
|
73
|
+
Rake::Task[:_post_up_hooks].execute
|
|
74
|
+
end
|
|
68
75
|
end
|
|
69
76
|
end
|
|
70
77
|
end
|
|
@@ -84,6 +91,13 @@ module Dev
|
|
|
84
91
|
Dev::Docker::Compose.new(services: [application], options: ['--detach']).run(['sh', '-c', 'while [ true ]; do sleep 300; done;'])
|
|
85
92
|
Rake::Task[:_post_up_hooks].execute
|
|
86
93
|
end
|
|
94
|
+
|
|
95
|
+
desc "Starts up an empty #{application} container and it's dependencies silently"
|
|
96
|
+
task up_empty_silent: %w(init_docker _pre_up_hooks) do
|
|
97
|
+
LOG.debug "In #{application} up_empty_silent"
|
|
98
|
+
Dev::Docker::Compose.new(running_silent: true, services: [application], options: ['--detach']).run(['sh', '-c', 'while [ true ]; do sleep 300; done;'])
|
|
99
|
+
Rake::Task[:_post_up_hooks].execute
|
|
100
|
+
end
|
|
87
101
|
end
|
|
88
102
|
end
|
|
89
103
|
end
|
|
@@ -103,6 +117,14 @@ module Dev
|
|
|
103
117
|
Dev::Docker::Compose.new(services: [application], options: ['--no-deps', '--detach']).run(['sh', '-c', 'while [ true ]; do sleep 300; done;'])
|
|
104
118
|
Rake::Task[:_post_up_hooks].execute
|
|
105
119
|
end
|
|
120
|
+
|
|
121
|
+
desc "Starts up an empty #{application} container silently but no dependencies"
|
|
122
|
+
task up_empty_no_deps_silent: %w(init_docker _pre_up_hooks) do
|
|
123
|
+
LOG.debug "In #{application} up_empty_no_deps_silent"
|
|
124
|
+
Dev::Docker::Compose.new(running_silent: true, services: [application],
|
|
125
|
+
options: ['--no-deps', '--detach']).run(['sh', '-c', 'while [ true ]; do sleep 300; done;'])
|
|
126
|
+
Rake::Task[:_post_up_hooks].execute
|
|
127
|
+
end
|
|
106
128
|
end
|
|
107
129
|
end
|
|
108
130
|
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.
|
|
4
|
+
version: 3.2.0.beta.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-11-07 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:
|