bin/buildr in vic-buildr-1.3.1 vs bin/buildr in vic-buildr-1.3.3
- old
+ new
@@ -12,10 +12,17 @@
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
-
+start = Time.now
require 'rubygems'
require 'buildr'
-
Buildr.application.run
+if verbose
+ elapsed = Time.now - start
+ real = []
+ real << ("%ih" % (elapsed / 3600)) if elapsed >= 3600
+ real << ("%im" % ((elapsed / 60) % 60)) if elapsed >= 60
+ real << ("%.3fs" % (elapsed % 60))
+ puts $terminal.color("Completed in #{real.join}", :green)
+end