ymdp 0.0.16 → 0.0.17
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.
- data/VERSION +1 -1
- data/lib/application_view/tasks/ymdp.rake +3 -2
- data/ymdp.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.17
|
|
@@ -158,7 +158,9 @@ DOCS
|
|
|
158
158
|
end
|
|
159
159
|
|
|
160
160
|
def time(message="")
|
|
161
|
-
Timer.new(:title => "YMDP").time(message)
|
|
161
|
+
Timer.new(:title => "YMDP").time(message) do
|
|
162
|
+
yield
|
|
163
|
+
end
|
|
162
164
|
end
|
|
163
165
|
|
|
164
166
|
desc "Deploys application to YMDP servers"
|
|
@@ -540,7 +542,6 @@ def deploy(application, path)
|
|
|
540
542
|
Rake::Task["validate:#{application}:javascripts"].invoke if validate_js_assets?
|
|
541
543
|
Rake::Task["validate:#{application}:json"].invoke if validate_json_assets?
|
|
542
544
|
|
|
543
|
-
puts "About to invoke_ymdt: put, #{application}, #{path}"
|
|
544
545
|
invoke_ymdt("put", application, path)
|
|
545
546
|
end
|
|
546
547
|
|
data/ymdp.gemspec
CHANGED