Sha256: 96c2843617196bf21b22c0aa7d509396580814e862f2c00eab10d1bf817be92f
Contents?: true
Size: 1.17 KB
Versions: 2
Compression:
Stored size: 1.17 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'jasmine_junitxml_formatter/version' Gem::Specification.new do |spec| spec.name = "jasmine_junitxml_formatter" spec.version = JasmineJunitxmlFormatter::VERSION spec.authors = ["Gregg Van Hove"] spec.email = ["pair+gvanhove@pivotallabs.com"] spec.description = %q{Format jasmine results as junit compatible XML so CI servers, like Hudson/Jenkins can parse it} spec.summary = %q{Format jasmine results as junit compatible XML so CI servers, like Hudson/Jenkins can parse it} spec.homepage = "https://github.com/jasmine/jasmine_junitxml_formatter" spec.license = "MIT" spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency 'rspec' spec.add_development_dependency "rake" spec.add_dependency 'jasmine', '~> 2.0.0.alpha' spec.add_dependency "nokogiri" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jasmine_junitxml_formatter-0.2.0 | jasmine_junitxml_formatter.gemspec |
jasmine_junitxml_formatter-0.1.0 | jasmine_junitxml_formatter.gemspec |