Module: ConvenientService::Dependencies::Queries
- Extended by:
- Queries
- Included in:
- ConvenientService::Dependencies, Queries
- Defined in:
- lib/convenient_service/dependencies/queries.rb,
lib/convenient_service/dependencies/queries/ruby.rb,
lib/convenient_service/dependencies/queries/version.rb,
lib/convenient_service/dependencies/queries/gems/paint.rb,
lib/convenient_service/dependencies/queries/gems/rspec.rb,
lib/convenient_service/dependencies/queries/gems/logger.rb,
lib/convenient_service/dependencies/queries/gems/active_model.rb,
lib/convenient_service/dependencies/queries/version/null_version.rb
Defined Under Namespace
Modules: Gems Classes: Ruby, Version
Instance Method Summary collapse
- #active_model ⇒ ConvenientService::Dependencies::Queries::Gems::ActiveModel private
- #appraisal_name ⇒ String private
- #appraisal_name_for_coverage ⇒ String private
- #logger ⇒ ConvenientService::Dependencies::Queries::Gems::Logger private
- #paint ⇒ ConvenientService::Dependencies::Queries::Gems::Paint private
- #require_alias ⇒ Boolean
- #require_amazing_print_inspect_config ⇒ Boolean
- #require_assigns_attributes_in_constructor_using_active_model_attribute_assignment_plugin ⇒ Boolean
- #require_assigns_attributes_in_constructor_using_dry_initializer_plugin ⇒ Boolean
- #require_awesome_print_inspect_config ⇒ Boolean
- #require_can_utilize_finite_loop_plugin ⇒ Boolean
- #require_development_tools(amazing_print: false, awesome_print: true) ⇒ Boolean private
-
#require_dry_examples(version: "") ⇒ Boolean
private
Loads dry config examples.
- #require_has_attributes_using_active_model_attributes_plugin ⇒ Boolean
- #require_has_j_send_result_params_validations_using_active_model_validations_plugin ⇒ Boolean
- #require_has_j_send_result_params_validations_using_dry_validation_plugin ⇒ Boolean
-
#require_rails_examples(version: "") ⇒ Boolean
private
Loads rails config examples.
-
#require_rspec_extentions ⇒ Boolean
Loads RSpec extensions like
be_success
matcher,stub_service
helper, etc. -
#require_standard_examples(version: "") ⇒ Boolean
private
Loads standard config examples.
- #require_test_tools ⇒ Boolean private
- #require_wraps_result_in_db_transaction_plugin ⇒ Boolean private
- #rspec ⇒ ConvenientService::Dependencies::Queries::RSpec private
- #ruby ⇒ ConvenientService::Dependencies::Queries::Ruby private
- #support_has_j_send_result_params_validations_using_active_model_validations_plugin? ⇒ Boolean private
- #support_logger_non_integer_levels? ⇒ Boolean private
Instance Method Details
#active_model ⇒ ConvenientService::Dependencies::Queries::Gems::ActiveModel
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
466 467 468 |
# File 'lib/convenient_service/dependencies/queries.rb', line 466 def active_model Gems::ActiveModel end |
#appraisal_name ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
511 512 513 |
# File 'lib/convenient_service/dependencies/queries.rb', line 511 def appraisal_name ::ENV["APPRAISAL_NAME"].to_s end |
#appraisal_name_for_coverage ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
523 524 525 |
# File 'lib/convenient_service/dependencies/queries.rb', line 523 def appraisal_name_for_coverage appraisal_name.empty? ? "without_appraisal" : appraisal_name end |
#logger ⇒ ConvenientService::Dependencies::Queries::Gems::Logger
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
475 476 477 |
# File 'lib/convenient_service/dependencies/queries.rb', line 475 def logger Gems::Logger end |
#paint ⇒ ConvenientService::Dependencies::Queries::Gems::Paint
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
484 485 486 |
# File 'lib/convenient_service/dependencies/queries.rb', line 484 def paint Gems::Paint end |
#require_alias ⇒ Boolean
Expected to be called from app entry points like initializers
in Rails.
58 59 60 |
# File 'lib/convenient_service/dependencies/queries.rb', line 58 def require_alias require "convenient_service/alias" end |
#require_amazing_print_inspect_config ⇒ Boolean
Expected to be called from app entry points like initializers
in Rails.
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 |
# File 'lib/convenient_service/dependencies/queries.rb', line 128 def require_amazing_print_inspect_config ## # - https://github.com/amazing-print/amazing_print # require "amazing_print" require "convenient_service/service/plugins/has_amazing_print_inspect" require "convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_amazing_print_inspect" require "convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/plugins/has_amazing_print_inspect" require "convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/plugins/has_amazing_print_inspect" require "convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/plugins/has_amazing_print_inspect" require "convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/plugins/has_amazing_print_inspect" require "convenient_service/service/plugins/can_have_steps/entities/step/plugins/has_amazing_print_inspect" require "convenient_service/service/configs/amazing_print_inspect" require "convenient_service/service/configs/amazing_print_inspect/aliases" end |
#require_assigns_attributes_in_constructor_using_active_model_attribute_assignment_plugin ⇒ Boolean
Expected to be called from app entry points like initializers
in Rails.
68 69 70 71 72 73 74 75 76 77 |
# File 'lib/convenient_service/dependencies/queries.rb', line 68 def require_assigns_attributes_in_constructor_using_active_model_attribute_assignment_plugin ## # - https://edgeguides.rubyonrails.org/active_model_basics.html # - https://api.rubyonrails.org/classes/ActiveModel.html # - https://github.com/rails/rails/tree/main/activemodel # require "active_model" require "convenient_service/common/plugins/assigns_attributes_in_constructor/using_active_model_attribute_assignment" end |
#require_assigns_attributes_in_constructor_using_dry_initializer_plugin ⇒ Boolean
Expected to be called from app entry points like initializers
in Rails.
85 86 87 88 89 90 91 92 93 |
# File 'lib/convenient_service/dependencies/queries.rb', line 85 def require_assigns_attributes_in_constructor_using_dry_initializer_plugin ## # - https://dry-rb.org/gems/dry-initializer/main # - https://github.com/dry-rb/dry-initializer # require "dry-initializer" require "convenient_service/common/plugins/assigns_attributes_in_constructor/using_dry_initializer" end |
#require_awesome_print_inspect_config ⇒ Boolean
Expected to be called from app entry points like initializers
in Rails.
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |
# File 'lib/convenient_service/dependencies/queries.rb', line 151 def require_awesome_print_inspect_config ## # - https://github.com/awesome-print/awesome_print # require "awesome_print" require "convenient_service/service/plugins/has_awesome_print_inspect" require "convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_awesome_print_inspect" require "convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/data/plugins/has_awesome_print_inspect" require "convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/message/plugins/has_awesome_print_inspect" require "convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/status/plugins/has_awesome_print_inspect" require "convenient_service/service/plugins/has_j_send_result/entities/result/plugins/has_j_send_status_and_attributes/entities/code/plugins/has_awesome_print_inspect" require "convenient_service/service/plugins/can_have_steps/entities/step/plugins/has_awesome_print_inspect" require "convenient_service/service/configs/awesome_print_inspect" require "convenient_service/service/configs/awesome_print_inspect/aliases" end |
#require_can_utilize_finite_loop_plugin ⇒ Boolean
Expected to be called from app entry points like initializers
in Rails.
101 102 103 |
# File 'lib/convenient_service/dependencies/queries.rb', line 101 def require_can_utilize_finite_loop_plugin require "convenient_service/common/plugins/can_utilize_finite_loop" end |
#require_development_tools(amazing_print: false, awesome_print: true) ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Expected to be called from irb
, pry
, spec_helper.rb
, etc.
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 |
# File 'lib/convenient_service/dependencies/queries.rb', line 231 def require_development_tools(amazing_print: false, awesome_print: true) ## # - https://github.com/awesome-print/awesome_print # require "awesome_print" if awesome_print ## # - https://github.com/amazing-print/amazing_print # require "amazing_print" if amazing_print ## # - https://github.com/gsamokovarov/break # require "break" ## # - https://github.com/deivid-rodriguez/byebug # require "byebug" if ruby.mri? ## # - https://github.com/ruby/debug # require "debug" if ruby.mri? ## # - https://ruby-doc.org/stdlib-2.7.0/libdoc/ostruct/rdoc/OpenStruct.html # - https://github.com/ruby/ostruct # require "ostruct" ## # - https://github.com/janlelis/paint # require "paint" ## # - https://github.com/rouge-ruby/rouge # require "rouge" ## # - https://ruby-doc.org/stdlib-2.7.0/libdoc/tempfile/rdoc/Tempfile.html # - https://github.com/ruby/tempfile # require "tempfile" ## # - https://gist.github.com/marian13/5dade20a431d7254db30e543167058ce # require "convenient_service/dependencies/extractions/byebug_syntax_highlighting" if ruby.mri? require "convenient_service/dependencies/extractions/b" if ruby.mri? ## # # require "convenient_service/dependencies/extractions/ce" ## # # require "convenient_service/dependencies/extractions/ds" end |
#require_dry_examples(version: "") ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Loads dry config examples.
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 |
# File 'lib/convenient_service/dependencies/queries.rb', line 422 def require_dry_examples(version: "") ## # - https://ruby-doc.org/stdlib-2.7.0/libdoc/json/rdoc/JSON.html # - https://github.com/flori/json # require "json" ## # - https://github.com/jfelchner/ruby-progressbar # require "progressbar" ## # - https://ruby-doc.org/stdlib-2.7.0/libdoc/webrick/rdoc/WEBrick.html # - https://github.com/ruby/webrick # require "webrick" require ::File.join("convenient_service", "examples", "dry", version, "gemfile") end |
#require_has_attributes_using_active_model_attributes_plugin ⇒ Boolean
Expected to be called from app entry points like initializers
in Rails.
111 112 113 114 115 116 117 118 119 120 |
# File 'lib/convenient_service/dependencies/queries.rb', line 111 def require_has_attributes_using_active_model_attributes_plugin ## # - https://edgeguides.rubyonrails.org/active_model_basics.html # - https://api.rubyonrails.org/classes/ActiveModel.html # - https://github.com/rails/rails/tree/main/activemodel # require "active_model" require "convenient_service/common/plugins/has_attributes/using_active_model_attributes" end |
#require_has_j_send_result_params_validations_using_active_model_validations_plugin ⇒ Boolean
Expected to be called from app entry points like initializers
in Rails.
176 177 178 179 180 181 182 183 184 185 |
# File 'lib/convenient_service/dependencies/queries.rb', line 176 def require_has_j_send_result_params_validations_using_active_model_validations_plugin ## # - https://edgeguides.rubyonrails.org/active_model_basics.html # - https://api.rubyonrails.org/classes/ActiveModel.html # - https://github.com/rails/rails/tree/main/activemodel # require "active_model" require "convenient_service/service/plugins/has_j_send_result_params_validations/using_active_model_validations" end |
#require_has_j_send_result_params_validations_using_dry_validation_plugin ⇒ Boolean
Expected to be called from app entry points like initializers
in Rails.
193 194 195 196 197 198 199 200 201 |
# File 'lib/convenient_service/dependencies/queries.rb', line 193 def require_has_j_send_result_params_validations_using_dry_validation_plugin ## # - https://dry-rb.org/gems/dry-validation/main/ # - https://github.com/dry-rb/dry-validation # require "dry-validation" require "convenient_service/service/plugins/has_j_send_result_params_validations/using_dry_validation" end |
#require_rails_examples(version: "") ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Loads rails config examples.
393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 |
# File 'lib/convenient_service/dependencies/queries.rb', line 393 def require_rails_examples(version: "") ## # - https://ruby-doc.org/stdlib-2.7.0/libdoc/json/rdoc/JSON.html # - https://github.com/flori/json # require "json" ## # - https://github.com/jfelchner/ruby-progressbar # require "progressbar" ## # - https://ruby-doc.org/stdlib-2.7.0/libdoc/webrick/rdoc/WEBrick.html # - https://github.com/ruby/webrick # require "webrick" require ::File.join("convenient_service", "examples", "rails", version, "gemfile") end |
#require_rspec_extentions ⇒ Boolean
Expected to be called from spec_helper.rb
.
Loads RSpec extensions like be_success
matcher, stub_service
helper, etc.
330 331 332 333 334 335 336 |
# File 'lib/convenient_service/dependencies/queries.rb', line 330 def require_rspec_extentions require "rspec/expectations" require "rspec/matchers" require "rspec/mocks" require "convenient_service/rspec" end |
#require_standard_examples(version: "") ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Loads standard config examples.
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 |
# File 'lib/convenient_service/dependencies/queries.rb', line 346 def require_standard_examples(version: "") ## # - https://ruby-doc.org/stdlib-2.7.0/libdoc/date/rdoc/Date.html # - https://ruby-doc.org/stdlib-2.7.0/libdoc/date/rdoc/DateTime.html # - https://github.com/ruby/date # require "date" ## # - https://ruby-doc.org/stdlib-2.7.0/libdoc/json/rdoc/JSON.html # - https://github.com/flori/json # require "json" ## # - https://github.com/jfelchner/ruby-progressbar # require "progressbar" ## # - https://ruby-doc.org/stdlib-2.7.0/libdoc/webrick/rdoc/WEBrick.html # - https://github.com/ruby/webrick # require "webrick" ## # - https://ruby-doc.org/stdlib-2.7.0/libdoc/uri/rdoc/URI.html # - https://github.com/ruby/uri # require "uri" require ::File.join("convenient_service", "examples", "standard", version, "cowsay") require ::File.join("convenient_service", "examples", "standard", version, "date_time") require ::File.join("convenient_service", "examples", "standard", version, "factorial") require ::File.join("convenient_service", "examples", "standard", version, "gemfile") require ::File.join("convenient_service", "examples", "standard", version, "request_params") require ::File.join("convenient_service", "examples", "standard", version, "comprehensive_suite") if version.empty? end |
#require_test_tools ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Expected to be called from spec_helper.rb
.
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 |
# File 'lib/convenient_service/dependencies/queries.rb', line 303 def require_test_tools ## # - https://github.com/faker-ruby/faker # require "faker" ## # - https://ruby-doc.org/stdlib-2.7.0/libdoc/ostruct/rdoc/OpenStruct.html # - https://github.com/ruby/ostruct # require "ostruct" ## # - https://ruby-doc.org/stdlib-2.7.0/libdoc/tempfile/rdoc/Tempfile.html # - https://github.com/ruby/tempfile # require "tempfile" end |
#require_wraps_result_in_db_transaction_plugin ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Expected to be called from app entry points like initializers
in Rails.
209 210 211 212 213 214 215 216 217 218 |
# File 'lib/convenient_service/dependencies/queries.rb', line 209 def require_wraps_result_in_db_transaction_plugin ## # - https://edgeguides.rubyonrails.org/active_record_basics.html # - https://api.rubyonrails.org/classes/ActiveRecord.html # - https://github.com/rails/rails/tree/main/activerecord # require "active_record" require "convenient_service/service/plugins/wraps_result_in_db_transaction" end |
#rspec ⇒ ConvenientService::Dependencies::Queries::RSpec
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
457 458 459 |
# File 'lib/convenient_service/dependencies/queries.rb', line 457 def rspec Gems::RSpec end |
#ruby ⇒ ConvenientService::Dependencies::Queries::Ruby
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
448 449 450 |
# File 'lib/convenient_service/dependencies/queries.rb', line 448 def ruby Ruby end |
#support_has_j_send_result_params_validations_using_active_model_validations_plugin? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
34 35 36 37 38 39 |
# File 'lib/convenient_service/dependencies/queries.rb', line 34 def support_has_j_send_result_params_validations_using_active_model_validations_plugin? return false unless active_model.loaded? return false if ruby.version >= 3.0 && active_model.version < 6.0 true end |
#support_logger_non_integer_levels? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
48 49 50 |
# File 'lib/convenient_service/dependencies/queries.rb', line 48 def support_logger_non_integer_levels? logger.version >= "1.3.0" end |