lunchmoney 0.10.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 +7 -0
- data/.DS_Store +0 -0
- data/.github/dependabot.yml +18 -0
- data/.github/workflows/build_and_publish_yard_docs.yml +47 -0
- data/.github/workflows/ci.yml +58 -0
- data/.github/workflows/dependabot-rbi-updater.yml +43 -0
- data/.github/workflows/publish_gem.yml +31 -0
- data/.gitignore +62 -0
- data/.rubocop.yml +45 -0
- data/.ruby-version +1 -0
- data/.toys/.toys.rb +10 -0
- data/.toys/ci.rb +22 -0
- data/.toys/rbi.rb +60 -0
- data/.toys/rubocop.rb +10 -0
- data/.toys/spoom.rb +15 -0
- data/.toys/typecheck.rb +5 -0
- data/.yardopts +2 -0
- data/Appraisals +22 -0
- data/Gemfile +25 -0
- data/Gemfile.lock +174 -0
- data/LICENSE +21 -0
- data/README.md +57 -0
- data/bin/console +16 -0
- data/bin/rubocop +27 -0
- data/bin/setup +8 -0
- data/bin/spoom +27 -0
- data/bin/srb +27 -0
- data/bin/tapioca +27 -0
- data/bin/toys +27 -0
- data/bin/yard +27 -0
- data/lib/lunchmoney/api.rb +147 -0
- data/lib/lunchmoney/api_call.rb +109 -0
- data/lib/lunchmoney/assets/asset.rb +89 -0
- data/lib/lunchmoney/assets/asset_calls.rb +96 -0
- data/lib/lunchmoney/budget/budget.rb +74 -0
- data/lib/lunchmoney/budget/budget_calls.rb +82 -0
- data/lib/lunchmoney/budget/config.rb +38 -0
- data/lib/lunchmoney/budget/data.rb +42 -0
- data/lib/lunchmoney/categories/category/category.rb +52 -0
- data/lib/lunchmoney/categories/category/child_category.rb +42 -0
- data/lib/lunchmoney/categories/category_calls.rb +195 -0
- data/lib/lunchmoney/configuration.rb +26 -0
- data/lib/lunchmoney/crypto/crypto/crypto.rb +43 -0
- data/lib/lunchmoney/crypto/crypto/crypto_base.rb +65 -0
- data/lib/lunchmoney/crypto/crypto_calls.rb +49 -0
- data/lib/lunchmoney/data_object.rb +25 -0
- data/lib/lunchmoney/errors.rb +19 -0
- data/lib/lunchmoney/exceptions.rb +19 -0
- data/lib/lunchmoney/plaid_accounts/plaid_account.rb +73 -0
- data/lib/lunchmoney/plaid_accounts/plaid_account_calls.rb +38 -0
- data/lib/lunchmoney/recurring_expenses/recurring_expense/recurring_expense.rb +65 -0
- data/lib/lunchmoney/recurring_expenses/recurring_expense/recurring_expense_base.rb +29 -0
- data/lib/lunchmoney/recurring_expenses/recurring_expense_calls.rb +28 -0
- data/lib/lunchmoney/tags/tag/tag.rb +20 -0
- data/lib/lunchmoney/tags/tag/tag_base.rb +21 -0
- data/lib/lunchmoney/tags/tag_calls.rb +20 -0
- data/lib/lunchmoney/transactions/transaction/child_transaction.rb +31 -0
- data/lib/lunchmoney/transactions/transaction/split.rb +24 -0
- data/lib/lunchmoney/transactions/transaction/transaction.rb +156 -0
- data/lib/lunchmoney/transactions/transaction/transaction_base.rb +52 -0
- data/lib/lunchmoney/transactions/transaction/transaction_modification_base.rb +30 -0
- data/lib/lunchmoney/transactions/transaction/update_transaction.rb +43 -0
- data/lib/lunchmoney/transactions/transaction_calls.rb +218 -0
- data/lib/lunchmoney/user/user.rb +36 -0
- data/lib/lunchmoney/user/user_calls.rb +19 -0
- data/lib/lunchmoney/validators.rb +43 -0
- data/lib/lunchmoney/version.rb +7 -0
- data/lib/lunchmoney.rb +54 -0
- data/lunchmoney.gemspec +34 -0
- data/sorbet/config +5 -0
- data/sorbet/rbi/annotations/.gitattributes +1 -0
- data/sorbet/rbi/annotations/activesupport.rbi +410 -0
- data/sorbet/rbi/annotations/faraday.rbi +17 -0
- data/sorbet/rbi/annotations/mocha.rbi +34 -0
- data/sorbet/rbi/annotations/rainbow.rbi +269 -0
- data/sorbet/rbi/annotations/webmock.rbi +9 -0
- data/sorbet/rbi/dsl/.gitattributes +1 -0
- data/sorbet/rbi/dsl/active_support/callbacks.rbi +22 -0
- data/sorbet/rbi/gems/.gitattributes +1 -0
- data/sorbet/rbi/gems/activesupport@7.1.3.rbi +18004 -0
- data/sorbet/rbi/gems/addressable@2.8.6.rbi +1993 -0
- data/sorbet/rbi/gems/appraisal@2.5.0.rbi +621 -0
- data/sorbet/rbi/gems/ast@2.4.2.rbi +584 -0
- data/sorbet/rbi/gems/base64@0.2.0.rbi +508 -0
- data/sorbet/rbi/gems/bigdecimal@3.1.6.rbi +77 -0
- data/sorbet/rbi/gems/coderay@1.1.3.rbi +3426 -0
- data/sorbet/rbi/gems/concurrent-ruby@1.2.3.rbi +11590 -0
- data/sorbet/rbi/gems/connection_pool@2.4.1.rbi +8 -0
- data/sorbet/rbi/gems/crack@0.4.5.rbi +144 -0
- data/sorbet/rbi/gems/dotenv@2.8.1.rbi +234 -0
- data/sorbet/rbi/gems/drb@2.2.0.rbi +1346 -0
- data/sorbet/rbi/gems/erubi@1.12.0.rbi +145 -0
- data/sorbet/rbi/gems/faraday-net_http@3.1.0.rbi +146 -0
- data/sorbet/rbi/gems/faraday@2.9.0.rbi +2911 -0
- data/sorbet/rbi/gems/hashdiff@1.1.0.rbi +352 -0
- data/sorbet/rbi/gems/i18n@1.14.1.rbi +2325 -0
- data/sorbet/rbi/gems/json@2.7.1.rbi +1561 -0
- data/sorbet/rbi/gems/language_server-protocol@3.17.0.3.rbi +14237 -0
- data/sorbet/rbi/gems/method_source@1.0.0.rbi +272 -0
- data/sorbet/rbi/gems/minitest@5.21.2.rbi +2197 -0
- data/sorbet/rbi/gems/mocha@2.1.0.rbi +3934 -0
- data/sorbet/rbi/gems/mutex_m@0.2.0.rbi +93 -0
- data/sorbet/rbi/gems/net-http@0.4.1.rbi +4068 -0
- data/sorbet/rbi/gems/netrc@0.11.0.rbi +158 -0
- data/sorbet/rbi/gems/parallel@1.24.0.rbi +280 -0
- data/sorbet/rbi/gems/parser@3.3.0.5.rbi +5472 -0
- data/sorbet/rbi/gems/prettier_print@1.2.1.rbi +951 -0
- data/sorbet/rbi/gems/prism@0.19.0.rbi +29883 -0
- data/sorbet/rbi/gems/pry-sorbet@0.2.1.rbi +966 -0
- data/sorbet/rbi/gems/pry@0.14.2.rbi +10077 -0
- data/sorbet/rbi/gems/public_suffix@5.0.4.rbi +935 -0
- data/sorbet/rbi/gems/racc@1.7.3.rbi +161 -0
- data/sorbet/rbi/gems/rack@3.0.8.rbi +5183 -0
- data/sorbet/rbi/gems/rainbow@3.1.1.rbi +402 -0
- data/sorbet/rbi/gems/rake@13.1.0.rbi +3027 -0
- data/sorbet/rbi/gems/rbi@0.1.6.rbi +2922 -0
- data/sorbet/rbi/gems/regexp_parser@2.9.0.rbi +3771 -0
- data/sorbet/rbi/gems/rexml@3.2.6.rbi +4781 -0
- data/sorbet/rbi/gems/rubocop-ast@1.30.0.rbi +7117 -0
- data/sorbet/rbi/gems/rubocop-minitest@0.34.5.rbi +2576 -0
- data/sorbet/rbi/gems/rubocop-rails@2.23.1.rbi +9175 -0
- data/sorbet/rbi/gems/rubocop-shopify@2.14.0.rbi +8 -0
- data/sorbet/rbi/gems/rubocop-sorbet@0.7.6.rbi +1510 -0
- data/sorbet/rbi/gems/rubocop@1.60.1.rbi +57356 -0
- data/sorbet/rbi/gems/ruby-progressbar@1.13.0.rbi +1317 -0
- data/sorbet/rbi/gems/ruby2_keywords@0.0.5.rbi +8 -0
- data/sorbet/rbi/gems/spoom@1.2.4.rbi +3777 -0
- data/sorbet/rbi/gems/syntax_tree@6.2.0.rbi +23136 -0
- data/sorbet/rbi/gems/tapioca@0.12.0.rbi +3506 -0
- data/sorbet/rbi/gems/thor@1.3.0.rbi +4312 -0
- data/sorbet/rbi/gems/toys-core@0.15.4.rbi +9462 -0
- data/sorbet/rbi/gems/toys@0.15.4.rbi +243 -0
- data/sorbet/rbi/gems/tzinfo@2.0.6.rbi +5917 -0
- data/sorbet/rbi/gems/unicode-display_width@2.5.0.rbi +65 -0
- data/sorbet/rbi/gems/uri@0.13.0.rbi +2327 -0
- data/sorbet/rbi/gems/vcr@6.2.0.rbi +3036 -0
- data/sorbet/rbi/gems/webmock@3.19.1.rbi +1768 -0
- data/sorbet/rbi/gems/yard-sorbet@0.8.1.rbi +428 -0
- data/sorbet/rbi/gems/yard@0.9.34.rbi +18084 -0
- data/sorbet/shims/module.rbi +6 -0
- data/sorbet/tapioca/require.rb +10 -0
- metadata +228 -0
@@ -0,0 +1,621 @@
|
|
1
|
+
# typed: true
|
2
|
+
|
3
|
+
# DO NOT EDIT MANUALLY
|
4
|
+
# This is an autogenerated file for types exported from the `appraisal` gem.
|
5
|
+
# Please instead update this file by running `bin/tapioca gem appraisal`.
|
6
|
+
|
7
|
+
# source://appraisal//lib/appraisal/version.rb#1
|
8
|
+
module Appraisal; end
|
9
|
+
|
10
|
+
# Represents one appraisal and its dependencies
|
11
|
+
#
|
12
|
+
# source://appraisal//lib/appraisal/appraisal.rb#10
|
13
|
+
class Appraisal::Appraisal
|
14
|
+
# @return [Appraisal] a new instance of Appraisal
|
15
|
+
#
|
16
|
+
# source://appraisal//lib/appraisal/appraisal.rb#15
|
17
|
+
def initialize(name, source_gemfile); end
|
18
|
+
|
19
|
+
# source://appraisal//lib/appraisal/appraisal.rb#20
|
20
|
+
def gem(*args); end
|
21
|
+
|
22
|
+
# Returns the value of attribute gemfile.
|
23
|
+
#
|
24
|
+
# source://appraisal//lib/appraisal/appraisal.rb#13
|
25
|
+
def gemfile; end
|
26
|
+
|
27
|
+
# source://appraisal//lib/appraisal/appraisal.rb#92
|
28
|
+
def gemfile_path; end
|
29
|
+
|
30
|
+
# source://appraisal//lib/appraisal/appraisal.rb#56
|
31
|
+
def gemspec(options = T.unsafe(nil)); end
|
32
|
+
|
33
|
+
# source://appraisal//lib/appraisal/appraisal.rb#36
|
34
|
+
def git(*args, &block); end
|
35
|
+
|
36
|
+
# source://appraisal//lib/appraisal/appraisal.rb#60
|
37
|
+
def git_source(*args, &block); end
|
38
|
+
|
39
|
+
# source://appraisal//lib/appraisal/appraisal.rb#44
|
40
|
+
def group(*args, &block); end
|
41
|
+
|
42
|
+
# source://appraisal//lib/appraisal/appraisal.rb#71
|
43
|
+
def install(options = T.unsafe(nil)); end
|
44
|
+
|
45
|
+
# source://appraisal//lib/appraisal/appraisal.rb#48
|
46
|
+
def install_if(*args, &block); end
|
47
|
+
|
48
|
+
# Returns the value of attribute name.
|
49
|
+
#
|
50
|
+
# source://appraisal//lib/appraisal/appraisal.rb#13
|
51
|
+
def name; end
|
52
|
+
|
53
|
+
# source://appraisal//lib/appraisal/appraisal.rb#40
|
54
|
+
def path(*args, &block); end
|
55
|
+
|
56
|
+
# source://appraisal//lib/appraisal/appraisal.rb#52
|
57
|
+
def platforms(*args, &block); end
|
58
|
+
|
59
|
+
# source://appraisal//lib/appraisal/appraisal.rb#100
|
60
|
+
def relative_gemfile_path; end
|
61
|
+
|
62
|
+
# source://appraisal//lib/appraisal/appraisal.rb#104
|
63
|
+
def relativize; end
|
64
|
+
|
65
|
+
# source://appraisal//lib/appraisal/appraisal.rb#24
|
66
|
+
def remove_gem(*args); end
|
67
|
+
|
68
|
+
# source://appraisal//lib/appraisal/appraisal.rb#32
|
69
|
+
def ruby(*args); end
|
70
|
+
|
71
|
+
# source://appraisal//lib/appraisal/appraisal.rb#28
|
72
|
+
def source(*args, &block); end
|
73
|
+
|
74
|
+
# source://appraisal//lib/appraisal/appraisal.rb#88
|
75
|
+
def update(gems = T.unsafe(nil)); end
|
76
|
+
|
77
|
+
# source://appraisal//lib/appraisal/appraisal.rb#64
|
78
|
+
def write_gemfile; end
|
79
|
+
|
80
|
+
private
|
81
|
+
|
82
|
+
# source://appraisal//lib/appraisal/appraisal.rb#153
|
83
|
+
def bundle_options(options); end
|
84
|
+
|
85
|
+
# source://appraisal//lib/appraisal/appraisal.rb#119
|
86
|
+
def check_command; end
|
87
|
+
|
88
|
+
# source://appraisal//lib/appraisal/appraisal.rb#149
|
89
|
+
def clean_name; end
|
90
|
+
|
91
|
+
# source://appraisal//lib/appraisal/appraisal.rb#179
|
92
|
+
def comment_lines(heading); end
|
93
|
+
|
94
|
+
# source://appraisal//lib/appraisal/appraisal.rb#141
|
95
|
+
def gemfile_name; end
|
96
|
+
|
97
|
+
# source://appraisal//lib/appraisal/appraisal.rb#133
|
98
|
+
def gemfile_root; end
|
99
|
+
|
100
|
+
# source://appraisal//lib/appraisal/appraisal.rb#124
|
101
|
+
def install_command(options = T.unsafe(nil)); end
|
102
|
+
|
103
|
+
# source://appraisal//lib/appraisal/appraisal.rb#145
|
104
|
+
def lockfile_path; end
|
105
|
+
|
106
|
+
# source://appraisal//lib/appraisal/appraisal.rb#137
|
107
|
+
def project_root; end
|
108
|
+
|
109
|
+
# source://appraisal//lib/appraisal/appraisal.rb#189
|
110
|
+
def quoted_gemfile; end
|
111
|
+
|
112
|
+
# source://appraisal//lib/appraisal/appraisal.rb#129
|
113
|
+
def update_command(gems); end
|
114
|
+
end
|
115
|
+
|
116
|
+
# source://appraisal//lib/appraisal/appraisal.rb#11
|
117
|
+
Appraisal::Appraisal::DEFAULT_INSTALL_OPTIONS = T.let(T.unsafe(nil), Hash)
|
118
|
+
|
119
|
+
# Loads and parses Appraisals file
|
120
|
+
#
|
121
|
+
# source://appraisal//lib/appraisal/appraisal_file.rb#8
|
122
|
+
class Appraisal::AppraisalFile
|
123
|
+
# @return [AppraisalFile] a new instance of AppraisalFile
|
124
|
+
#
|
125
|
+
# source://appraisal//lib/appraisal/appraisal_file.rb#15
|
126
|
+
def initialize; end
|
127
|
+
|
128
|
+
# Returns the value of attribute appraisals.
|
129
|
+
#
|
130
|
+
# source://appraisal//lib/appraisal/appraisal_file.rb#9
|
131
|
+
def appraisals; end
|
132
|
+
|
133
|
+
# source://appraisal//lib/appraisal/appraisal_file.rb#31
|
134
|
+
def appraise(name, &block); end
|
135
|
+
|
136
|
+
# source://appraisal//lib/appraisal/appraisal_file.rb#37
|
137
|
+
def customize_gemfiles(&_block); end
|
138
|
+
|
139
|
+
# source://appraisal//lib/appraisal/appraisal_file.rb#27
|
140
|
+
def each(&block); end
|
141
|
+
|
142
|
+
# Returns the value of attribute gemfile.
|
143
|
+
#
|
144
|
+
# source://appraisal//lib/appraisal/appraisal_file.rb#9
|
145
|
+
def gemfile; end
|
146
|
+
|
147
|
+
private
|
148
|
+
|
149
|
+
# source://appraisal//lib/appraisal/appraisal_file.rb#47
|
150
|
+
def path; end
|
151
|
+
|
152
|
+
# source://appraisal//lib/appraisal/appraisal_file.rb#43
|
153
|
+
def run(definitions); end
|
154
|
+
|
155
|
+
class << self
|
156
|
+
# source://appraisal//lib/appraisal/appraisal_file.rb#11
|
157
|
+
def each(&block); end
|
158
|
+
end
|
159
|
+
end
|
160
|
+
|
161
|
+
# Raises when Appraisal is unable to locate Appraisals file in the current directory.
|
162
|
+
#
|
163
|
+
# source://appraisal//lib/appraisal/errors.rb#3
|
164
|
+
class Appraisal::AppraisalsNotFound < ::StandardError
|
165
|
+
# source://appraisal//lib/appraisal/errors.rb#4
|
166
|
+
def message; end
|
167
|
+
end
|
168
|
+
|
169
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#4
|
170
|
+
class Appraisal::BundlerDSL
|
171
|
+
# @return [BundlerDSL] a new instance of BundlerDSL
|
172
|
+
#
|
173
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#10
|
174
|
+
def initialize; end
|
175
|
+
|
176
|
+
# Returns the value of attribute dependencies.
|
177
|
+
#
|
178
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#5
|
179
|
+
def dependencies; end
|
180
|
+
|
181
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#86
|
182
|
+
def for_dup; end
|
183
|
+
|
184
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#28
|
185
|
+
def gem(name, *requirements); end
|
186
|
+
|
187
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#90
|
188
|
+
def gemspec(options = T.unsafe(nil)); end
|
189
|
+
|
190
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#70
|
191
|
+
def git(source, options = T.unsafe(nil), &block); end
|
192
|
+
|
193
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#94
|
194
|
+
def git_source(source, &block); end
|
195
|
+
|
196
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#36
|
197
|
+
def group(*names, &block); end
|
198
|
+
|
199
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#42
|
200
|
+
def install_if(condition, &block); end
|
201
|
+
|
202
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#76
|
203
|
+
def path(source, options = T.unsafe(nil), &block); end
|
204
|
+
|
205
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#48
|
206
|
+
def platform(*names, &block); end
|
207
|
+
|
208
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#48
|
209
|
+
def platforms(*names, &block); end
|
210
|
+
|
211
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#32
|
212
|
+
def remove_gem(name); end
|
213
|
+
|
214
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#66
|
215
|
+
def ruby(ruby_version); end
|
216
|
+
|
217
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#24
|
218
|
+
def run(&block); end
|
219
|
+
|
220
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#56
|
221
|
+
def source(source, &block); end
|
222
|
+
|
223
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#82
|
224
|
+
def to_s; end
|
225
|
+
|
226
|
+
protected
|
227
|
+
|
228
|
+
# Sets the attribute git_sources
|
229
|
+
#
|
230
|
+
# @param value the value to set the attribute git_sources to.
|
231
|
+
#
|
232
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#100
|
233
|
+
def git_sources=(_arg0); end
|
234
|
+
|
235
|
+
private
|
236
|
+
|
237
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#126
|
238
|
+
def dependencies_entry; end
|
239
|
+
|
240
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#130
|
241
|
+
def dependencies_entry_for_dup; end
|
242
|
+
|
243
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#118
|
244
|
+
def gemspec_entry; end
|
245
|
+
|
246
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#122
|
247
|
+
def gemspec_entry_for_dup; end
|
248
|
+
|
249
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#138
|
250
|
+
def gits_entry; end
|
251
|
+
|
252
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#144
|
253
|
+
def gits_entry_for_dup; end
|
254
|
+
|
255
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#138
|
256
|
+
def groups_entry; end
|
257
|
+
|
258
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#144
|
259
|
+
def groups_entry_for_dup; end
|
260
|
+
|
261
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#149
|
262
|
+
def indent(string); end
|
263
|
+
|
264
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#138
|
265
|
+
def install_if_entry; end
|
266
|
+
|
267
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#144
|
268
|
+
def install_if_entry_for_dup; end
|
269
|
+
|
270
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#138
|
271
|
+
def paths_entry; end
|
272
|
+
|
273
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#144
|
274
|
+
def paths_entry_for_dup; end
|
275
|
+
|
276
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#138
|
277
|
+
def platforms_entry; end
|
278
|
+
|
279
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#144
|
280
|
+
def platforms_entry_for_dup; end
|
281
|
+
|
282
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#110
|
283
|
+
def ruby_version_entry; end
|
284
|
+
|
285
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#110
|
286
|
+
def ruby_version_entry_for_dup; end
|
287
|
+
|
288
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#138
|
289
|
+
def source_blocks_entry; end
|
290
|
+
|
291
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#144
|
292
|
+
def source_blocks_entry_for_dup; end
|
293
|
+
|
294
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#104
|
295
|
+
def source_entry; end
|
296
|
+
|
297
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#104
|
298
|
+
def source_entry_for_dup; end
|
299
|
+
|
300
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#153
|
301
|
+
def substitute_git_source(requirements); end
|
302
|
+
end
|
303
|
+
|
304
|
+
# source://appraisal//lib/appraisal/bundler_dsl.rb#7
|
305
|
+
Appraisal::BundlerDSL::PARTS = T.let(T.unsafe(nil), Array)
|
306
|
+
|
307
|
+
# Executes commands with a clean environment
|
308
|
+
#
|
309
|
+
# source://appraisal//lib/appraisal/command.rb#5
|
310
|
+
class Appraisal::Command
|
311
|
+
# @return [Command] a new instance of Command
|
312
|
+
#
|
313
|
+
# source://appraisal//lib/appraisal/command.rb#8
|
314
|
+
def initialize(command, options = T.unsafe(nil)); end
|
315
|
+
|
316
|
+
# Returns the value of attribute command.
|
317
|
+
#
|
318
|
+
# source://appraisal//lib/appraisal/command.rb#6
|
319
|
+
def command; end
|
320
|
+
|
321
|
+
# Returns the value of attribute env.
|
322
|
+
#
|
323
|
+
# source://appraisal//lib/appraisal/command.rb#6
|
324
|
+
def env; end
|
325
|
+
|
326
|
+
# Returns the value of attribute gemfile.
|
327
|
+
#
|
328
|
+
# source://appraisal//lib/appraisal/command.rb#6
|
329
|
+
def gemfile; end
|
330
|
+
|
331
|
+
# source://appraisal//lib/appraisal/command.rb#14
|
332
|
+
def run; end
|
333
|
+
|
334
|
+
private
|
335
|
+
|
336
|
+
# source://appraisal//lib/appraisal/command.rb#53
|
337
|
+
def announce; end
|
338
|
+
|
339
|
+
# source://appraisal//lib/appraisal/command.rb#77
|
340
|
+
def command_as_string; end
|
341
|
+
|
342
|
+
# source://appraisal//lib/appraisal/command.rb#69
|
343
|
+
def command_starting_with_bundle(original_command); end
|
344
|
+
|
345
|
+
# @return [Boolean]
|
346
|
+
#
|
347
|
+
# source://appraisal//lib/appraisal/command.rb#61
|
348
|
+
def command_starts_with_bundle?(original_command); end
|
349
|
+
|
350
|
+
# source://appraisal//lib/appraisal/command.rb#35
|
351
|
+
def ensure_bundler_is_available; end
|
352
|
+
|
353
|
+
# source://appraisal//lib/appraisal/command.rb#85
|
354
|
+
def test_environment; end
|
355
|
+
end
|
356
|
+
|
357
|
+
# source://appraisal//lib/appraisal/conditional.rb#5
|
358
|
+
class Appraisal::Conditional < ::Appraisal::BundlerDSL
|
359
|
+
# @return [Conditional] a new instance of Conditional
|
360
|
+
#
|
361
|
+
# source://appraisal//lib/appraisal/conditional.rb#6
|
362
|
+
def initialize(condition); end
|
363
|
+
|
364
|
+
# source://appraisal//lib/appraisal/conditional.rb#16
|
365
|
+
def for_dup; end
|
366
|
+
|
367
|
+
# source://appraisal//lib/appraisal/conditional.rb#11
|
368
|
+
def to_s; end
|
369
|
+
end
|
370
|
+
|
371
|
+
# source://appraisal//lib/appraisal/customize.rb#2
|
372
|
+
class Appraisal::Customize
|
373
|
+
# @return [Customize] a new instance of Customize
|
374
|
+
#
|
375
|
+
# source://appraisal//lib/appraisal/customize.rb#3
|
376
|
+
def initialize(heading: T.unsafe(nil), single_quotes: T.unsafe(nil)); end
|
377
|
+
|
378
|
+
class << self
|
379
|
+
# source://appraisal//lib/appraisal/customize.rb#8
|
380
|
+
def heading; end
|
381
|
+
|
382
|
+
# source://appraisal//lib/appraisal/customize.rb#12
|
383
|
+
def single_quotes; end
|
384
|
+
end
|
385
|
+
end
|
386
|
+
|
387
|
+
# Dependency on a gem and optional version requirements
|
388
|
+
#
|
389
|
+
# source://appraisal//lib/appraisal/dependency.rb#5
|
390
|
+
class Appraisal::Dependency
|
391
|
+
# @return [Dependency] a new instance of Dependency
|
392
|
+
#
|
393
|
+
# source://appraisal//lib/appraisal/dependency.rb#9
|
394
|
+
def initialize(name, requirements); end
|
395
|
+
|
396
|
+
# source://appraisal//lib/appraisal/dependency.rb#19
|
397
|
+
def for_dup; end
|
398
|
+
|
399
|
+
# Returns the value of attribute name.
|
400
|
+
#
|
401
|
+
# source://appraisal//lib/appraisal/dependency.rb#7
|
402
|
+
def name; end
|
403
|
+
|
404
|
+
# Returns the value of attribute requirements.
|
405
|
+
#
|
406
|
+
# source://appraisal//lib/appraisal/dependency.rb#6
|
407
|
+
def requirements; end
|
408
|
+
|
409
|
+
# Sets the attribute requirements
|
410
|
+
#
|
411
|
+
# @param value the value to set the attribute requirements to.
|
412
|
+
#
|
413
|
+
# source://appraisal//lib/appraisal/dependency.rb#6
|
414
|
+
def requirements=(_arg0); end
|
415
|
+
|
416
|
+
# source://appraisal//lib/appraisal/dependency.rb#14
|
417
|
+
def to_s; end
|
418
|
+
|
419
|
+
private
|
420
|
+
|
421
|
+
# source://appraisal//lib/appraisal/dependency.rb#41
|
422
|
+
def formatted_output(output_requirements); end
|
423
|
+
|
424
|
+
# source://appraisal//lib/appraisal/dependency.rb#45
|
425
|
+
def gem_name; end
|
426
|
+
|
427
|
+
# @return [Boolean]
|
428
|
+
#
|
429
|
+
# source://appraisal//lib/appraisal/dependency.rb#49
|
430
|
+
def no_requirements?; end
|
431
|
+
|
432
|
+
# source://appraisal//lib/appraisal/dependency.rb#25
|
433
|
+
def path_prefixed_requirements; end
|
434
|
+
end
|
435
|
+
|
436
|
+
# source://appraisal//lib/appraisal/dependency_list.rb#5
|
437
|
+
class Appraisal::DependencyList
|
438
|
+
# @return [DependencyList] a new instance of DependencyList
|
439
|
+
#
|
440
|
+
# source://appraisal//lib/appraisal/dependency_list.rb#6
|
441
|
+
def initialize; end
|
442
|
+
|
443
|
+
# source://appraisal//lib/appraisal/dependency_list.rb#11
|
444
|
+
def add(name, requirements); end
|
445
|
+
|
446
|
+
# source://appraisal//lib/appraisal/dependency_list.rb#28
|
447
|
+
def for_dup; end
|
448
|
+
|
449
|
+
# source://appraisal//lib/appraisal/dependency_list.rb#17
|
450
|
+
def remove(name); end
|
451
|
+
|
452
|
+
# source://appraisal//lib/appraisal/dependency_list.rb#23
|
453
|
+
def to_s; end
|
454
|
+
end
|
455
|
+
|
456
|
+
# Load bundler Gemfiles and merge dependencies
|
457
|
+
#
|
458
|
+
# source://appraisal//lib/appraisal/gemfile.rb#13
|
459
|
+
class Appraisal::Gemfile < ::Appraisal::BundlerDSL
|
460
|
+
# source://appraisal//lib/appraisal/gemfile.rb#22
|
461
|
+
def dup; end
|
462
|
+
|
463
|
+
# source://appraisal//lib/appraisal/gemfile.rb#14
|
464
|
+
def load(path); end
|
465
|
+
|
466
|
+
# source://appraisal//lib/appraisal/gemfile.rb#18
|
467
|
+
def run(definitions, path, line = T.unsafe(nil)); end
|
468
|
+
end
|
469
|
+
|
470
|
+
# source://appraisal//lib/appraisal/gemspec.rb#4
|
471
|
+
class Appraisal::Gemspec
|
472
|
+
# @return [Gemspec] a new instance of Gemspec
|
473
|
+
#
|
474
|
+
# source://appraisal//lib/appraisal/gemspec.rb#7
|
475
|
+
def initialize(options = T.unsafe(nil)); end
|
476
|
+
|
477
|
+
# source://appraisal//lib/appraisal/gemspec.rb#17
|
478
|
+
def for_dup; end
|
479
|
+
|
480
|
+
# Returns the value of attribute options.
|
481
|
+
#
|
482
|
+
# source://appraisal//lib/appraisal/gemspec.rb#5
|
483
|
+
def options; end
|
484
|
+
|
485
|
+
# source://appraisal//lib/appraisal/gemspec.rb#12
|
486
|
+
def to_s; end
|
487
|
+
|
488
|
+
private
|
489
|
+
|
490
|
+
# source://appraisal//lib/appraisal/gemspec.rb#23
|
491
|
+
def exported_options; end
|
492
|
+
end
|
493
|
+
|
494
|
+
# source://appraisal//lib/appraisal/git.rb#5
|
495
|
+
class Appraisal::Git < ::Appraisal::BundlerDSL
|
496
|
+
# @return [Git] a new instance of Git
|
497
|
+
#
|
498
|
+
# source://appraisal//lib/appraisal/git.rb#6
|
499
|
+
def initialize(source, options = T.unsafe(nil)); end
|
500
|
+
|
501
|
+
# source://appraisal//lib/appraisal/git.rb#22
|
502
|
+
def for_dup; end
|
503
|
+
|
504
|
+
# source://appraisal//lib/appraisal/git.rb#12
|
505
|
+
def to_s; end
|
506
|
+
end
|
507
|
+
|
508
|
+
# source://appraisal//lib/appraisal/group.rb#5
|
509
|
+
class Appraisal::Group < ::Appraisal::BundlerDSL
|
510
|
+
# @return [Group] a new instance of Group
|
511
|
+
#
|
512
|
+
# source://appraisal//lib/appraisal/group.rb#6
|
513
|
+
def initialize(group_names); end
|
514
|
+
|
515
|
+
# source://appraisal//lib/appraisal/group.rb#16
|
516
|
+
def for_dup; end
|
517
|
+
|
518
|
+
# source://appraisal//lib/appraisal/group.rb#11
|
519
|
+
def to_s; end
|
520
|
+
|
521
|
+
private
|
522
|
+
|
523
|
+
# source://appraisal//lib/appraisal/group.rb#22
|
524
|
+
def formatted_output(output_dependencies); end
|
525
|
+
end
|
526
|
+
|
527
|
+
# source://appraisal//lib/appraisal/path.rb#5
|
528
|
+
class Appraisal::Path < ::Appraisal::BundlerDSL
|
529
|
+
# @return [Path] a new instance of Path
|
530
|
+
#
|
531
|
+
# source://appraisal//lib/appraisal/path.rb#6
|
532
|
+
def initialize(source, options = T.unsafe(nil)); end
|
533
|
+
|
534
|
+
# source://appraisal//lib/appraisal/path.rb#22
|
535
|
+
def for_dup; end
|
536
|
+
|
537
|
+
# source://appraisal//lib/appraisal/path.rb#12
|
538
|
+
def to_s; end
|
539
|
+
end
|
540
|
+
|
541
|
+
# source://appraisal//lib/appraisal/platform.rb#5
|
542
|
+
class Appraisal::Platform < ::Appraisal::BundlerDSL
|
543
|
+
# @return [Platform] a new instance of Platform
|
544
|
+
#
|
545
|
+
# source://appraisal//lib/appraisal/platform.rb#6
|
546
|
+
def initialize(platform_names); end
|
547
|
+
|
548
|
+
# source://appraisal//lib/appraisal/platform.rb#16
|
549
|
+
def for_dup; end
|
550
|
+
|
551
|
+
# source://appraisal//lib/appraisal/platform.rb#11
|
552
|
+
def to_s; end
|
553
|
+
|
554
|
+
private
|
555
|
+
|
556
|
+
# source://appraisal//lib/appraisal/platform.rb#22
|
557
|
+
def formatted_output(output_dependencies); end
|
558
|
+
end
|
559
|
+
|
560
|
+
# source://appraisal//lib/appraisal/source.rb#5
|
561
|
+
class Appraisal::Source < ::Appraisal::BundlerDSL
|
562
|
+
# @return [Source] a new instance of Source
|
563
|
+
#
|
564
|
+
# source://appraisal//lib/appraisal/source.rb#6
|
565
|
+
def initialize(source); end
|
566
|
+
|
567
|
+
# source://appraisal//lib/appraisal/source.rb#16
|
568
|
+
def for_dup; end
|
569
|
+
|
570
|
+
# source://appraisal//lib/appraisal/source.rb#11
|
571
|
+
def to_s; end
|
572
|
+
|
573
|
+
private
|
574
|
+
|
575
|
+
# source://appraisal//lib/appraisal/source.rb#22
|
576
|
+
def formatted_output(output_dependencies); end
|
577
|
+
end
|
578
|
+
|
579
|
+
# Defines tasks for installing appraisal dependencies and running other tasks
|
580
|
+
# for a given appraisal.
|
581
|
+
#
|
582
|
+
# source://appraisal//lib/appraisal/task.rb#7
|
583
|
+
class Appraisal::Task < ::Rake::TaskLib
|
584
|
+
# @return [Task] a new instance of Task
|
585
|
+
#
|
586
|
+
# source://appraisal//lib/appraisal/task.rb#8
|
587
|
+
def initialize; end
|
588
|
+
end
|
589
|
+
|
590
|
+
# Contains methods for various operations
|
591
|
+
#
|
592
|
+
# source://appraisal//lib/appraisal/utils.rb#3
|
593
|
+
module Appraisal::Utils
|
594
|
+
class << self
|
595
|
+
# source://appraisal//lib/appraisal/utils.rb#55
|
596
|
+
def bundler_version; end
|
597
|
+
|
598
|
+
# source://appraisal//lib/appraisal/utils.rb#36
|
599
|
+
def format_arguments(arguments); end
|
600
|
+
|
601
|
+
# source://appraisal//lib/appraisal/utils.rb#25
|
602
|
+
def format_hash_value(key, value); end
|
603
|
+
|
604
|
+
# source://appraisal//lib/appraisal/utils.rb#8
|
605
|
+
def format_string(object, enclosing_object = T.unsafe(nil)); end
|
606
|
+
|
607
|
+
# source://appraisal//lib/appraisal/utils.rb#42
|
608
|
+
def join_parts(parts); end
|
609
|
+
|
610
|
+
# source://appraisal//lib/appraisal/utils.rb#46
|
611
|
+
def prefix_path(path); end
|
612
|
+
|
613
|
+
# @return [Boolean]
|
614
|
+
#
|
615
|
+
# source://appraisal//lib/appraisal/utils.rb#4
|
616
|
+
def support_parallel_installation?; end
|
617
|
+
end
|
618
|
+
end
|
619
|
+
|
620
|
+
# source://appraisal//lib/appraisal/version.rb#2
|
621
|
+
Appraisal::VERSION = T.let(T.unsafe(nil), String)
|