lib/minke/config/config.rb in minke-1.10.0 vs lib/minke/config/config.rb in minke-1.11.0
- old
+ new
@@ -199,10 +199,24 @@
##
# Task encapsulates the configuration for the various rake tasks like build, run, etc.
class Task
##
+ # consul_loader will specify that the given config file is loaded into Consul.
+ # instance of Minke::Config::ConsulLoader
+ #
+ # [Optional]
+ attr_accessor :consul_loader
+
+ ##
+ # health_check is the string representation of a url to check before continuing with the rest of the
+ # task a successfull 200 response from the endpoint is required to contine.
+ #
+ # [Optional]
+ attr_accessor :health_check
+
+ ##
# pre tasks will run before the main task executes.
# instance of Minke::Config::TaskRunSettings
#
# [Optional]
attr_accessor :pre
@@ -236,23 +250,9 @@
##
# tasks is an array of strings which point to a defined task in your Rakefile.
#
# [Optional]
attr_accessor :tasks
-
- ##
- # consul_loader will specify that the given config file is loaded into Consul.
- # instance of Minke::Config::ConsulLoader
- #
- # [Optional]
- attr_accessor :consul_loader
-
- ##
- # health_check is the string representation of a url to check before continuing with the rest of the
- # task a successfull 200 response from the endpoint is required to contine.
- #
- # [Optional]
- attr_accessor :health_check
##
# copy is an array of Copy instances which will be copied before the task continues.
# instance of Minke::Config::Copy
#