Sha256: 4fcbddbf4dd1aa790fc330aea0ffe77387ec71b9f430220104b5bb7b338df3ae

Contents?: true

Size: 541 Bytes

Versions: 12

Compression:

Stored size: 541 Bytes

Contents

require 'bundler'
require 'logger'
require 'rspec'

require 'currency_plugin'

RSpec.configure do |config|
  config.color_enabled = true
  config.tty = true
  config.formatter = 'documentation'
end

class Object
  def blank?
    respond_to?(:empty?) ? empty? : !self
  end
end


require 'active_record'

#ActiveRecord::Base.logger = Logger.new(STDOUT)
ActiveRecord::Base.establish_connection(
    :adapter => 'sqlite3',
    :database => 'test.db'
)
# Create the schema
require File.expand_path(File.dirname(__FILE__) + '../../db/schema.rb')

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
killbill-currency-plugin-3.0.0 spec/spec_helper.rb
killbill-currency-plugin-2.0.0 spec/spec_helper.rb
killbill-currency-plugin-1.3.1 spec/spec_helper.rb
killbill-currency-plugin-1.3.0 spec/spec_helper.rb
killbill-currency-plugin-1.2.0 spec/spec_helper.rb
killbill-currency-plugin-1.1.4 spec/spec_helper.rb
killbill-currency-plugin-1.1.3 spec/spec_helper.rb
killbill-currency-plugin-1.1.2 spec/spec_helper.rb
killbill-currency-plugin-1.1.1 spec/spec_helper.rb
killbill-currency-plugin-1.1.0 spec/spec_helper.rb
killbill-currency-plugin-1.0.1 spec/spec_helper.rb
killbill-currency-plugin-1.0.0 spec/spec_helper.rb