ridl 2.2.4
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.
- checksums.yaml +7 -0
- data/LICENSE +49 -0
- data/README.rdoc +42 -0
- data/lib/idl/BiDirPolicy.pidl +28 -0
- data/lib/idl/CosNaming.idl +260 -0
- data/lib/idl/IOP.pidl +98 -0
- data/lib/idl/Messaging.pidl +152 -0
- data/lib/idl/PortableServer.pidl +371 -0
- data/lib/idl/TimeBase.pidl +40 -0
- data/lib/idl/orb.idl +200 -0
- data/lib/ridl/backend.rb +124 -0
- data/lib/ridl/delegate.rb +740 -0
- data/lib/ridl/expression.rb +276 -0
- data/lib/ridl/genfile.rb +220 -0
- data/lib/ridl/node.rb +2818 -0
- data/lib/ridl/optparse_ext.rb +357 -0
- data/lib/ridl/parser.diff +42 -0
- data/lib/ridl/parser.rb +3836 -0
- data/lib/ridl/parser.ry +933 -0
- data/lib/ridl/require.rb +18 -0
- data/lib/ridl/ridl.rb +44 -0
- data/lib/ridl/runner.rb +304 -0
- data/lib/ridl/scanner.rb +1238 -0
- data/lib/ridl/type.rb +507 -0
- data/lib/ridl/version.rb +22 -0
- metadata +74 -0
data/lib/ridl/version.rb
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
#--------------------------------------------------------------------
|
2
|
+
# version.rb - Version file for Ruby IDL compiler
|
3
|
+
#
|
4
|
+
# Author: Martin Corino
|
5
|
+
#
|
6
|
+
# This program is free software; you can redistribute it and/or
|
7
|
+
# modify it under the terms of the RIDL LICENSE which is
|
8
|
+
# included with this program.
|
9
|
+
#
|
10
|
+
# Copyright (c) Remedy IT Expertise BV
|
11
|
+
# Chamber of commerce Rotterdam nr.276339, The Netherlands
|
12
|
+
#--------------------------------------------------------------------
|
13
|
+
|
14
|
+
module IDL
|
15
|
+
|
16
|
+
RIDL_VERSION_MAJOR = 2.freeze
|
17
|
+
RIDL_VERSION_MINOR = 2.freeze
|
18
|
+
RIDL_VERSION_RELEASE = 4.freeze
|
19
|
+
RIDL_VERSION = "#{RIDL_VERSION_MAJOR}.#{RIDL_VERSION_MINOR}.#{RIDL_VERSION_RELEASE}"
|
20
|
+
RIDL_COPYRIGHT = 'Copyright (c) 2007-2013 Remedy IT Expertise BV, The Netherlands'.freeze
|
21
|
+
|
22
|
+
end
|
metadata
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ridl
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.2.4
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Martin Corino
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-08-09 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: OMG v. 3.3 compliant native Ruby IDL compiler frontend with support for
|
14
|
+
pluggable (and stackable) backends.
|
15
|
+
email: mcorino@remedy.nl
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files:
|
19
|
+
- LICENSE
|
20
|
+
- README.rdoc
|
21
|
+
files:
|
22
|
+
- LICENSE
|
23
|
+
- README.rdoc
|
24
|
+
- lib/idl/orb.idl
|
25
|
+
- lib/idl/IOP.pidl
|
26
|
+
- lib/idl/CosNaming.idl
|
27
|
+
- lib/idl/PortableServer.pidl
|
28
|
+
- lib/idl/BiDirPolicy.pidl
|
29
|
+
- lib/idl/Messaging.pidl
|
30
|
+
- lib/idl/TimeBase.pidl
|
31
|
+
- lib/ridl/backend.rb
|
32
|
+
- lib/ridl/node.rb
|
33
|
+
- lib/ridl/version.rb
|
34
|
+
- lib/ridl/scanner.rb
|
35
|
+
- lib/ridl/parser.diff
|
36
|
+
- lib/ridl/parser.rb
|
37
|
+
- lib/ridl/runner.rb
|
38
|
+
- lib/ridl/parser.ry
|
39
|
+
- lib/ridl/type.rb
|
40
|
+
- lib/ridl/optparse_ext.rb
|
41
|
+
- lib/ridl/delegate.rb
|
42
|
+
- lib/ridl/expression.rb
|
43
|
+
- lib/ridl/ridl.rb
|
44
|
+
- lib/ridl/require.rb
|
45
|
+
- lib/ridl/genfile.rb
|
46
|
+
homepage: https://osportal.remedy.nl/projects/ridl
|
47
|
+
licenses:
|
48
|
+
- RIDL
|
49
|
+
metadata: {}
|
50
|
+
post_install_message:
|
51
|
+
rdoc_options:
|
52
|
+
- --main
|
53
|
+
- README.rdoc
|
54
|
+
- --exclude
|
55
|
+
- \.(idl|pidl|diff|ry)
|
56
|
+
require_paths:
|
57
|
+
- lib
|
58
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - '>='
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '0'
|
63
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - '>='
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '0'
|
68
|
+
requirements: []
|
69
|
+
rubyforge_project:
|
70
|
+
rubygems_version: 2.0.3
|
71
|
+
signing_key:
|
72
|
+
specification_version: 4
|
73
|
+
summary: Ruby OMG IDL compiler
|
74
|
+
test_files: []
|