lib/shipit/cli/configuration.rb in intello-shipit-cli-1.2.0 vs lib/shipit/cli/configuration.rb in intello-shipit-cli-1.3.0

- old
+ new

@@ -6,12 +6,12 @@ # applies the correct source of configuration values based on the different contexts and # also makes sure that compulsory data are not missing. # class Configuration # List of all the configuration attributes stored for use within the gem - ATTRIBUTES = [:endpoint, :private_token, :protected_branches] + ATTRIBUTES = [:endpoint, :private_token, :protected_branches, :ship_skips_ci] - attr_accessor :endpoint, :private_token, :protected_branches + attr_accessor :endpoint, :private_token, :protected_branches, :ship_skips_ci # Apply a configuration hash to a configuration instance # # @example Override one of the configuration attributes # config = Shipit::Cli::Configuration.new