rumination 0.12.10 → 0.12.11

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
  SHA1:
3
- metadata.gz: f1236753489b36030bdc9b2372f9e8c6aaabc821
4
- data.tar.gz: 9056a68f7dfcab1293de75b299dfb0e8fa076874
3
+ metadata.gz: 0a95309f3cce4f8c830c5783e486a880762ea334
4
+ data.tar.gz: 8e92374e90fc4400ad0bb0cd254be5dde0b062a5
5
5
  SHA512:
6
- metadata.gz: c0819a8274401be68de1ac9d932eb0b6634f61ef3e12f6f63946602b8f75ab6801304bb17dd871b6891add17d96ba1303d89a5384766325871d480d1f79d898d
7
- data.tar.gz: f0fedc08ed8805bff6f4de4c675300d07cea3d2f967a619d3f7069809a87f281bd50fb8fad77aba0d5f5a6f108399d8a85d1442aa25341c590ec7497b5bb12d9
6
+ metadata.gz: 24077ea36ee8a5aaaba1b18f7e067a4af07ee9bdbf95ee63f5bbbfff7b9fad2df5ed933b765095b072a0ecdc377499cc9013ad488671b662203681ed82d4331e
7
+ data.tar.gz: 0c53f33d15d8ade0741920356ab1c7ab3cf65ecf6825042c14095e35e1439f1aa384aad820a2c2d15a99c1e38a5ba52f2ffa258585362dbe2c60735b51418206
@@ -1,7 +1,7 @@
1
1
  task :deploy, [:target] => "deploy:default"
2
2
 
3
3
  namespace :deploy do
4
- task :env, [:target] => :load_target_config do |t, args|
4
+ task :env, [:target] => [:puts_comments, :load_target_config] do |t, args|
5
5
  Rumination::Deploy.docker_env.each do |var, val|
6
6
  puts %Q[export #{var}="#{val}"]
7
7
  end
@@ -24,6 +24,14 @@ namespace :deploy do
24
24
  Rumination::Deploy.load_target_config args.target
25
25
  end
26
26
 
27
+ tasks :puts_comments do
28
+ alias_method :old_puts, :puts
29
+ def puts *args
30
+ print "# "
31
+ old_puts *args
32
+ end
33
+ end
34
+
27
35
  namespace :bootstrap do
28
36
  task :undo, [:target] => %w[confirm_undo] do |t, args|
29
37
  end
@@ -1,3 +1,3 @@
1
1
  module Rumination
2
- VERSION = "0.12.10"
2
+ VERSION = "0.12.11"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rumination
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.10
4
+ version: 0.12.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Artem Baguinski