idlc 0.1.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 4562703a6d610aa163c7ed288acc6ceb5b3f1a58198b0989b077e18956058af7
4
+ data.tar.gz: 7172094fef52add65e52f13beb00cb7ccca624af104e785296578d4506c48f4c
5
+ SHA512:
6
+ metadata.gz: bc2d2eaacc3da4b47dca354364927ae43463dff4d8a47e635932d36f6b2e09cac4b7be28bfa98131a06e8b89e969e8c8abb9eea9af0eb862e07e3516988c5b39
7
+ data.tar.gz: adfd751e70c16cae7ae4ee364af403adf38cfd3eddf7b17287b5819402f96452584d362ee75b88323cd06eebbd3889ca1f1394d7d5134fdf9cecb840b5aea810
data/LICENSE ADDED
@@ -0,0 +1,26 @@
1
+ SPDX-License-Identifier: BSD-3-Clause-Clear
2
+
3
+ Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
4
+
5
+ Redistribution and use in source and binary forms, with or without modification, are permitted
6
+ (subject to the limitations in the disclaimer below) provided that the following conditions are
7
+ met:
8
+
9
+ * Redistributions of source code must retain the above copyright notice, this list of conditions
10
+ and the following disclaimer.
11
+ * Redistributions in binary form must reproduce the above copyright notice, this list of
12
+ conditions and the following disclaimer in the documentation and/or other materials provided
13
+ with the distribution.
14
+ * Neither the name of Qualcomm Innovation Center, Inc. nor the names of its contributors may be used
15
+ to endorse or promote products derived from this software without specific prior written
16
+ permission.
17
+
18
+ NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY THIS LICENSE. THIS
19
+ SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
20
+ WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
21
+ FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
22
+ BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
24
+ OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
26
+ THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
data/bin/idlc ADDED
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
4
+ # SPDX-License-Identifier: BSD-3-Clause-Clear
5
+
6
+ # frozen_string_literals: true
7
+
8
+ require 'idlc/cli'
9
+
10
+ Idl::Cli.new(ARGV).run