Sha256: 29e048e929903dba72df5b9f805d98fdbdca26b299e4101c896ec700f6c576cf

Contents?: true

Size: 192 Bytes

Versions: 35

Compression:

Stored size: 192 Bytes

Contents

module ConfigurationCache
  def self.pull
    @previous_config = Journey.configuration.clone
  end

  def self.push
    Journey.configuration = @previous_config if @previous_config
  end
end

Version data entries

35 entries across 35 versions & 1 rubygems

Version Path
embark-journey-0.0.18 spec/support/configuration_cache.rb
embark-journey-0.0.17 spec/support/configuration_cache.rb
embark-journey-0.0.16 spec/support/configuration_cache.rb
embark-journey-0.0.15 spec/support/configuration_cache.rb
embark-journey-0.0.14 spec/support/configuration_cache.rb
embark-journey-0.0.13 spec/support/configuration_cache.rb
embark-journey-0.0.12 spec/support/configuration_cache.rb
embark-journey-0.0.11 spec/support/configuration_cache.rb
embark-journey-0.0.10 spec/support/configuration_cache.rb
embark-journey-0.0.9 spec/support/configuration_cache.rb
embark-journey-0.0.8 spec/support/configuration_cache.rb
embark-journey-0.0.7 spec/support/configuration_cache.rb
embark-journey-0.0.6 spec/support/configuration_cache.rb
embark-journey-0.0.5 spec/support/configuration_cache.rb
embark-journey-0.0.4 spec/support/configuration_cache.rb