Sha256: 2b37c84a9497a58e3326fd1b48e6697b53fd0b6469b1831ce053acca21d76b8b
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 'infrataster/version' Gem::Specification.new do |spec| spec.name = "infrataster" spec.version = Infrataster::VERSION spec.authors = ["Ryota Arai"] spec.email = ["ryota.arai@gmail.com"] spec.summary = %q{Infrastructure Behavior Testing Framework} spec.homepage = "https://github.com/ryotarai/infrataster" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").delete_if do |path| path.start_with?('example/') end 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_runtime_dependency "rspec" spec.add_runtime_dependency "net-ssh" spec.add_runtime_dependency "net-ssh-gateway" spec.add_runtime_dependency "capybara" spec.add_runtime_dependency "poltergeist" spec.add_runtime_dependency "faraday" spec.add_development_dependency "bundler", "~> 1.5" spec.add_development_dependency "rake" spec.add_development_dependency "berkshelf", '~> 3.1.1' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
infrataster-0.1.9 | infrataster.gemspec |
infrataster-0.1.8 | infrataster.gemspec |