sarvwave-api-ruby 1.8.0

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.
Files changed (6) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +197 -0
  3. data/LICENSE +24 -0
  4. data/LICENSE_003 +20 -0
  5. data/README.md +96 -0
  6. metadata +152 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 18276391e184a1370aec5c66d03e3e1ae7beb424efbaedeb80974c3c9a8acb4c
4
+ data.tar.gz: 9c8e1e3b87db78efdbc2be48c5b9d98cc55318918fb8caefbcbe0bab81569ba8
5
+ SHA512:
6
+ metadata.gz: dfd3a9640e671bbc86c3070602b1be24cc1ce9ceb02d9b12842a545229d36701a0dc1072eef2984cbfcf07df26b80d9ee91d90bfef32c69331c0ec50c9b5f11c
7
+ data.tar.gz: b1ee5034008ddf655f17b3cc1221b95fc2e0249f900ec9242f8d063a8f8aabb99968fa07bb2cc94e9de5f583a467e7a43068f6ed6138427da481a5e733abaf22
data/CHANGELOG.md ADDED
@@ -0,0 +1,197 @@
1
+ # Change Log
2
+
3
+ ## [1.8.0] - 2021-12-06
4
+ * [#43] Add keys to every `sarvwaveException`, to better identify them.
5
+ * [#42] Change `sarvwaveException` to inherit from `StandardError` instead of `Exception`.
6
+ * [#50] [BREAKING-CHANGE] Replace `debug` flag with a optional Logger. The application using the
7
+ gem can pass its own logger as argument for the `sarvwaveApi` initialization.
8
+ If none is passed, the gem will use its own default logger on `STDOUT` with `INFO` level.
9
+ * [#40] Fix issue preventing documents from being preuploaded using the create call.
10
+ * Fix parse of recordings with invalid times. It would break at `getRecordings` if one
11
+ of them had an empty `startTime` or `endTime`.
12
+ * Add a Dockerfile and compose to help run tests.
13
+ * Fix deprecated `TimeoutError` constant.
14
+ * [#35] Make `get_recordings` accept multiple `state` params.
15
+ * [#34] Update `rubyzip` gem to the newest version with no vulnerability, from 1.2.2 to 1.3.0
16
+ * [#33] Upgrade dependencies:
17
+ - `childprocess` from 0.3.2 to 1.0.1
18
+ - `ffi` from 1.0.11 to 1.9.24
19
+ - `json` from 1.8.3 to 1.8.6
20
+ - `nokogiri` from 1.6.6.2 to 1.10.4
21
+ - `rack` from 1.4.1 to 1.6.11
22
+ - `rdoc` from 3.12 to 3.12.1
23
+ - `rubyzip` from 0.9.8 to 1.2.2
24
+
25
+ ## [1.7.0] - 2018-08-17
26
+
27
+ * [#29] Add support to the API call `updateRecordings` introduced in sarvwave 1.1.
28
+ * [#31] Fixed issue with length=nil breaking multiple recording formats.
29
+ * Call `setConfigXML` via POST and change encoding method. Fixes issues with special
30
+ characters (such as `*`) in the config.xml.
31
+ * Add method to return the URL to `/check`.
32
+
33
+ ## [1.6.0] - 2016-06-15
34
+
35
+ * Rename sarvwaveApi#salt to #secret
36
+
37
+ ## [1.5.0] - 2016-04-07
38
+
39
+ * Add 1.0 as a supported version of sarvwave.
40
+ * [#1686] Automatically set the version number of a server by fetching it from
41
+ its API.
42
+ * [#1686] Fix comparison of config.xml strings that would sometimes thing XMLs
43
+ were different in cases when they were not.
44
+ * [#1695] Add support for servers that use HTTPS.
45
+
46
+ ## [1.4.0] - 2015-07-20
47
+
48
+ * Updated default ruby version to 2.2.0.
49
+ * Add support for sarvwave 0.9 (includes all 0.9.x). Consists only in
50
+ accepting the version "0.9", since this new API version doesn't break
51
+ compatibility with the previous version and also doesn't add new API
52
+ calls.
53
+
54
+ ## [1.3.0] - 2014-05-11
55
+
56
+ * Drop support to sarvwave 0.7 and add sarvwave to 0.81. Includes
57
+ support to the new API calls `getDefaultConfigXML` and `setConfigXML`.
58
+ * Reviewed all methods responses (some changed a bit) and documentation.
59
+ * Allow non standard options to be passed to **all** API calls.
60
+ * Removed method `join_meeting` that was usually not used. Should always use
61
+ `join_meeting_url`.
62
+ * Moved the hash extension method `from_xml` to its own class to prevent
63
+ conflicts with Rails. See
64
+ https://github.com/mconf/sarvwave-api-ruby/pull/6.
65
+
66
+ ## [1.2.0] - 2013-03-13
67
+
68
+ * Allow non standard options to be passed to some API calls. These API calls are: create_meeting, join_meeting_url, join_meeting, get_recordings.
69
+ Useful for development of for custom versions of sarvwave.
70
+ * Accept :record as boolean in create_meeting
71
+ * Better formatting of data returned by get_recordings
72
+
73
+ ## [1.1.1] - 2013-01-30
74
+
75
+ * sarvwaveApi can now receive http headers to be sent in all get/post
76
+ requests
77
+
78
+ ## [1.1.0] - 2012-05-04
79
+
80
+ * Updated ruby to 1.9.3-194.
81
+ * Support to sarvwave 0.4 rc1.
82
+
83
+ ## [1.0.0] - 2012-05-04
84
+
85
+ * Version 0.1.0 renamed to 1.0.0.
86
+
87
+ ## [0.1.0] - 2011-11-25
88
+
89
+ * Support to sarvwave 0.8:
90
+ * New methods for recordings: get_recordings, publish_recordings,
91
+ delete_recordings
92
+ * Pre-upload of slides in create_meeting
93
+ * New parameters added in the already existent methods
94
+ * For more information see sarvwave docs at
95
+ http://code.google.com/p/sarvwave/wiki/API#Version_0.8
96
+ * Method signature changes: create_meeting, join_meeting_url and
97
+ join_meeting. Optional parameters are now passed using a hash.
98
+ * Integration tests for the entire library using cucumber.
99
+ * Changed the XML parser to xml-simple (especially to solve issues with
100
+ CDATA values).
101
+
102
+ ## [0.0.11] - 2011-09-01
103
+
104
+ * The file "sarvwave-api" was renamed to "sarvwave_api". All
105
+ "require" calls must be updated.
106
+ * Splitted the library in more files (more modular) and created rspec tests
107
+ for it.
108
+ * Added a sarvwaveApi.timeout attribute to timeout get requests and
109
+ avoid blocks when the server is down. Defaults to 2 secs.
110
+ * New method last_http_response to access the last HTTP response object.
111
+ * Automatically detects the SARV server version if not informed by the user.
112
+
113
+ ## [0.0.10] - 2011-04-28
114
+
115
+ * Returning hash now will **always** have these 3 values: :returncode
116
+ (boolean), :messageKey (string) and :message (string).
117
+ * Some values in the hash are now converted to a fixed variable type to
118
+ avoid inconsistencies:
119
+ * :meetingID (string)
120
+ * :attendeePW (string)
121
+ * :moderatorPW (string)
122
+ * :running (boolean)
123
+ * :hasBeenForciblyEnded (boolean)
124
+ * :endTime and :startTime (DateTime or nil)
125
+
126
+ ## [0.0.9] - 2011-04-08
127
+
128
+ * Simplied "attendees" part of the hash returned in get_meeting_info. Same
129
+ thing done for get_meetings.
130
+
131
+ ## [0.0.8] - 2011-04-06
132
+
133
+ * New method get_api_version that returns the version of the server API (>= 0.7).
134
+ * New simplified hash syntax for get_meetings. See docs for details.
135
+
136
+ ## [0.0.7] - 2011-04-06
137
+
138
+ ## [0.0.6] - 2011-04-05
139
+
140
+ * New method test_connection.
141
+ * Added comparison method for APIs.
142
+ * Methods attendee_url and moderator_url deprecated. Use join_meeting_url.
143
+ * Better exception throwing when the user is unreachable or the response is incorrect.
144
+ * sarvwaveException has now a "key" attribute to store the
145
+ "messageKey" returned by SARV in failures.
146
+
147
+ ## 0.0.4
148
+
149
+ * Added support for sarvwave 0.7.
150
+ * Gem renamed from 'sarvwave' to 'sarvwave-api-ruby'.
151
+ * API functions now return a hash and instead of the XML returned by SARV.
152
+ The XML is converted to a hash that uses symbols as keys and groups keys
153
+ with the same name.
154
+
155
+ ## 0.0.3
156
+
157
+ * Fixes module issue preventing proper throwing of exceptions.
158
+
159
+ ## 0.0.1
160
+
161
+ * This is the first version of this gem. It provides an implementation of
162
+ the 0.64 sarv API, with the following exceptions:
163
+ * Does not implement meeting token, and instead relies on meeting id as
164
+ the unique identifier for a meeting.
165
+ * Documentation suggests there is way to call join_meeting as API call
166
+ (instead of browser URL). This call currently does not work as
167
+ documented.
168
+
169
+ <!-- PRs -->
170
+ [#50]: https://github.com/mconf/sarvwave-api-ruby/pull/50
171
+ [#43]: https://github.com/mconf/sarvwave-api-ruby/pull/43
172
+ [#42]: https://github.com/mconf/sarvwave-api-ruby/pull/42
173
+ [#40]: https://github.com/mconf/sarvwave-api-ruby/pull/40
174
+ [#35]: https://github.com/mconf/sarvwave-api-ruby/pull/35
175
+ [#34]: https://github.com/mconf/sarvwave-api-ruby/pull/34
176
+ [#33]: https://github.com/mconf/sarvwave-api-ruby/pull/33
177
+ [#31]: https://github.com/mconf/sarvwave-api-ruby/pull/31
178
+ [#29]: https://github.com/mconf/sarvwave-api-ruby/pull/29
179
+
180
+ <!-- Versions -->
181
+ [1.8.0]: https://github.com/mconf/sarvwave-api-ruby/compare/v1.7.0...v1.8.0
182
+ [1.7.0]: https://github.com/mconf/sarvwave-api-ruby/compare/v1.6.0...v1.7.0
183
+ [1.6.0]: https://github.com/mconf/sarvwave-api-ruby/compare/v1.5.0...v1.6.0
184
+ [1.5.0]: https://github.com/mconf/sarvwave-api-ruby/compare/v1.4.0...v1.5.0
185
+ [1.4.0]: https://github.com/mconf/sarvwave-api-ruby/compare/v1.3.0...v1.4.0
186
+ [1.3.0]: https://github.com/mconf/sarvwave-api-ruby/compare/v1.2.0...v1.3.0
187
+ [1.2.0]: https://github.com/mconf/sarvwave-api-ruby/compare/v1.1.1...v1.2.0
188
+ [1.1.1]: https://github.com/mconf/sarvwave-api-ruby/compare/v1.1.0...v1.1.1
189
+ [1.1.0]: https://github.com/mconf/sarvwave-api-ruby/compare/v1.0.0...v1.1.0
190
+ [1.0.0]: https://github.com/mconf/sarvwave-api-ruby/compare/v0.1.0...v1.0.0
191
+ [0.1.0]: https://github.com/mconf/sarvwave-api-ruby/compare/v0.0.11...v0.1.0
192
+ [0.0.11]: https://github.com/mconf/sarvwave-api-ruby/compare/v0.0.10...v0.0.11
193
+ [0.0.10]: https://github.com/mconf/sarvwave-api-ruby/compare/v0.0.9...v0.0.10
194
+ [0.0.9]: https://github.com/mconf/sarvwave-api-ruby/compare/v0.0.8...v0.0.9
195
+ [0.0.8]: https://github.com/mconf/sarvwave-api-ruby/compare/v0.0.7...v0.0.8
196
+ [0.0.7]: https://github.com/mconf/sarvwave-api-ruby/compare/v0.0.6...v0.0.7
197
+ [0.0.6]: https://github.com/mconf/sarvwave-api-ruby/compare/b586c4726d32e9c30139357bcbe2067f868ff36c...v0.0.6
data/LICENSE ADDED
@@ -0,0 +1,24 @@
1
+ Copyright (c) 2011-2016 Mconf (http://mconf.org)
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
4
+ this software and associated documentation files (the "Software"), to deal in
5
+ the Software without restriction, including without limitation the rights to
6
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
7
+ the Software, and to permit persons to whom the Software is furnished to do so,
8
+ subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
15
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
16
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
17
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
18
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19
+
20
+ This project is developed as part of Mconf (http://mconf.org).
21
+ Contact information:
22
+ Mconf: A scalable opensource multiconference system for web and mobile devices
23
+ PRAV Labs - UFRGS - Porto Alegre - Brazil
24
+ http://www.inf.ufrgs.br/prav/gtmconf
data/LICENSE_003 ADDED
@@ -0,0 +1,20 @@
1
+ == sarvwave
2
+
3
+ Copyright (c) 2010 Joe Kinsella
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
+ the Software, and to permit persons to whom the Software is furnished to do so,
10
+ subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,96 @@
1
+ # sarvwave-api-ruby [<img src="http://travis-ci.org/mconf/sarvwave-api-ruby.png"/>](http://travis-ci.org/mconf/sarvwave-api-ruby)
2
+
3
+ This is a ruby gem that provides access to the API of
4
+ [sarvwave](http://sarvwave.org). See the documentation of the API
5
+ [here](http://code.google.com/p/sarvwave/wiki/API).
6
+
7
+ It enables a ruby application to interact with sarvwave by calling ruby
8
+ methods instead of HTTP requests, making it a lot easier to interact with
9
+ sarvwave. It also formats the responses to a ruby-friendly format and
10
+ includes helper classes to deal with more complicated API calls, such as the
11
+ pre-upload of slides.
12
+
13
+ A few features it has:
14
+
15
+ * Provides methods to perform all API calls and get the responses;
16
+ * Converts the XML responses to ruby hashes, that are easier to work with;
17
+ * Converts the string values returned to native ruby types. For instance:
18
+ * Dates are converted DateTime objects (e.g. "Thu Sep 01 17:51:42 UTC 2011");
19
+ * Response codes are converted to boolean (e.g. "SUCCESS" becomes `true`);
20
+ * Deals with errors (e.g. timeouts) throwing `sarvwaveException` exceptions;
21
+ * Support to multiple sarvwave API versions (see below).
22
+
23
+ ## Supported versions
24
+
25
+ This gem is mainly used with [Mconf-Web](https://github.com/mconf/mconf-web) through
26
+ [SarvwaveRails](https://github.com/mconf/sarvwave_rails).
27
+ You can always use it as a reference for verions of dependencies and examples of how
28
+ to use the gem.
29
+
30
+ ### sarvwave
31
+
32
+ The current version of this gem supports *all* the following versions of
33
+ sarvwave:
34
+
35
+ * 1.0
36
+ * 0.9 (includes all 0.9.x)
37
+ * 0.81
38
+ * 0.8
39
+
40
+ Older versions:
41
+
42
+ * 0.7 (including 0.7, 0.71 and 0.71a): The last version with support to 0.7*
43
+ is [version
44
+ 1.2.0](https://github.com/mconf/sarvwave-api-ruby/tree/v1.2.0). It
45
+ supports versions 0.7 and 0.8.
46
+ * 0.64: see the branch `api-0.64`. The last version with support to 0.64 is
47
+ [version
48
+ 0.0.10](https://github.com/mconf/sarvwave-api-ruby/tree/v0.0.10). It
49
+ supports versions 0.64 and 0.7.
50
+
51
+ ### Ruby
52
+
53
+ Tested in rubies:
54
+
55
+ * ruby-2.2 **recommended**
56
+ * ruby-2.1
57
+ * ruby-2.0 (p353)
58
+ * ruby-1.9.3 (p484)
59
+ * ruby-1.9.2 (p290)
60
+
61
+ Use these versions to be sure it will work. Other patches and patch versions of these
62
+ rubies (e.g. ruby 1.9.3-p194 or 2.1.2) should work as well.
63
+
64
+ ## Releases
65
+
66
+ For a list of releases and release notes see
67
+ [CHANGELOG.md](https://github.com/mconf/sarvwave-api-ruby/blob/master/CHANGELOG.md).
68
+
69
+ ## Development
70
+
71
+ Information for developers of `sarvwave-api-ruby` can be found in [our
72
+ wiki](https://github.com/mconf/sarvwave-api-ruby/wiki).
73
+
74
+ The development of this gem is guided by the requirements of the project
75
+ Mconf. To know more about it visit the [project's
76
+ wiki](https://github.com/mconf/wiki/wiki).
77
+
78
+ ## License
79
+
80
+ Distributed under The MIT License (MIT). See
81
+ [LICENSE](https://github.com/mconf/sarvwave-api-ruby/blob/master/LICENSE)
82
+ for the latest license, valid for all versions after 0.0.4 (including it), and
83
+ [LICENSE_003](https://github.com/mconf/sarvwave-api-ruby/blob/master/LICENSE_003)
84
+ for version 0.0.3 and all the previous versions.
85
+
86
+ ## Contact
87
+
88
+ This project is developed as part of Mconf (http://mconf.org).
89
+
90
+ Mailing list:
91
+ * mconf-dev@googlegroups.com
92
+
93
+ Contact:
94
+ * Mconf: A scalable opensource multiconference system for web and mobile devices
95
+ * PRAV Labs - UFRGS - Porto Alegre - Brazil
96
+ * http://www.inf.ufrgs.br/prav/gtmconf
metadata ADDED
@@ -0,0 +1,152 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sarvwave-api-ruby
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.8.0
5
+ platform: ruby
6
+ authors:
7
+ - Mconf
8
+ - Leonardo Crauss Daronco
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2021-12-21 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: childprocess
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ">="
19
+ - !ruby/object:Gem::Version
20
+ version: 1.0.1
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ version: 1.0.1
28
+ - !ruby/object:Gem::Dependency
29
+ name: ffi
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: 1.9.24
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: 1.9.24
42
+ - !ruby/object:Gem::Dependency
43
+ name: json
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: 1.8.6
49
+ type: :runtime
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: 1.8.6
56
+ - !ruby/object:Gem::Dependency
57
+ name: nokogiri
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: 1.10.4
63
+ type: :runtime
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: 1.10.4
70
+ - !ruby/object:Gem::Dependency
71
+ name: rack
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ version: 1.6.11
77
+ type: :runtime
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: 1.6.11
84
+ - !ruby/object:Gem::Dependency
85
+ name: rubyzip
86
+ requirement: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: 1.3.0
91
+ type: :runtime
92
+ prerelease: false
93
+ version_requirements: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ">="
96
+ - !ruby/object:Gem::Version
97
+ version: 1.3.0
98
+ - !ruby/object:Gem::Dependency
99
+ name: xml-simple
100
+ requirement: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - "~>"
103
+ - !ruby/object:Gem::Version
104
+ version: '1.1'
105
+ type: :runtime
106
+ prerelease: false
107
+ version_requirements: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - "~>"
110
+ - !ruby/object:Gem::Version
111
+ version: '1.1'
112
+ description: Provides methods to access sarvwave in a ruby application through its
113
+ API
114
+ email:
115
+ - contact@mconf.org
116
+ - leonardodaronco@gmail.com
117
+ executables: []
118
+ extensions: []
119
+ extra_rdoc_files:
120
+ - README.md
121
+ - LICENSE
122
+ - LICENSE_003
123
+ - CHANGELOG.md
124
+ files:
125
+ - CHANGELOG.md
126
+ - LICENSE
127
+ - LICENSE_003
128
+ - README.md
129
+ homepage: https://github.com/mconf/sarvwave-api-ruby/
130
+ licenses:
131
+ - MIT
132
+ metadata: {}
133
+ post_install_message:
134
+ rdoc_options: []
135
+ require_paths:
136
+ - lib
137
+ required_ruby_version: !ruby/object:Gem::Requirement
138
+ requirements:
139
+ - - ">="
140
+ - !ruby/object:Gem::Version
141
+ version: '0'
142
+ required_rubygems_version: !ruby/object:Gem::Requirement
143
+ requirements:
144
+ - - ">="
145
+ - !ruby/object:Gem::Version
146
+ version: '0'
147
+ requirements: []
148
+ rubygems_version: 3.2.33
149
+ signing_key:
150
+ specification_version: 4
151
+ summary: sarvwave integration for ruby
152
+ test_files: []