cybrid_api_organization_ruby 0.6.1 → 0.6.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/README.md +5 -5
- data/cybrid_api_organization_ruby.gemspec +1 -1
- data/lib/cybrid_api_organization_ruby/api/organizations_organization_api.rb +1 -1
- data/lib/cybrid_api_organization_ruby/api_client.rb +1 -1
- data/lib/cybrid_api_organization_ruby/api_error.rb +1 -1
- data/lib/cybrid_api_organization_ruby/configuration.rb +1 -1
- data/lib/cybrid_api_organization_ruby/models/error_response_organization_model.rb +1 -1
- data/lib/cybrid_api_organization_ruby/models/organization_organization_model.rb +1 -1
- data/lib/cybrid_api_organization_ruby/models/patch_organization_organization_model.rb +1 -1
- data/lib/cybrid_api_organization_ruby/version.rb +2 -2
- data/lib/cybrid_api_organization_ruby.rb +1 -1
- data/spec/api/organizations_organization_api_spec.rb +1 -1
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/error_response_organization_model_spec.rb +1 -1
- data/spec/models/organization_organization_model_spec.rb +1 -1
- data/spec/models/patch_organization_organization_model_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/vendor/bundle/ruby/3.1.0/cache/stringio-3.0.2.gem +0 -0
- data/vendor/bundle/ruby/3.1.0/extensions/x86_64-linux/3.1.0-static/byebug-11.1.3/gem_make.out +2 -2
- data/vendor/bundle/ruby/3.1.0/extensions/x86_64-linux/3.1.0-static/ffi-1.15.5/gem_make.out +2 -2
- data/vendor/bundle/ruby/3.1.0/extensions/x86_64-linux/3.1.0-static/jaro_winkler-1.5.4/gem_make.out +2 -2
- data/vendor/bundle/ruby/3.1.0/extensions/x86_64-linux/3.1.0-static/stringio-3.0.2/gem.build_complete +0 -0
- data/vendor/bundle/ruby/3.1.0/extensions/x86_64-linux/3.1.0-static/stringio-3.0.2/gem_make.out +22 -0
- data/vendor/bundle/ruby/3.1.0/extensions/x86_64-linux/3.1.0-static/stringio-3.0.2/mkmf.log +36 -0
- data/vendor/bundle/ruby/3.1.0/extensions/x86_64-linux/3.1.0-static/stringio-3.0.2/stringio.so +0 -0
- data/vendor/bundle/ruby/3.1.0/gems/byebug-11.1.3/ext/byebug/Makefile +2 -2
- data/vendor/bundle/ruby/3.1.0/gems/ffi-1.15.5/ext/ffi_c/Makefile +2 -2
- data/vendor/bundle/ruby/3.1.0/gems/jaro_winkler-1.5.4/ext/jaro_winkler/Makefile +2 -2
- data/vendor/bundle/ruby/3.1.0/gems/stringio-3.0.2/README.md +44 -0
- data/vendor/bundle/ruby/3.1.0/gems/stringio-3.0.2/ext/stringio/.sitearchdir.time +0 -0
- data/vendor/bundle/ruby/3.1.0/gems/stringio-3.0.2/ext/stringio/Makefile +267 -0
- data/vendor/bundle/ruby/3.1.0/gems/stringio-3.0.2/ext/stringio/extconf.rb +4 -0
- data/vendor/bundle/ruby/3.1.0/gems/stringio-3.0.2/ext/stringio/stringio.c +1866 -0
- data/vendor/bundle/ruby/3.1.0/gems/stringio-3.0.2/ext/stringio/stringio.o +0 -0
- data/vendor/bundle/ruby/3.1.0/gems/stringio-3.0.2/ext/stringio/stringio.so +0 -0
- data/vendor/bundle/ruby/3.1.0/gems/stringio-3.0.2/lib/stringio.so +0 -0
- data/vendor/bundle/ruby/3.1.0/specifications/stringio-3.0.2.gemspec +24 -0
- metadata +16 -2
Binary file
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
# stub: stringio 3.0.2 ruby lib
|
3
|
+
# stub: ext/stringio/extconf.rb
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "stringio".freeze
|
7
|
+
s.version = "3.0.2"
|
8
|
+
|
9
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 2.6".freeze) if s.respond_to? :required_rubygems_version=
|
10
|
+
s.require_paths = ["lib".freeze]
|
11
|
+
s.authors = ["Nobu Nakada".freeze, "Charles Oliver Nutter".freeze]
|
12
|
+
s.date = "2022-05-09"
|
13
|
+
s.description = "Pseudo `IO` class from/to `String`.".freeze
|
14
|
+
s.email = ["nobu@ruby-lang.org".freeze, "headius@headius.com".freeze]
|
15
|
+
s.extensions = ["ext/stringio/extconf.rb".freeze]
|
16
|
+
s.files = ["ext/stringio/extconf.rb".freeze]
|
17
|
+
s.homepage = "https://github.com/ruby/stringio".freeze
|
18
|
+
s.licenses = ["Ruby".freeze, "BSD-2-Clause".freeze]
|
19
|
+
s.required_ruby_version = Gem::Requirement.new(">= 2.5".freeze)
|
20
|
+
s.rubygems_version = "3.3.11".freeze
|
21
|
+
s.summary = "Pseudo IO on String".freeze
|
22
|
+
|
23
|
+
s.installed_by_version = "3.3.11" if s.respond_to? :installed_by_version
|
24
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cybrid_api_organization_ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cybrid
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-05-
|
11
|
+
date: 2022-05-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -114,6 +114,7 @@ files:
|
|
114
114
|
- vendor/bundle/ruby/3.1.0/cache/rspec-support-3.11.0.gem
|
115
115
|
- vendor/bundle/ruby/3.1.0/cache/rubocop-0.66.0.gem
|
116
116
|
- vendor/bundle/ruby/3.1.0/cache/ruby-progressbar-1.11.0.gem
|
117
|
+
- vendor/bundle/ruby/3.1.0/cache/stringio-3.0.2.gem
|
117
118
|
- vendor/bundle/ruby/3.1.0/cache/typhoeus-1.4.0.gem
|
118
119
|
- vendor/bundle/ruby/3.1.0/cache/unicode-display_width-1.5.0.gem
|
119
120
|
- vendor/bundle/ruby/3.1.0/extensions/x86_64-linux/3.1.0-static/byebug-11.1.3/byebug/byebug.so
|
@@ -126,6 +127,10 @@ files:
|
|
126
127
|
- vendor/bundle/ruby/3.1.0/extensions/x86_64-linux/3.1.0-static/jaro_winkler-1.5.4/gem.build_complete
|
127
128
|
- vendor/bundle/ruby/3.1.0/extensions/x86_64-linux/3.1.0-static/jaro_winkler-1.5.4/gem_make.out
|
128
129
|
- vendor/bundle/ruby/3.1.0/extensions/x86_64-linux/3.1.0-static/jaro_winkler-1.5.4/jaro_winkler/jaro_winkler_ext.so
|
130
|
+
- vendor/bundle/ruby/3.1.0/extensions/x86_64-linux/3.1.0-static/stringio-3.0.2/gem.build_complete
|
131
|
+
- vendor/bundle/ruby/3.1.0/extensions/x86_64-linux/3.1.0-static/stringio-3.0.2/gem_make.out
|
132
|
+
- vendor/bundle/ruby/3.1.0/extensions/x86_64-linux/3.1.0-static/stringio-3.0.2/mkmf.log
|
133
|
+
- vendor/bundle/ruby/3.1.0/extensions/x86_64-linux/3.1.0-static/stringio-3.0.2/stringio.so
|
129
134
|
- vendor/bundle/ruby/3.1.0/gems/ast-2.4.2/LICENSE.MIT
|
130
135
|
- vendor/bundle/ruby/3.1.0/gems/ast-2.4.2/README.YARD.md
|
131
136
|
- vendor/bundle/ruby/3.1.0/gems/ast-2.4.2/lib/ast.rb
|
@@ -2359,6 +2364,14 @@ files:
|
|
2359
2364
|
- vendor/bundle/ruby/3.1.0/gems/ruby-progressbar-1.11.0/lib/ruby-progressbar/time.rb
|
2360
2365
|
- vendor/bundle/ruby/3.1.0/gems/ruby-progressbar-1.11.0/lib/ruby-progressbar/timer.rb
|
2361
2366
|
- vendor/bundle/ruby/3.1.0/gems/ruby-progressbar-1.11.0/lib/ruby-progressbar/version.rb
|
2367
|
+
- vendor/bundle/ruby/3.1.0/gems/stringio-3.0.2/README.md
|
2368
|
+
- vendor/bundle/ruby/3.1.0/gems/stringio-3.0.2/ext/stringio/.sitearchdir.time
|
2369
|
+
- vendor/bundle/ruby/3.1.0/gems/stringio-3.0.2/ext/stringio/Makefile
|
2370
|
+
- vendor/bundle/ruby/3.1.0/gems/stringio-3.0.2/ext/stringio/extconf.rb
|
2371
|
+
- vendor/bundle/ruby/3.1.0/gems/stringio-3.0.2/ext/stringio/stringio.c
|
2372
|
+
- vendor/bundle/ruby/3.1.0/gems/stringio-3.0.2/ext/stringio/stringio.o
|
2373
|
+
- vendor/bundle/ruby/3.1.0/gems/stringio-3.0.2/ext/stringio/stringio.so
|
2374
|
+
- vendor/bundle/ruby/3.1.0/gems/stringio-3.0.2/lib/stringio.so
|
2362
2375
|
- vendor/bundle/ruby/3.1.0/gems/typhoeus-1.4.0/.gitignore
|
2363
2376
|
- vendor/bundle/ruby/3.1.0/gems/typhoeus-1.4.0/.rspec
|
2364
2377
|
- vendor/bundle/ruby/3.1.0/gems/typhoeus-1.4.0/.travis.yml
|
@@ -2485,6 +2498,7 @@ files:
|
|
2485
2498
|
- vendor/bundle/ruby/3.1.0/specifications/rspec-support-3.11.0.gemspec
|
2486
2499
|
- vendor/bundle/ruby/3.1.0/specifications/rubocop-0.66.0.gemspec
|
2487
2500
|
- vendor/bundle/ruby/3.1.0/specifications/ruby-progressbar-1.11.0.gemspec
|
2501
|
+
- vendor/bundle/ruby/3.1.0/specifications/stringio-3.0.2.gemspec
|
2488
2502
|
- vendor/bundle/ruby/3.1.0/specifications/typhoeus-1.4.0.gemspec
|
2489
2503
|
- vendor/bundle/ruby/3.1.0/specifications/unicode-display_width-1.5.0.gemspec
|
2490
2504
|
homepage: https://github.com/Cybrid-app/cybrid-api-organization-ruby/
|