Sha256: d753c24a13588276d8f75433fe5b45a2dccafc86c8c1d3fc33221d6a3fb90027
Contents?: true
Size: 909 Bytes
Versions: 2
Compression:
Stored size: 909 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path('../lib', __FILE__) require 'yourbase/rspec/skipper/version' Gem::Specification.new do |s| s.name = 'yourbase-rspec-skipper' s.version = YourBase::RSpec::Skipper::VERSION s.platform = Gem::Platform::RUBY s.authors = ['John Ewart'] s.email = ['john@yourbase.io'] s.homepage = 'https://github.com/yourbase/yourbase-rspec-skipper' s.summary = 'Skip more tasks in YourBase' s.description = 'A library for use with YourBase that will enable using Skipper in the CI' s.license = 'Apache-2.0' s.required_ruby_version = '>= 1.9.3' s.add_development_dependency 'rspec' s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ['lib'] end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
yourbase-rspec-skipper-0.1.9 | yourbase-rspec-skipper.gemspec |
yourbase-rspec-skipper-0.1.7 | yourbase-rspec-skipper.gemspec |