Sha256: f254f928cea3e2d39b1cd55be21a3a38845751d3d747e74d5cea843239b4a29c
Contents?: true
Size: 1.15 KB
Versions: 2
Compression:
Stored size: 1.15 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "sippy_cup/version" Gem::Specification.new do |s| s.name = "sippy_cup" s.version = SippyCup::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Ben Klang", "Will Drexler"] s.email = ["bklang&mojolingo.com", "wdrexler&mojolingo.com"] s.homepage = "https://github.com/bklang/sippy_cup" s.summary = "SIPp profile and RTP stream generator" s.description = "This tool makes it easier to generate SIPp load tests with DTMF interactions." 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"] s.add_runtime_dependency 'packetfu' s.add_runtime_dependency 'nokogiri', ["~> 1.6.0"] s.add_runtime_dependency 'activesupport', ["> 3.0"] s.add_development_dependency 'guard-rspec' s.add_development_dependency 'rspec', ["~> 2.11"] s.add_development_dependency 'simplecov' s.add_development_dependency 'simplecov-rcov' s.add_development_dependency 'ci_reporter' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sippy_cup-0.2.1 | sippy_cup.gemspec |
sippy_cup-0.2.0 | sippy_cup.gemspec |