sipatra 0.0.3 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/sipatra/base.rb +89 -30
- data/lib/sipatra/helpers.rb +129 -104
- data/lib/sipatra/log4j-1.2.16.jar +0 -0
- data/lib/sipatra/sipatra-0.1.0-SNAPSHOT.jar +0 -0
- data/lib/sipatra/slf4j-api-1.6.1.jar +0 -0
- data/lib/sipatra/slf4j-log4j12-1.6.1.jar +0 -0
- data/spec/base_spec.rb +530 -0
- data/spec/classic_style_spec.rb +19 -0
- data/spec/helper.rb +46 -0
- data/spec/helpers_spec.rb +352 -0
- data/spec/sipatra_spec.rb +26 -0
- data/test/integration/sipapp/WEB-INF/sip.xml +14 -0
- data/test/integration/sipapp/WEB-INF/sipatra/application.rb +26 -0
- data/test/integration/sipatra.xml +9 -0
- data/test/integration/sipp/uac.xml +122 -0
- metadata +77 -63
- data/lib/sipatra/sipatra-0.0.3-SNAPSHOT.jar +0 -0
- data/lib/sipatra/slf4j-api-1.4.0.jar +0 -0
- data/lib/sipatra/slf4j-log4j12-1.4.0.jar +0 -0
metadata
CHANGED
@@ -1,93 +1,107 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: sipatra
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 0
|
9
|
-
- 3
|
10
|
-
version: 0.0.3
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
prerelease:
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Dominique Broeglin
|
14
9
|
- Jean-Baptiste Morin
|
15
10
|
autorequire:
|
16
11
|
bindir: bin
|
17
12
|
cert_chain: []
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
dependencies:
|
22
|
-
- !ruby/object:Gem::Dependency
|
13
|
+
date: 2012-07-11 00:00:00.000000000 Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
23
16
|
name: rspec
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
18
|
+
none: false
|
19
|
+
requirements:
|
20
|
+
- - ~>
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.9.0
|
23
|
+
type: :development
|
24
24
|
prerelease: false
|
25
|
-
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
none: false
|
27
|
-
requirements:
|
28
|
-
- -
|
29
|
-
- !ruby/object:Gem::Version
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
27
|
+
requirements:
|
28
|
+
- - ~>
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
version: 2.9.0
|
31
|
+
- !ruby/object:Gem::Dependency
|
32
|
+
name: vagrant
|
33
|
+
requirement: !ruby/object:Gem::Requirement
|
34
|
+
none: false
|
35
|
+
requirements:
|
36
|
+
- - ~>
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
version: 1.0.2
|
36
39
|
type: :development
|
37
|
-
|
40
|
+
prerelease: false
|
41
|
+
version_requirements: !ruby/object:Gem::Requirement
|
42
|
+
none: false
|
43
|
+
requirements:
|
44
|
+
- - ~>
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 1.0.2
|
38
47
|
description: Sipatra is a Ruby DSL for easy writting of SIP Servlet applications
|
39
|
-
email:
|
48
|
+
email:
|
40
49
|
- dominique.broeglin@gmail.com
|
41
50
|
- jean-baptiste.morin@nexcom.fr
|
42
51
|
executables: []
|
43
|
-
|
44
52
|
extensions: []
|
45
|
-
|
46
53
|
extra_rdoc_files: []
|
47
|
-
|
48
|
-
files:
|
49
|
-
- lib/sipatra-jars.rb
|
50
|
-
- lib/sipatra.rb
|
54
|
+
files:
|
51
55
|
- lib/sipatra/base.rb
|
52
|
-
- lib/sipatra/commons-pool-1.5.5.jar
|
53
56
|
- lib/sipatra/extension_modules.rb
|
54
57
|
- lib/sipatra/helpers.rb
|
55
|
-
- lib/sipatra
|
56
|
-
- lib/sipatra/
|
57
|
-
- lib/sipatra/
|
58
|
-
|
58
|
+
- lib/sipatra.rb
|
59
|
+
- lib/sipatra/commons-pool-1.5.5.jar
|
60
|
+
- lib/sipatra/log4j-1.2.16.jar
|
61
|
+
- lib/sipatra/sipatra-0.1.0-SNAPSHOT.jar
|
62
|
+
- lib/sipatra/slf4j-api-1.6.1.jar
|
63
|
+
- lib/sipatra/slf4j-log4j12-1.6.1.jar
|
64
|
+
- lib/sipatra-jars.rb
|
65
|
+
- spec/base_spec.rb
|
66
|
+
- spec/classic_style_spec.rb
|
67
|
+
- spec/helper.rb
|
68
|
+
- spec/helpers_spec.rb
|
69
|
+
- spec/sipatra_spec.rb
|
70
|
+
- test/integration/sipapp/WEB-INF/sip.xml
|
71
|
+
- test/integration/sipapp/WEB-INF/sipatra/application.rb
|
72
|
+
- test/integration/sipatra.xml
|
73
|
+
- test/integration/sipp/uac.xml
|
59
74
|
homepage: http://confluence.cipango.org/display/DOC/Sipatra
|
60
75
|
licenses: []
|
61
|
-
|
62
76
|
post_install_message:
|
63
|
-
rdoc_options:
|
64
|
-
|
65
|
-
require_paths:
|
77
|
+
rdoc_options: []
|
78
|
+
require_paths:
|
66
79
|
- lib
|
67
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
80
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
68
81
|
none: false
|
69
|
-
requirements:
|
70
|
-
- -
|
71
|
-
- !ruby/object:Gem::Version
|
72
|
-
|
73
|
-
|
74
|
-
- 0
|
75
|
-
version: "0"
|
76
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
82
|
+
requirements:
|
83
|
+
- - ! '>='
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '0'
|
86
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
77
87
|
none: false
|
78
|
-
requirements:
|
79
|
-
- -
|
80
|
-
- !ruby/object:Gem::Version
|
81
|
-
|
82
|
-
segments:
|
83
|
-
- 0
|
84
|
-
version: "0"
|
88
|
+
requirements:
|
89
|
+
- - ! '>='
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: '0'
|
85
92
|
requirements: []
|
86
|
-
|
87
|
-
|
88
|
-
rubygems_version: 1.3.7
|
93
|
+
rubyforge_project: sipatra
|
94
|
+
rubygems_version: 1.8.24
|
89
95
|
signing_key:
|
90
96
|
specification_version: 3
|
91
97
|
summary: DSL for easy writting of SIP Servlet applications
|
92
|
-
test_files:
|
93
|
-
|
98
|
+
test_files:
|
99
|
+
- spec/base_spec.rb
|
100
|
+
- spec/classic_style_spec.rb
|
101
|
+
- spec/helper.rb
|
102
|
+
- spec/helpers_spec.rb
|
103
|
+
- spec/sipatra_spec.rb
|
104
|
+
- test/integration/sipapp/WEB-INF/sip.xml
|
105
|
+
- test/integration/sipapp/WEB-INF/sipatra/application.rb
|
106
|
+
- test/integration/sipatra.xml
|
107
|
+
- test/integration/sipp/uac.xml
|
Binary file
|
Binary file
|
Binary file
|