Sha256: fd095ec2afe65e5fda74451daebc9ecb6291eb2f0168aaac846049bf842bc0f2

Contents?: true

Size: 578 Bytes

Versions: 4

Compression:

Stored size: 578 Bytes

Contents

require "rubygems"
require "bundler/setup"

require File.expand_path("../support/prepare_embulk.rb", __FILE__)
# Bundler.require should call after above line
Bundler.require(:runtime, :development)

Dir["./spec/support/**/*.rb"].each{|file| require file }

require "codeclimate-test-reporter"
CodeClimate::TestReporter.start

if ENV["COVERAGE"]
  require "simplecov"
  SimpleCov.start
end

$LOAD_PATH.unshift File.expand_path("../../lib", __FILE__)
require "embulk/input/jira"

RSpec.configure do |config|
  config.include StdoutAndErrCapture
  config.include PrepareEmbulk
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
embulk-input-jira-0.1.2 spec/spec_helper.rb
embulk-input-jira-0.1.1 spec/spec_helper.rb
embulk-input-jira-0.1.0 spec/spec_helper.rb
embulk-input-jira-0.0.7 spec/spec_helper.rb