sippy_cup 0.4.1 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +3 -0
- data/.travis.yml +0 -2
- data/CHANGELOG.md +16 -0
- data/Guardfile +1 -1
- data/README.markdown +35 -2
- data/bin/sippy_cup +9 -1
- data/examples/navigate_ivr.yml +14 -0
- data/examples/simple_call.yml +11 -0
- data/examples/wait_for_call.yml +15 -0
- data/lib/sippy_cup/runner.rb +46 -10
- data/lib/sippy_cup/scenario.rb +268 -54
- data/lib/sippy_cup/version.rb +1 -1
- data/sippy_cup.gemspec +1 -1
- data/spec/sippy_cup/runner_spec.rb +102 -12
- data/spec/sippy_cup/scenario_spec.rb +78 -83
- data/spec/spec_helper.rb +1 -1
- metadata +8 -7
- data/.ruby-version +0 -1
data/spec/spec_helper.rb
CHANGED
@@ -9,7 +9,7 @@ RSpec.configure do |config|
|
|
9
9
|
config.mock_framework = :rspec
|
10
10
|
config.filter_run :focus => true
|
11
11
|
config.run_all_when_everything_filtered = true
|
12
|
-
config.
|
12
|
+
config.color = true
|
13
13
|
|
14
14
|
config.around(:each) do |example|
|
15
15
|
quietly { example.run }
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sippy_cup
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ben Klang
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2015-01-23 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: packetfu
|
@@ -43,14 +43,14 @@ dependencies:
|
|
43
43
|
name: activesupport
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
45
45
|
requirements:
|
46
|
-
- - "
|
46
|
+
- - "~>"
|
47
47
|
- !ruby/object:Gem::Version
|
48
48
|
version: '3.0'
|
49
49
|
type: :runtime
|
50
50
|
prerelease: false
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
52
52
|
requirements:
|
53
|
-
- - "
|
53
|
+
- - "~>"
|
54
54
|
- !ruby/object:Gem::Version
|
55
55
|
version: '3.0'
|
56
56
|
- !ruby/object:Gem::Dependency
|
@@ -148,7 +148,6 @@ extra_rdoc_files: []
|
|
148
148
|
files:
|
149
149
|
- ".gitignore"
|
150
150
|
- ".rspec"
|
151
|
-
- ".ruby-version"
|
152
151
|
- ".travis.yml"
|
153
152
|
- CHANGELOG.md
|
154
153
|
- Gemfile
|
@@ -157,6 +156,9 @@ files:
|
|
157
156
|
- README.markdown
|
158
157
|
- Rakefile
|
159
158
|
- bin/sippy_cup
|
159
|
+
- examples/navigate_ivr.yml
|
160
|
+
- examples/simple_call.yml
|
161
|
+
- examples/wait_for_call.yml
|
160
162
|
- lib/sippy_cup.rb
|
161
163
|
- lib/sippy_cup/media.rb
|
162
164
|
- lib/sippy_cup/media/dtmf_payload.rb
|
@@ -197,7 +199,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
197
199
|
version: '0'
|
198
200
|
requirements: []
|
199
201
|
rubyforge_project:
|
200
|
-
rubygems_version: 2.
|
202
|
+
rubygems_version: 2.4.5
|
201
203
|
signing_key:
|
202
204
|
specification_version: 4
|
203
205
|
summary: SIPp profile and RTP stream generator
|
@@ -210,4 +212,3 @@ test_files:
|
|
210
212
|
- spec/sippy_cup/scenario_spec.rb
|
211
213
|
- spec/sippy_cup/xml_scenario_spec.rb
|
212
214
|
- spec/spec_helper.rb
|
213
|
-
has_rdoc:
|
data/.ruby-version
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
ruby-1.9.3
|