workos 0.10.3 → 0.11.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.
- checksums.yaml +4 -4
- data/.ruby-version +1 -1
- data/.semaphore/semaphore.yml +8 -2
- data/Gemfile.lock +49 -36
- data/lib/workos.rb +3 -0
- data/lib/workos/client.rb +3 -3
- data/lib/workos/connection.rb +8 -1
- data/lib/workos/directory.rb +53 -0
- data/lib/workos/directory_group.rb +44 -0
- data/lib/workos/directory_sync.rb +63 -7
- data/lib/workos/directory_user.rb +60 -0
- data/lib/workos/profile.rb +1 -2
- data/lib/workos/sso.rb +10 -2
- data/lib/workos/types.rb +3 -0
- data/lib/workos/types/connection_struct.rb +2 -0
- data/lib/workos/types/directory_group_struct.rb +13 -0
- data/lib/workos/types/directory_struct.rb +16 -0
- data/lib/workos/types/directory_user_struct.rb +18 -0
- data/lib/workos/version.rb +1 -1
- data/sorbet/rbi/gems/addressable.rbi +199 -0
- data/sorbet/rbi/gems/ast.rbi +49 -0
- data/sorbet/rbi/gems/codecov.rbi +37 -0
- data/sorbet/rbi/gems/crack.rbi +62 -0
- data/sorbet/rbi/gems/docile.rbi +36 -0
- data/sorbet/rbi/gems/hashdiff.rbi +66 -0
- data/sorbet/rbi/gems/parallel.rbi +83 -0
- data/sorbet/rbi/gems/parser.rbi +1429 -0
- data/sorbet/rbi/gems/public_suffix.rbi +104 -0
- data/sorbet/rbi/gems/rainbow.rbi +118 -0
- data/sorbet/rbi/gems/rake.rbi +644 -0
- data/sorbet/rbi/gems/regexp_parser.rbi +926 -0
- data/sorbet/rbi/gems/rexml.rbi +628 -0
- data/sorbet/rbi/gems/rspec-core.rbi +1898 -0
- data/sorbet/rbi/gems/rspec-expectations.rbi +1127 -0
- data/sorbet/rbi/gems/rspec-mocks.rbi +1099 -0
- data/sorbet/rbi/gems/rspec-support.rbi +280 -0
- data/sorbet/rbi/gems/rspec.rbi +15 -0
- data/sorbet/rbi/gems/rubocop-ast.rbi +1355 -0
- data/sorbet/rbi/gems/rubocop.rbi +7253 -0
- data/sorbet/rbi/gems/ruby-progressbar.rbi +304 -0
- data/sorbet/rbi/gems/simplecov-html.rbi +35 -0
- data/sorbet/rbi/gems/simplecov.rbi +406 -0
- data/sorbet/rbi/gems/unicode-display_width.rbi +17 -0
- data/sorbet/rbi/gems/vcr.rbi +572 -0
- data/sorbet/rbi/gems/webmock.rbi +556 -0
- data/sorbet/rbi/gems/yard.rbi +1165 -0
- data/sorbet/rbi/sorbet-typed/lib/rake/all/rake.rbi +645 -0
- data/sorbet/rbi/sorbet-typed/lib/rspec-core/all/rspec-core.rbi +1891 -0
- data/sorbet/rbi/sorbet-typed/lib/rubocop/~>0.85/rubocop.rbi +2072 -0
- data/sorbet/rbi/sorbet-typed/lib/yard/all/yard.rbi +1214 -0
- data/sorbet/rbi/todo.rbi +1 -3
- data/spec/lib/workos/directory_sync_spec.rb +347 -32
- data/spec/lib/workos/sso_spec.rb +106 -31
- data/spec/spec_helper.rb +1 -1
- data/spec/support/fixtures/vcr_cassettes/directory_sync/delete_directory.yml +72 -0
- data/spec/support/fixtures/vcr_cassettes/{sso/list_connections.yml → directory_sync/list_directories/with_after.yml} +7 -7
- data/spec/support/fixtures/vcr_cassettes/{sso/list_connections_with_limit_param.yml → directory_sync/list_directories/with_before.yml} +8 -8
- data/spec/support/fixtures/vcr_cassettes/{sso/list_connections_with_connection_type_param.yml → directory_sync/list_directories/with_domain.yml} +11 -10
- data/spec/support/fixtures/vcr_cassettes/{sso/list_connections_with_after_param.yml → directory_sync/list_directories/with_limit.yml} +12 -10
- data/spec/support/fixtures/vcr_cassettes/directory_sync/{list_directories.yml → list_directories/with_no_options.yml} +1 -1
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_directories/with_search.yml +73 -0
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_after.yml +76 -0
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_before.yml +74 -0
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_directory.yml +78 -0
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_limit.yml +74 -0
- data/spec/support/fixtures/vcr_cassettes/directory_sync/{list_groups.yml → list_groups/with_no_options.yml} +16 -6
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_groups/with_user.yml +72 -0
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_after.yml +86 -0
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_before.yml +75 -0
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_directory.yml +93 -0
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_group.yml +76 -0
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_users/with_limit.yml +75 -0
- data/spec/support/fixtures/vcr_cassettes/directory_sync/{list_users.yml → list_users/with_no_options.yml} +16 -6
- data/spec/support/fixtures/vcr_cassettes/sso/create_connection_with_valid_source.yml +3 -3
- data/spec/support/fixtures/vcr_cassettes/sso/list_connections/with_after.yml +73 -0
- data/spec/support/fixtures/vcr_cassettes/sso/list_connections/with_before.yml +73 -0
- data/spec/support/fixtures/vcr_cassettes/sso/list_connections/with_connection_type.yml +73 -0
- data/spec/support/fixtures/vcr_cassettes/sso/{list_connections_with_domain_param.yml → list_connections/with_domain.yml} +6 -6
- data/spec/support/fixtures/vcr_cassettes/sso/list_connections/with_limit.yml +74 -0
- data/spec/support/fixtures/vcr_cassettes/sso/list_connections/with_no_options.yml +73 -0
- data/spec/support/fixtures/vcr_cassettes/sso/{list_connections_with_organization_id_param.yml → list_connections/with_organization_id.yml} +6 -6
- data/workos.gemspec +2 -0
- metadata +97 -40
- data/sorbet/rbi/hidden-definitions/errors.txt +0 -24896
- data/sorbet/rbi/hidden-definitions/hidden.rbi +0 -38411
- data/sorbet/rbi/sorbet-typed/lib/bundler/all/bundler.rbi +0 -8684
- data/sorbet/rbi/sorbet-typed/lib/ruby/all/gem.rbi +0 -4222
- data/sorbet/rbi/sorbet-typed/lib/ruby/all/open3.rbi +0 -111
- data/sorbet/rbi/sorbet-typed/lib/ruby/all/resolv.rbi +0 -543
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_directories_with_domain_param.yml +0 -63
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_groups_with_directory_param.yml +0 -62
- data/spec/support/fixtures/vcr_cassettes/directory_sync/list_users_with_directory_param.yml +0 -62
- data/spec/support/fixtures/vcr_cassettes/sso/list_connections_with_before_param.yml +0 -73
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# typed: true
|
|
3
|
+
|
|
4
|
+
module WorkOS
|
|
5
|
+
# The DirectoryUser class provides a lightweight wrapper around
|
|
6
|
+
# a WorkOS DirectoryUser resource. This class is not meant to be instantiated
|
|
7
|
+
# in DirectoryUser space, and is instantiated internally but exposed.
|
|
8
|
+
class DirectoryUser
|
|
9
|
+
extend T::Sig
|
|
10
|
+
|
|
11
|
+
attr_accessor :id, :emails, :first_name, :last_name, :username, :state,
|
|
12
|
+
:raw_attributes
|
|
13
|
+
|
|
14
|
+
sig { params(json: String).void }
|
|
15
|
+
def initialize(json)
|
|
16
|
+
raw = parse_json(json)
|
|
17
|
+
|
|
18
|
+
@id = T.let(raw.id, String)
|
|
19
|
+
@emails = T.let(raw.emails, Array)
|
|
20
|
+
@first_name = raw.first_name
|
|
21
|
+
@last_name = raw.last_name
|
|
22
|
+
@username = raw.username
|
|
23
|
+
@state = raw.state
|
|
24
|
+
@raw_attributes = raw.raw_attributes
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
def to_json(*)
|
|
28
|
+
{
|
|
29
|
+
id: id,
|
|
30
|
+
emails: emails,
|
|
31
|
+
first_name: first_name,
|
|
32
|
+
last_name: last_name,
|
|
33
|
+
username: username,
|
|
34
|
+
state: state,
|
|
35
|
+
raw_attributes: raw_attributes,
|
|
36
|
+
}
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
private
|
|
40
|
+
|
|
41
|
+
sig do
|
|
42
|
+
params(
|
|
43
|
+
json_string: String,
|
|
44
|
+
).returns(WorkOS::Types::DirectoryUserStruct)
|
|
45
|
+
end
|
|
46
|
+
def parse_json(json_string)
|
|
47
|
+
hash = JSON.parse(json_string, symbolize_names: true)
|
|
48
|
+
|
|
49
|
+
WorkOS::Types::DirectoryUserStruct.new(
|
|
50
|
+
id: hash[:id],
|
|
51
|
+
emails: hash[:emails],
|
|
52
|
+
first_name: hash[:first_name],
|
|
53
|
+
last_name: hash[:last_name],
|
|
54
|
+
username: hash[:username],
|
|
55
|
+
state: hash[:state],
|
|
56
|
+
raw_attributes: hash[:raw_attributes],
|
|
57
|
+
)
|
|
58
|
+
end
|
|
59
|
+
end
|
|
60
|
+
end
|
data/lib/workos/profile.rb
CHANGED
|
@@ -13,7 +13,7 @@ module WorkOS
|
|
|
13
13
|
sig { returns(String) }
|
|
14
14
|
attr_accessor :id, :email, :first_name, :last_name, :connection_id,
|
|
15
15
|
:connection_type, :idp_id, :raw_attributes
|
|
16
|
-
|
|
16
|
+
|
|
17
17
|
sig { params(profile_json: String).void }
|
|
18
18
|
def initialize(profile_json)
|
|
19
19
|
raw = parse_json(profile_json)
|
|
@@ -27,7 +27,6 @@ module WorkOS
|
|
|
27
27
|
@idp_id = raw.idp_id
|
|
28
28
|
@raw_attributes = raw.raw_attributes
|
|
29
29
|
end
|
|
30
|
-
# rubocop:enable Metrics/AbcSize
|
|
31
30
|
|
|
32
31
|
sig { returns(String) }
|
|
33
32
|
def full_name
|
data/lib/workos/sso.rb
CHANGED
|
@@ -226,7 +226,7 @@ module WorkOS
|
|
|
226
226
|
sig do
|
|
227
227
|
params(
|
|
228
228
|
options: T::Hash[Symbol, String],
|
|
229
|
-
).returns(
|
|
229
|
+
).returns(WorkOS::Types::ListStruct)
|
|
230
230
|
end
|
|
231
231
|
def list_connections(options = {})
|
|
232
232
|
response = execute_request(
|
|
@@ -237,7 +237,15 @@ module WorkOS
|
|
|
237
237
|
),
|
|
238
238
|
)
|
|
239
239
|
|
|
240
|
-
JSON.parse(response.body)
|
|
240
|
+
parsed_response = JSON.parse(response.body)
|
|
241
|
+
connections = parsed_response['data'].map do |connection|
|
|
242
|
+
::WorkOS::Connection.new(connection.to_json)
|
|
243
|
+
end
|
|
244
|
+
|
|
245
|
+
WorkOS::Types::ListStruct.new(
|
|
246
|
+
data: connections,
|
|
247
|
+
list_metadata: parsed_response['listMetadata'],
|
|
248
|
+
)
|
|
241
249
|
end
|
|
242
250
|
|
|
243
251
|
# Get a Connection
|
data/lib/workos/types.rb
CHANGED
|
@@ -6,11 +6,14 @@ module WorkOS
|
|
|
6
6
|
# so we're using Sorbet throughout this Ruby gem.
|
|
7
7
|
module Types
|
|
8
8
|
require_relative 'types/connection_struct'
|
|
9
|
+
require_relative 'types/directory_struct'
|
|
10
|
+
require_relative 'types/directory_group_struct'
|
|
9
11
|
require_relative 'types/intent_enum'
|
|
10
12
|
require_relative 'types/list_struct'
|
|
11
13
|
require_relative 'types/organization_struct'
|
|
12
14
|
require_relative 'types/passwordless_session_struct'
|
|
13
15
|
require_relative 'types/profile_struct'
|
|
14
16
|
require_relative 'types/provider_enum'
|
|
17
|
+
require_relative 'types/directory_user_struct'
|
|
15
18
|
end
|
|
16
19
|
end
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# typed: strict
|
|
3
|
+
|
|
4
|
+
module WorkOS
|
|
5
|
+
module Types
|
|
6
|
+
# This DirectoryGroupStruct acts as a typed interface
|
|
7
|
+
# for the DirectoryGroup class
|
|
8
|
+
class DirectoryGroupStruct < T::Struct
|
|
9
|
+
const :id, String
|
|
10
|
+
const :name, String
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
end
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# typed: strict
|
|
3
|
+
|
|
4
|
+
module WorkOS
|
|
5
|
+
module Types
|
|
6
|
+
# This DirectoryStruct acts as a typed interface
|
|
7
|
+
# for the Directory class
|
|
8
|
+
class DirectoryStruct < T::Struct
|
|
9
|
+
const :id, String
|
|
10
|
+
const :name, String
|
|
11
|
+
const :domain, String
|
|
12
|
+
const :type, String
|
|
13
|
+
const :state, String
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# typed: strict
|
|
3
|
+
|
|
4
|
+
module WorkOS
|
|
5
|
+
module Types
|
|
6
|
+
# The DirectoryUserStruct acts as a typed interface
|
|
7
|
+
# for the DirectoryUser class
|
|
8
|
+
class DirectoryUserStruct < T::Struct
|
|
9
|
+
const :id, String
|
|
10
|
+
const :emails, T::Array[T.untyped]
|
|
11
|
+
const :first_name, T.nilable(String)
|
|
12
|
+
const :last_name, T.nilable(String)
|
|
13
|
+
const :username, T.nilable(String)
|
|
14
|
+
const :state, T.nilable(String)
|
|
15
|
+
const :raw_attributes, T::Hash[Symbol, Object]
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
data/lib/workos/version.rb
CHANGED
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
# This file is autogenerated. Do not edit it by hand. Regenerate it with:
|
|
2
|
+
# srb rbi gems
|
|
3
|
+
|
|
4
|
+
# typed: strict
|
|
5
|
+
#
|
|
6
|
+
# If you would like to make changes to this file, great! Please create the gem's shim here:
|
|
7
|
+
#
|
|
8
|
+
# https://github.com/sorbet/sorbet-typed/new/master?filename=lib/addressable/all/addressable.rbi
|
|
9
|
+
#
|
|
10
|
+
# addressable-2.7.0
|
|
11
|
+
|
|
12
|
+
module Addressable
|
|
13
|
+
end
|
|
14
|
+
module Addressable::VERSION
|
|
15
|
+
end
|
|
16
|
+
module Addressable::IDNA
|
|
17
|
+
def self.lookup_unicode_combining_class(codepoint); end
|
|
18
|
+
def self.lookup_unicode_compatibility(codepoint); end
|
|
19
|
+
def self.lookup_unicode_composition(unpacked); end
|
|
20
|
+
def self.lookup_unicode_lowercase(codepoint); end
|
|
21
|
+
def self.punycode_adapt(delta, numpoints, firsttime); end
|
|
22
|
+
def self.punycode_basic?(codepoint); end
|
|
23
|
+
def self.punycode_decode(punycode); end
|
|
24
|
+
def self.punycode_decode_digit(codepoint); end
|
|
25
|
+
def self.punycode_delimiter?(codepoint); end
|
|
26
|
+
def self.punycode_encode(unicode); end
|
|
27
|
+
def self.punycode_encode_digit(d); end
|
|
28
|
+
def self.to_ascii(input); end
|
|
29
|
+
def self.to_unicode(input); end
|
|
30
|
+
def self.unicode_compose(unpacked); end
|
|
31
|
+
def self.unicode_compose_pair(ch_one, ch_two); end
|
|
32
|
+
def self.unicode_decompose(unpacked); end
|
|
33
|
+
def self.unicode_decompose_hangul(codepoint); end
|
|
34
|
+
def self.unicode_downcase(input); end
|
|
35
|
+
def self.unicode_normalize_kc(input); end
|
|
36
|
+
def self.unicode_sort_canonical(unpacked); end
|
|
37
|
+
end
|
|
38
|
+
class Addressable::IDNA::PunycodeBadInput < StandardError
|
|
39
|
+
end
|
|
40
|
+
class Addressable::IDNA::PunycodeBigOutput < StandardError
|
|
41
|
+
end
|
|
42
|
+
class Addressable::IDNA::PunycodeOverflow < StandardError
|
|
43
|
+
end
|
|
44
|
+
class Addressable::URI
|
|
45
|
+
def +(uri); end
|
|
46
|
+
def ==(uri); end
|
|
47
|
+
def ===(uri); end
|
|
48
|
+
def absolute?; end
|
|
49
|
+
def authority; end
|
|
50
|
+
def authority=(new_authority); end
|
|
51
|
+
def basename; end
|
|
52
|
+
def default_port; end
|
|
53
|
+
def defer_validation; end
|
|
54
|
+
def display_uri; end
|
|
55
|
+
def domain; end
|
|
56
|
+
def dup; end
|
|
57
|
+
def empty?; end
|
|
58
|
+
def eql?(uri); end
|
|
59
|
+
def extname; end
|
|
60
|
+
def fragment; end
|
|
61
|
+
def fragment=(new_fragment); end
|
|
62
|
+
def freeze; end
|
|
63
|
+
def hash; end
|
|
64
|
+
def host; end
|
|
65
|
+
def host=(new_host); end
|
|
66
|
+
def hostname; end
|
|
67
|
+
def hostname=(new_hostname); end
|
|
68
|
+
def inferred_port; end
|
|
69
|
+
def initialize(options = nil); end
|
|
70
|
+
def inspect; end
|
|
71
|
+
def ip_based?; end
|
|
72
|
+
def join!(uri); end
|
|
73
|
+
def join(uri); end
|
|
74
|
+
def merge!(uri); end
|
|
75
|
+
def merge(hash); end
|
|
76
|
+
def normalize!; end
|
|
77
|
+
def normalize; end
|
|
78
|
+
def normalized_authority; end
|
|
79
|
+
def normalized_fragment; end
|
|
80
|
+
def normalized_host; end
|
|
81
|
+
def normalized_password; end
|
|
82
|
+
def normalized_path; end
|
|
83
|
+
def normalized_port; end
|
|
84
|
+
def normalized_query(*flags); end
|
|
85
|
+
def normalized_scheme; end
|
|
86
|
+
def normalized_site; end
|
|
87
|
+
def normalized_user; end
|
|
88
|
+
def normalized_userinfo; end
|
|
89
|
+
def omit!(*components); end
|
|
90
|
+
def omit(*components); end
|
|
91
|
+
def origin; end
|
|
92
|
+
def origin=(new_origin); end
|
|
93
|
+
def password; end
|
|
94
|
+
def password=(new_password); end
|
|
95
|
+
def path; end
|
|
96
|
+
def path=(new_path); end
|
|
97
|
+
def port; end
|
|
98
|
+
def port=(new_port); end
|
|
99
|
+
def query; end
|
|
100
|
+
def query=(new_query); end
|
|
101
|
+
def query_values(return_type = nil); end
|
|
102
|
+
def query_values=(new_query_values); end
|
|
103
|
+
def relative?; end
|
|
104
|
+
def remove_composite_values; end
|
|
105
|
+
def replace_self(uri); end
|
|
106
|
+
def request_uri; end
|
|
107
|
+
def request_uri=(new_request_uri); end
|
|
108
|
+
def route_from(uri); end
|
|
109
|
+
def route_to(uri); end
|
|
110
|
+
def scheme; end
|
|
111
|
+
def scheme=(new_scheme); end
|
|
112
|
+
def self.convert_path(path); end
|
|
113
|
+
def self.encode(uri, return_type = nil); end
|
|
114
|
+
def self.encode_component(component, character_class = nil, upcase_encoded = nil); end
|
|
115
|
+
def self.escape(uri, return_type = nil); end
|
|
116
|
+
def self.form_encode(form_values, sort = nil); end
|
|
117
|
+
def self.form_unencode(encoded_value); end
|
|
118
|
+
def self.heuristic_parse(uri, hints = nil); end
|
|
119
|
+
def self.ip_based_schemes; end
|
|
120
|
+
def self.join(*uris); end
|
|
121
|
+
def self.normalize_component(component, character_class = nil, leave_encoded = nil); end
|
|
122
|
+
def self.normalize_path(path); end
|
|
123
|
+
def self.normalized_encode(uri, return_type = nil); end
|
|
124
|
+
def self.parse(uri); end
|
|
125
|
+
def self.port_mapping; end
|
|
126
|
+
def self.unencode(uri, return_type = nil, leave_encoded = nil); end
|
|
127
|
+
def self.unencode_component(uri, return_type = nil, leave_encoded = nil); end
|
|
128
|
+
def self.unescape(uri, return_type = nil, leave_encoded = nil); end
|
|
129
|
+
def self.unescape_component(uri, return_type = nil, leave_encoded = nil); end
|
|
130
|
+
def site; end
|
|
131
|
+
def site=(new_site); end
|
|
132
|
+
def split_path(path); end
|
|
133
|
+
def tld; end
|
|
134
|
+
def tld=(new_tld); end
|
|
135
|
+
def to_hash; end
|
|
136
|
+
def to_s; end
|
|
137
|
+
def to_str; end
|
|
138
|
+
def user; end
|
|
139
|
+
def user=(new_user); end
|
|
140
|
+
def userinfo; end
|
|
141
|
+
def userinfo=(new_userinfo); end
|
|
142
|
+
def validate; end
|
|
143
|
+
end
|
|
144
|
+
class Addressable::URI::InvalidURIError < StandardError
|
|
145
|
+
end
|
|
146
|
+
module Addressable::URI::CharacterClasses
|
|
147
|
+
end
|
|
148
|
+
class Addressable::Template
|
|
149
|
+
def ==(template); end
|
|
150
|
+
def eql?(template); end
|
|
151
|
+
def expand(mapping, processor = nil, normalize_values = nil); end
|
|
152
|
+
def extract(uri, processor = nil); end
|
|
153
|
+
def freeze; end
|
|
154
|
+
def generate(params = nil, recall = nil, options = nil); end
|
|
155
|
+
def initialize(pattern); end
|
|
156
|
+
def inspect; end
|
|
157
|
+
def join_values(operator, return_value); end
|
|
158
|
+
def keys; end
|
|
159
|
+
def match(uri, processor = nil); end
|
|
160
|
+
def named_captures; end
|
|
161
|
+
def names; end
|
|
162
|
+
def normalize_keys(mapping); end
|
|
163
|
+
def normalize_value(value); end
|
|
164
|
+
def ordered_variable_defaults; end
|
|
165
|
+
def parse_template_pattern(pattern, processor = nil); end
|
|
166
|
+
def partial_expand(mapping, processor = nil, normalize_values = nil); end
|
|
167
|
+
def pattern; end
|
|
168
|
+
def source; end
|
|
169
|
+
def to_regexp; end
|
|
170
|
+
def transform_capture(mapping, capture, processor = nil, normalize_values = nil); end
|
|
171
|
+
def transform_partial_capture(mapping, capture, processor = nil, normalize_values = nil); end
|
|
172
|
+
def variable_defaults; end
|
|
173
|
+
def variables; end
|
|
174
|
+
end
|
|
175
|
+
class Addressable::Template::InvalidTemplateValueError < StandardError
|
|
176
|
+
end
|
|
177
|
+
class Addressable::Template::InvalidTemplateOperatorError < StandardError
|
|
178
|
+
end
|
|
179
|
+
class Addressable::Template::TemplateOperatorAbortedError < StandardError
|
|
180
|
+
end
|
|
181
|
+
class Addressable::Template::MatchData
|
|
182
|
+
def [](key, len = nil); end
|
|
183
|
+
def captures; end
|
|
184
|
+
def initialize(uri, template, mapping); end
|
|
185
|
+
def inspect; end
|
|
186
|
+
def keys; end
|
|
187
|
+
def mapping; end
|
|
188
|
+
def names; end
|
|
189
|
+
def post_match; end
|
|
190
|
+
def pre_match; end
|
|
191
|
+
def string; end
|
|
192
|
+
def template; end
|
|
193
|
+
def to_a; end
|
|
194
|
+
def to_s; end
|
|
195
|
+
def uri; end
|
|
196
|
+
def values; end
|
|
197
|
+
def values_at(*indexes); end
|
|
198
|
+
def variables; end
|
|
199
|
+
end
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# This file is autogenerated. Do not edit it by hand. Regenerate it with:
|
|
2
|
+
# srb rbi gems
|
|
3
|
+
|
|
4
|
+
# typed: strict
|
|
5
|
+
#
|
|
6
|
+
# If you would like to make changes to this file, great! Please create the gem's shim here:
|
|
7
|
+
#
|
|
8
|
+
# https://github.com/sorbet/sorbet-typed/new/master?filename=lib/ast/all/ast.rbi
|
|
9
|
+
#
|
|
10
|
+
# ast-2.4.2
|
|
11
|
+
|
|
12
|
+
module AST
|
|
13
|
+
end
|
|
14
|
+
class AST::Node
|
|
15
|
+
def +(array); end
|
|
16
|
+
def <<(element); end
|
|
17
|
+
def ==(other); end
|
|
18
|
+
def append(element); end
|
|
19
|
+
def assign_properties(properties); end
|
|
20
|
+
def children; end
|
|
21
|
+
def clone; end
|
|
22
|
+
def concat(array); end
|
|
23
|
+
def deconstruct; end
|
|
24
|
+
def dup; end
|
|
25
|
+
def eql?(other); end
|
|
26
|
+
def fancy_type; end
|
|
27
|
+
def hash; end
|
|
28
|
+
def initialize(type, children = nil, properties = nil); end
|
|
29
|
+
def inspect(indent = nil); end
|
|
30
|
+
def original_dup; end
|
|
31
|
+
def to_a; end
|
|
32
|
+
def to_ast; end
|
|
33
|
+
def to_s(indent = nil); end
|
|
34
|
+
def to_sexp(indent = nil); end
|
|
35
|
+
def to_sexp_array; end
|
|
36
|
+
def type; end
|
|
37
|
+
def updated(type = nil, children = nil, properties = nil); end
|
|
38
|
+
end
|
|
39
|
+
class AST::Processor
|
|
40
|
+
include AST::Processor::Mixin
|
|
41
|
+
end
|
|
42
|
+
module AST::Processor::Mixin
|
|
43
|
+
def handler_missing(node); end
|
|
44
|
+
def process(node); end
|
|
45
|
+
def process_all(nodes); end
|
|
46
|
+
end
|
|
47
|
+
module AST::Sexp
|
|
48
|
+
def s(type, *children); end
|
|
49
|
+
end
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# This file is autogenerated. Do not edit it by hand. Regenerate it with:
|
|
2
|
+
# srb rbi gems
|
|
3
|
+
|
|
4
|
+
# typed: strict
|
|
5
|
+
#
|
|
6
|
+
# If you would like to make changes to this file, great! Please create the gem's shim here:
|
|
7
|
+
#
|
|
8
|
+
# https://github.com/sorbet/sorbet-typed/new/master?filename=lib/codecov/all/codecov.rbi
|
|
9
|
+
#
|
|
10
|
+
# codecov-0.2.15
|
|
11
|
+
|
|
12
|
+
module Codecov
|
|
13
|
+
end
|
|
14
|
+
class SimpleCov::Formatter::Codecov
|
|
15
|
+
def black(str); end
|
|
16
|
+
def build_params(ci); end
|
|
17
|
+
def create_report(report); end
|
|
18
|
+
def detect_ci; end
|
|
19
|
+
def display_header; end
|
|
20
|
+
def file_network; end
|
|
21
|
+
def file_to_codecov(file); end
|
|
22
|
+
def format(result, disable_net_blockers = nil); end
|
|
23
|
+
def green(str); end
|
|
24
|
+
def gzip_report(report); end
|
|
25
|
+
def handle_report_response(report); end
|
|
26
|
+
def net_blockers(switch); end
|
|
27
|
+
def red(str); end
|
|
28
|
+
def result_to_codecov(result); end
|
|
29
|
+
def result_to_codecov_coverage(result); end
|
|
30
|
+
def result_to_codecov_messages(result); end
|
|
31
|
+
def result_to_codecov_report(result); end
|
|
32
|
+
def retry_request(req, https); end
|
|
33
|
+
def shortened_filename(file); end
|
|
34
|
+
def upload_to_codecov(ci, report); end
|
|
35
|
+
def upload_to_v2(url, report, query, query_without_token); end
|
|
36
|
+
def upload_to_v4(url, report, query, query_without_token); end
|
|
37
|
+
end
|