ridl 2.2.5 → 2.5.5
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 +4 -4
- data/lib/ridl/backend.rb +7 -8
- data/lib/ridl/delegate.rb +91 -24
- data/lib/ridl/genfile.rb +58 -23
- data/lib/ridl/node.rb +44 -12
- data/lib/ridl/optparse_ext.rb +3 -3
- data/lib/ridl/parser.rb +5 -5
- data/lib/ridl/parser.ry +5 -5
- data/lib/ridl/runner.rb +260 -197
- data/lib/ridl/scanner.rb +167 -144
- data/lib/ridl/version.rb +2 -2
- metadata +16 -16
data/lib/ridl/version.rb
CHANGED
@@ -14,9 +14,9 @@
|
|
14
14
|
module IDL
|
15
15
|
|
16
16
|
RIDL_VERSION_MAJOR = 2.freeze
|
17
|
-
RIDL_VERSION_MINOR =
|
17
|
+
RIDL_VERSION_MINOR = 5.freeze
|
18
18
|
RIDL_VERSION_RELEASE = 5.freeze
|
19
19
|
RIDL_VERSION = "#{RIDL_VERSION_MAJOR}.#{RIDL_VERSION_MINOR}.#{RIDL_VERSION_RELEASE}"
|
20
|
-
RIDL_COPYRIGHT =
|
20
|
+
RIDL_COPYRIGHT = "Copyright (c) 2007-#{Time.now.year} Remedy IT Expertise BV, The Netherlands".freeze
|
21
21
|
|
22
22
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ridl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.5.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Martin Corino
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-02-05 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: OMG v. 3.3 compliant native Ruby IDL compiler frontend with support for
|
14
14
|
pluggable (and stackable) backends.
|
@@ -21,28 +21,28 @@ extra_rdoc_files:
|
|
21
21
|
files:
|
22
22
|
- LICENSE
|
23
23
|
- README.rdoc
|
24
|
-
- lib/idl/orb.idl
|
25
|
-
- lib/idl/IOP.pidl
|
26
|
-
- lib/idl/CosNaming.idl
|
27
|
-
- lib/idl/PortableServer.pidl
|
28
24
|
- lib/idl/BiDirPolicy.pidl
|
25
|
+
- lib/idl/CosNaming.idl
|
26
|
+
- lib/idl/IOP.pidl
|
29
27
|
- lib/idl/Messaging.pidl
|
28
|
+
- lib/idl/PortableServer.pidl
|
30
29
|
- lib/idl/TimeBase.pidl
|
30
|
+
- lib/idl/orb.idl
|
31
31
|
- lib/ridl/backend.rb
|
32
|
+
- lib/ridl/delegate.rb
|
33
|
+
- lib/ridl/expression.rb
|
34
|
+
- lib/ridl/genfile.rb
|
32
35
|
- lib/ridl/node.rb
|
33
|
-
- lib/ridl/
|
34
|
-
- lib/ridl/scanner.rb
|
36
|
+
- lib/ridl/optparse_ext.rb
|
35
37
|
- lib/ridl/parser.diff
|
36
38
|
- lib/ridl/parser.rb
|
37
|
-
- lib/ridl/runner.rb
|
38
39
|
- 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
40
|
- lib/ridl/require.rb
|
45
|
-
- lib/ridl/
|
41
|
+
- lib/ridl/ridl.rb
|
42
|
+
- lib/ridl/runner.rb
|
43
|
+
- lib/ridl/scanner.rb
|
44
|
+
- lib/ridl/type.rb
|
45
|
+
- lib/ridl/version.rb
|
46
46
|
homepage: https://osportal.remedy.nl/projects/ridl
|
47
47
|
licenses:
|
48
48
|
- RIDL
|
@@ -67,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
67
67
|
version: '0'
|
68
68
|
requirements: []
|
69
69
|
rubyforge_project:
|
70
|
-
rubygems_version: 2.
|
70
|
+
rubygems_version: 2.4.2
|
71
71
|
signing_key:
|
72
72
|
specification_version: 4
|
73
73
|
summary: Ruby OMG IDL compiler
|