Sha256: c8db83b280d24786046af7b049629a9ad9b38aa0e77e2b4e4f3508d095132295

Contents?: true

Size: 411 Bytes

Versions: 19

Compression:

Stored size: 411 Bytes

Contents

require "bundler"
Bundler.setup

$:.unshift(File.dirname(__FILE__) + '/../lib')
require 'hudson'
require 'hpricot'

module ConfigFixtureLoaders
  def config_xml(name, variation = nil)
    name += ".#{variation}" if variation
    @@config_fixture_loaders ||= {}
    @@config_fixture_loaders[name] ||= File.read(File.dirname(__FILE__) + "/fixtures/#{name}.config.xml")
    @@config_fixture_loaders[name]
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
hudson-0.5.0 spec/spec_helper.rb
hudson-0.3.1 spec/spec_helper.rb
hudson-0.3.0 spec/spec_helper.rb
hudson-0.3.0.beta.19 spec/spec_helper.rb
hudson-0.3.0.beta.18 spec/spec_helper.rb
hudson-0.3.0.beta.17 spec/spec_helper.rb
hudson-0.3.0.beta.16 spec/spec_helper.rb
hudson-0.3.0.beta.15 spec/spec_helper.rb
hudson-0.3.0.beta.14 spec/spec_helper.rb
hudson-0.3.0.beta.13 spec/spec_helper.rb
hudson-0.3.0.beta.12 spec/spec_helper.rb
hudson-0.3.0.beta.11 spec/spec_helper.rb
hudson-0.3.0.beta.10 spec/spec_helper.rb
hudson-0.3.0.beta.9 spec/spec_helper.rb
hudson-0.3.0.beta.8 spec/spec_helper.rb
hudson-0.3.0.beta.7 spec/spec_helper.rb
hudson-0.3.0.beta.6 spec/spec_helper.rb
hudson-0.3.0.beta.5 spec/spec_helper.rb
hudson-0.3.0.beta.4 spec/spec_helper.rb