straight_line 0.1.3.0 → 0.1.4.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/VERSION +1 -1
- data/lib/straight_line/common/configure.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 47dfef9a59d132277dfbd3d0a141864c1868bf46
|
|
4
|
+
data.tar.gz: 225b207ebaf5043bbb86b72b1af9a2950daab625
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9ac15127bc265e9347a4992e2121df75eb08ddf735c72d50612e7bfa57bdbc3622f87d5edd7b76a6e03a6498daff87a5780e07964af92f50d776332b66daf54b
|
|
7
|
+
data.tar.gz: e0f38f0d84dc97d4d51686335550768c7897773a318575cf6bfaffb292b3bae00d55ebdf6a4ac0bc4c066cb25f712e57f8fc3bc328490aa1ac6f19c075264f6c
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.4.0
|
|
@@ -9,11 +9,11 @@ class Configure
|
|
|
9
9
|
Rake::Task.define_task name => opts[:before] do
|
|
10
10
|
if type == :shell
|
|
11
11
|
cmd = Command.new command
|
|
12
|
-
Util.logger.
|
|
12
|
+
Util.logger.info "executing command #{command}. Error results will be
|
|
13
13
|
displayed if any ocur"
|
|
14
14
|
cmd.run
|
|
15
15
|
elsif !name.nil?
|
|
16
|
-
Util.logger.
|
|
16
|
+
Util.logger.info "executing task #{command}. Error results will be
|
|
17
17
|
displayed if any ocur"
|
|
18
18
|
Rake::Task[command].invoke
|
|
19
19
|
end
|