anthill_diameter_ruby 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/MIT-LICENSE +20 -0
- data/README +30 -0
- data/anthill_diameter_ruby.gemspec +18 -0
- data/changelog +18 -0
- data/data/dumps/random_command.dump +1 -0
- data/data/pdus/random_command.xml +35 -0
- data/examples/dump_viewer.rb +1 -0
- data/examples/pdu_composer.rb +1 -0
- data/knownbugs +14 -0
- data/lib/anthill_diameter_ruby.rb +83 -0
- data/lib/pdu/diameter_pdu.rb +90 -0
- data/roadmap +14 -0
- data/setup.rb +1585 -0
- data/test/anthill_diameter_test.rb +28 -0
- metadata +67 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
#
|
|
2
|
+
#/*
|
|
3
|
+
# Copyright 2007 Majoron.com (developers@majoron.com)
|
|
4
|
+
# Original sources are available at www.majoron.com
|
|
5
|
+
#
|
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
# you may not use this file except in compliance with the License.
|
|
8
|
+
# You may obtain a copy of the License at
|
|
9
|
+
#
|
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
#
|
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
# See the License for the specific language governing permissions and
|
|
16
|
+
# limitations under the License.
|
|
17
|
+
#*/
|
|
18
|
+
#
|
|
19
|
+
|
|
20
|
+
$:.unshift File.dirname(__FILE__) + '/../lib/'
|
|
21
|
+
|
|
22
|
+
require "test/unit"
|
|
23
|
+
require "anthill"
|
|
24
|
+
# require "anthill_smpp"
|
|
25
|
+
# require "smpp_codec_test"
|
|
26
|
+
# require "smpp_validator_test"
|
|
27
|
+
# require "smpp_outputter_test"
|
|
28
|
+
# require "smpp_rawdump_test"
|
metadata
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: anthill_diameter_ruby
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.5.1
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Artem Rufanov
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2014-03-04 00:00:00.000000000 Z
|
|
13
|
+
dependencies: []
|
|
14
|
+
description: The AntHill Diameter is a powerful networking library which implements
|
|
15
|
+
Diameter protocol (RFC 3588) and supply different fail-over and scaling functionality
|
|
16
|
+
for it based on AntHill library.
|
|
17
|
+
email: developers@majoron.com
|
|
18
|
+
executables: []
|
|
19
|
+
extensions: []
|
|
20
|
+
extra_rdoc_files: []
|
|
21
|
+
files:
|
|
22
|
+
- changelog
|
|
23
|
+
- knownbugs
|
|
24
|
+
- anthill_diameter_ruby.gemspec
|
|
25
|
+
- test/anthill_diameter_test.rb
|
|
26
|
+
- examples/dump_viewer.rb
|
|
27
|
+
- examples/pdu_composer.rb
|
|
28
|
+
- roadmap
|
|
29
|
+
- lib/anthill_diameter_ruby.rb
|
|
30
|
+
- lib/pdu/diameter_pdu.rb
|
|
31
|
+
- MIT-LICENSE
|
|
32
|
+
- data/pdus/random_command.xml
|
|
33
|
+
- data/dumps/random_command.dump
|
|
34
|
+
- README
|
|
35
|
+
- setup.rb
|
|
36
|
+
homepage: http://www.majoron.com/project/diameter/ruby
|
|
37
|
+
licenses: []
|
|
38
|
+
post_install_message:
|
|
39
|
+
rdoc_options: []
|
|
40
|
+
require_paths:
|
|
41
|
+
- lib
|
|
42
|
+
- doc
|
|
43
|
+
- examples
|
|
44
|
+
- lib
|
|
45
|
+
- test
|
|
46
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
47
|
+
none: false
|
|
48
|
+
requirements:
|
|
49
|
+
- - ! '>='
|
|
50
|
+
- !ruby/object:Gem::Version
|
|
51
|
+
version: 1.8.6
|
|
52
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
53
|
+
none: false
|
|
54
|
+
requirements:
|
|
55
|
+
- - ! '>='
|
|
56
|
+
- !ruby/object:Gem::Version
|
|
57
|
+
version: '0'
|
|
58
|
+
requirements:
|
|
59
|
+
- anthill, v 0.5.1 or greater
|
|
60
|
+
rubyforge_project:
|
|
61
|
+
rubygems_version: 1.8.23
|
|
62
|
+
signing_key:
|
|
63
|
+
specification_version: 3
|
|
64
|
+
summary: The AntHill Diameter is a powerful networking library which implements Diameter
|
|
65
|
+
protocol (RFC 3588) and supply different fail-over and scaling functionality for
|
|
66
|
+
it based on AntHill library.
|
|
67
|
+
test_files: []
|