Sha256: a5fce6da2b8cb4e255c2e6b5879dfc0e2a69e3a5cf3b79d0aa5eddb6695b54f4

Contents?: true

Size: 672 Bytes

Versions: 6

Compression:

Stored size: 672 Bytes

Contents

require 'chamber/commands/securable'
require 'chamber/commands/heroku'
require 'chamber/commands/comparable'

module  Chamber
module  Commands
module  Heroku
class   Compare < Chamber::Commands::Base
  include Chamber::Commands::Securable
  include Chamber::Commands::Heroku
  include Chamber::Commands::Comparable

  protected

  def first_settings_data
    if only_sensitive
      secured_settings.to_s(pair_separator:   "\n",
                            value_surrounder: '')
    else
      current_settings.to_s(pair_separator:   "\n",
                            value_surrounder: '')
    end
  end

  def second_settings_data
    configuration
  end
end
end
end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
chamber-2.8.0 lib/chamber/commands/heroku/compare.rb
chamber-2.7.1 lib/chamber/commands/heroku/compare.rb
chamber-2.4.0 lib/chamber/commands/heroku/compare.rb
chamber-2.3.2 lib/chamber/commands/heroku/compare.rb
chamber-2.3.1 lib/chamber/commands/heroku/compare.rb
chamber-2.3.0 lib/chamber/commands/heroku/compare.rb