Sha256: 6dd7cd6003380836562a10e2ae9d28f6b5e1a89c8f5f4f973e0f5241144a1acf
Contents?: true
Size: 1.18 KB
Versions: 2
Compression:
Stored size: 1.18 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'learn_test/version' Gem::Specification.new do |spec| spec.name = "learn-test" spec.version = LearnTest::VERSION spec.authors = ["Flatiron School"] spec.email = ["learn@flatironschool.com"] spec.summary = %q{Runs RSpec, Jasmine, and Python Unit Test builds and pushes JSON output to Learn.} spec.homepage = "https://github.com/learn-co/learn-test" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") 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", "bin"] spec.add_development_dependency "bundler", "~> 1.7" spec.add_development_dependency "rake", "~> 10.0" spec.add_runtime_dependency "rspec", "~> 3.0" spec.add_runtime_dependency "netrc" spec.add_runtime_dependency "git", "~> 1.2" spec.add_runtime_dependency "oj", "~> 2.9" spec.add_runtime_dependency "faraday", "~> 0.9" spec.add_runtime_dependency "crack" spec.add_runtime_dependency "jasmine" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
learn-test-2.0.0.pre | learn-test.gemspec |
learn-test-1.2.26 | learn-test.gemspec |