Advertisement
Dan42

Possibly requires kwargs update with RUBY_VERSION check

Sep 11th, 2019
428
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.33 KB | None | 0 0
  1. gems/rspec-expectations-3.8.4/lib/rspec/matchers/dsl.rb
  2. def method_missing(method, *args, &block)
  3. @matcher_execution_context.__send__ method, *args, &block
  4. gems/rspec-expectations-3.8.4/lib/rspec/matchers/matcher_delegator.rb
  5. def method_missing(*args, &block)
  6. base_matcher.__send__(*args, &block)
  7. gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/log_once.rb
  8. def log_once(level, key, *msgs)
  9. self.send(level, *msgs)
  10. gems/launchy-2.4.3/lib/launchy/descendant_tracker.rb
  11. def find_child( method, *args )
  12. child.send( method, *args )
  13. gems/listen-3.1.5/lib/listen/adapter/base.rb
  14. def _log(*args, &block)
  15. Listen::Logger.send(*args, &block)
  16. gems/yard-0.9.20/lib/yard/tags/overload_tag.rb
  17. def method_missing(*args, &block)
  18. object.send(*args, &block)
  19. gems/yard-0.9.20/lib/yard/code_objects/extended_method_object.rb
  20. def method_missing(sym, *args, &block)
  21. @del.__send__(sym, *args, &block) end
  22. gems/yard-0.9.20/lib/yard/code_objects/proxy.rb
  23. def method_missing(meth, *args, &block)
  24. to_obj.__send__(meth, *args, &block)
  25. gems/yard-0.9.20/lib/yard/serializers/yardoc_serializer.rb
  26. def method_missing(meth, *args, &block)
  27. @object.send(meth, *args, &block)
  28. gems/yard-0.9.20/lib/yard/verifier.rb
  29. def method_missing(sym, *args, &block)
  30. object.send(sym, *args, &block)
  31. gems/tins-1.21.1/lib/tins/proc_prelude.rb
  32. def map_apply(my_method, *args, &my_proc)
  33. lambda { |x, y| my_proc.call(x, y.__send__(my_method, *args)) }
  34. gems/tins-1.21.1/lib/tins/ask_and_send.rb
  35. def ask_and_send(method_name, *args, &block)
  36. __send__(method_name, *args, &block)
  37. gems/tins-1.21.1/lib/tins/ask_and_send.rb
  38. def ask_and_send!(method_name, *args, &block)
  39. __send__(method_name, *args, &block)
  40. gems/tins-1.21.1/lib/tins/ask_and_send.rb
  41. def ask_and_send_or_self(method_name, *args, &block)
  42. __send__(method_name, *args, &block)
  43. gems/tins-1.21.1/lib/tins/ask_and_send.rb
  44. def ask_and_send_or_self!(method_name, *args, &block)
  45. __send__(method_name, *args, &block)
  46. gems/tins-1.21.1/lib/tins/xt/full.rb
  47. def full?(dispatch = nil, *args)
  48. obj = __send__(dispatch, *args)
  49. gems/tins-1.21.1/lib/tins/dslkit.rb
  50. def method_missing(id, *a, &b)
  51. method_missing_delegator.__send__(id, *a, &b)
  52. gems/tins-1.21.1/lib/tins/expose.rb
  53. def expose(method_name = nil, *args, &block)
  54. __send__(method_name, *args)
  55. gems/actionpack-6.0.0/lib/action_dispatch/testing/assertions/routing.rb
  56. def method_missing(selector, *args, &block)
  57. @controller.send(selector, *args, &block)
  58. gems/compass-core-1.0.3/lib/compass/configuration/inheritance.rb
  59. def method_missing(m, *args, &block)
  60. a.send(m,*args, &block)
  61. gems/compass-core-1.0.3/lib/compass/configuration/inheritance.rb
  62. def method_missing(meth, *args, &block)
  63. inherited_data.send(meth, *args, &block)
  64. gems/raindrops-0.19.0/lib/raindrops/middleware/proxy.rb
  65. def method_missing(*args, &block)
  66. @body.__send__(*args, &block)
  67. gems/cucumber-3.1.2/lib/cucumber/configuration.rb
  68. def notify(message, *args)
  69. event_bus.send(message, *args)
  70. gems/cucumber-3.1.2/lib/cucumber/runtime/support_code.rb
  71. def fire_hook(name, *args)
  72. registry.send(name, *args)
  73. gems/cucumber-3.1.2/lib/cucumber/formatter/ignore_missing_messages.rb
  74. def method_missing(message, *args)
  75. @receiver.send(message, *args) if @receiver.respond_to?(message)
  76. gems/cucumber-3.1.2/lib/cucumber/formatter/fanout.rb
  77. def method_missing(message, *args)
  78. recipient.send(message, *args) if recipient.respond_to?(message)
  79. gems/cucumber-3.1.2/lib/cucumber/formatter/interceptor.rb
  80. def method_missing(method, *args, &blk)
  81. @pipe.send(method, *args, &blk)
  82. gems/fog-digitalocean-0.4.0/lib/fog/compute/digitalocean/models/server.rb
  83. def perform_action(action, *args)
  84. response = service.send(action, id, *args)
  85. gems/aws-sdk-v1-1.67.0/lib/aws/ec2/resource_tag_collection.rb
  86. def method_missing(m, *args)
  87. self.send(:[]=, m.to_s[0...-1], *args)
  88. gems/aws-sdk-v1-1.67.0/lib/aws/record/scope.rb
  89. def method_missing scope_name, *args
  90. _merge_scope(base_class.send(scope_name, *args))
  91. gems/aws-sdk-v1-1.67.0/lib/aws/core/options/validator.rb
  92. def validate_value *args
  93. send("validate_#{args.first[:type]}", *args)
  94. gems/aws-sdk-v1-1.67.0/lib/aws/core/response.rb
  95. def method_missing *args, &block
  96. Core::Data.new(data).send(*args, &block)
  97. gems/aws-sdk-v1-1.67.0/lib/aws/core/data.rb
  98. def method_missing *args, &block
  99. return_value = @data.send(*args) do |*values|
  100. gems/mixlib-log-3.0.1/lib/mixlib/log.rb
  101. def method_missing(method_symbol, *args, &block)
  102. loggers.each { |l| l.send(method_symbol, *args, &block) }
  103. gems/simple_form-4.1.0/lib/simple_form/form_builder.rb
  104. def button(type, *args, &block)
  105. send(:"#{type}_button", *args, &block)
  106. gems/octokit-4.14.0/lib/octokit.rb
  107. def method_missing(method_name, *args, &block)
  108. return client.send(method_name, *args, &block)
  109. gems/sass-3.7.4/lib/sass/plugin.rb
  110. def method_missing(method, *args, &block)
  111. compiler.send(method, *args, &block)
  112. gems/sass-3.7.4/lib/sass/tree/visitors/check_nesting.rb
  113. def try_send(method, *args)
  114. send(method, *args)
  115. gems/sass-3.7.4/lib/sass/scss/parser.rb
  116. def sass_script(*args)
  117. result = parser.send(*args)
  118. gems/sass-3.7.4/lib/sass/util/normalized_map.rb
  119. def method_missing(method, *args, &block)
  120. @map.send(method, *args, &block)
  121. gems/sequel-5.24.0/lib/sequel/plugins/validation_class_methods.rb
  122. def method_missing(m, *args, &block)
  123. @receiver.send(:"validates_#{m}", *args, &block)
  124. gems/sequel-5.24.0/lib/sequel/extensions/query.rb
  125. def method_missing(method, *args, &block)
  126. @dataset = @dataset.send(method, *args, &block)
  127. gems/sequel-5.24.0/lib/sequel/extensions/migration.rb
  128. def method_missing(method_sym, *args, &block)
  129. @db.send(method_sym, *args, &block)
  130. gems/sequel-5.24.0/lib/sequel/model/associations.rb
  131. def add_associated_object(opts, o, *args)
  132. return if !send(opts[:_add_method], o, *args) && opts.handle_silent_modification_failure?
  133. gems/sequel-5.24.0/lib/sequel/model/associations.rb
  134. def remove_all_associated_objects(opts, *args)
  135. send(opts[:_remove_all_method], *args)
  136. gems/sequel-5.24.0/lib/sequel/model/associations.rb
  137. def remove_associated_object(opts, o, *args)
  138. return if !send(opts[:_remove_method], o, *args) && opts.handle_silent_modification_failure?
  139. gems/celluloid-essentials-0.20.5/lib/celluloid/internals/method.rb
  140. def call(*args, &block)
  141. @proxy.__send__(@name, *args, &block)
  142. gems/paperclip-6.1.0/lib/paperclip/interpolations.rb
  143. def self.interpolate pattern, *args
  144. result.gsub!(token) { send(method, *args) } if result.include?(token)
  145. gems/net-ldap-0.16.1/lib/net/ldap/dn.rb
  146. def method_missing(method, *args, &block)
  147. @dn.send(method, *args, &block)
  148. gems/cucumber-core-3.2.1/lib/cucumber/core/ast/describes_itself.rb
  149. def describe_to(visitor, *args)
  150. visitor.send(description_for_visitors, self, *args) do |child_visitor|
  151. gems/ruby-progressbar-1.10.1/lib/ruby-progressbar/base.rb
  152. def update_progress(*args)
  153. progressable.__send__(*args)
  154. gems/savon-2.12.0/lib/savon/block_interface.rb
  155. def method_missing(method, *args, &block)
  156. @target.send(method, *args, &block)
  157. gems/mini_magick-4.9.5/lib/mini_magick/image.rb
  158. def method_missing(name, *args)
  159. builder.send(name, *args)
  160. gems/selenium-webdriver-3.142.4/lib/selenium/webdriver/support/event_firing_bridge.rb
  161. def dispatch(name, *args)
  162. @listener.__send__("before_#{name}", *args)
  163. gems/selenium-webdriver-3.142.4/lib/selenium/webdriver/support/event_firing_bridge.rb
  164. def method_missing(meth, *args, &blk) # rubocop:disable Style/MethodMissingSuper, Style/MissingRespondToMissing
  165. @delegate.__send__(meth, *args, &blk)
  166. gems/net-sftp-2.1.2/lib/net/sftp/operations/download.rb
  167. def update_progress(hook, *args)
  168. progress.send(on, self, *args)
  169. gems/net-sftp-2.1.2/lib/net/sftp/operations/upload.rb
  170. def update_progress(event, *args)
  171. progress.send(on, self, *args)
  172. gems/net-sftp-2.1.2/lib/net/sftp/session.rb
  173. def request(type, *args, &callback)
  174. request = Request.new(self, type, protocol.send(type, *args), &callback)
  175. gems/docile-1.3.2/lib/docile/fallback_context_proxy.rb
  176. def method_missing(method, *args, &block)
  177. @__receiver__.__send__(method.to_sym, *args, &block)
  178. gems/warden-1.2.8/lib/warden/errors.rb
  179. def method_missing(meth, *args, &block)
  180. errors.send(meth, *args, &block)
  181. gems/concurrent-ruby-1.1.5/lib/concurrent/collection/copy_on_notify_observer_set.rb
  182. def notify_to(observers, *args)
  183. observer.send(function, *args)
  184. gems/concurrent-ruby-1.1.5/lib/concurrent/collection/copy_on_write_observer_set.rb
  185. def notify_to(observers, *args)
  186. observer.send(function, *args)
  187. gems/concurrent-ruby-1.1.5/lib/concurrent/agent.rb
  188. def send!(*args, &action)
  189. raise Error.new unless send(*args, &action)
  190. gems/concurrent-ruby-1.1.5/lib/concurrent/async.rb
  191. def method_missing(method, *args, &block)
  192. ivar = @delegate.send(method, *args, &block)
  193. gems/rspec-mocks-3.8.1/lib/rspec/mocks/any_instance/proxy.rb
  194. def method_missing(*args, &block)
  195. return_values = @targets.map { |t| t.__send__(*args, &block) }
  196. gems/rspec-mocks-3.8.1/lib/rspec/mocks/matchers/receive.rb
  197. def setup_method_substitute(host, method, block, *args)
  198. expectation = host.__send__(method, *args, &(@block || block))
  199. gems/rspec-mocks-3.8.1/lib/rspec/mocks/verifying_double.rb
  200. def send(name, *args, &block)
  201. __send__(name, *args, &block)
  202. gems/rspec-mocks-3.8.1/lib/rspec/mocks/proxy.rb
  203. def message_received(message, *args, &block)
  204. @object.superclass.__send__(message, *args, &block)
  205. gems/nokogiri-1.10.4/lib/nokogiri/xml/builder.rb
  206. def method_missing(method, *args, &block) # :nodoc:
  207. @context.send(method, *args, &block)
  208. gems/nenv-0.3.0/lib/nenv.rb
  209. def method_missing(meth, *args)
  210. instance.send(meth, *args)
  211. gems/nenv-0.3.0/lib/nenv/autoenvironment.rb
  212. def method_missing(meth, *args)
  213. send(meth, *args)
  214. gems/rspec-rails-3.8.2/lib/rspec/rails/example/controller_example_group.rb
  215. def method_missing(method, *args, &block)
  216. controller.send(method, *args, &block)
  217. gems/rspec-rails-3.8.2/lib/rspec/rails/example/routing_example_group.rb
  218. def method_missing(m, *args, &block)
  219. routes.url_helpers.respond_to?(m) ? routes.url_helpers.send(m, *args) : super
  220. gems/rspec-rails-3.8.2/lib/rspec/rails/view_rendering.rb
  221. def method_missing(name, *args, &block)
  222. result = @resolver.send(name, *args, &block)
  223. gems/activerecord-6.0.0/lib/arel/predications.rb
  224. def grouping_any(method_id, others, *extras)
  225. nodes = others.map { |expr| send(method_id, expr, *extras) }
  226. gems/activerecord-6.0.0/lib/arel/predications.rb
  227. def grouping_all(method_id, others, *extras)
  228. nodes = others.map { |expr| send(method_id, expr, *extras) }
  229. gems/activerecord-6.0.0/lib/active_record/dynamic_matchers.rb
  230. def method_missing(name, *arguments, &block)
  231. send(name, *arguments, &block)
  232. gems/activerecord-6.0.0/lib/active_record/migration.rb
  233. def method_missing(name, *args, &block) #:nodoc:
  234. nearest_delegate.send(name, *args, &block)
  235. gems/activerecord-6.0.0/lib/active_record/migration.rb
  236. def method_missing(method, *arguments, &block)
  237. connection.send(method, *arguments, &block)
  238. gems/state_machines-0.5.0/lib/state_machines/eval_helpers.rb
  239. def evaluate_method(object, method, *args, &block)
  240. object.send(method, *args, &block)
  241. gems/state_machines-0.5.0/lib/state_machines/state.rb
  242. def call(object, method, *args, &block)
  243. object.send(method, *args, &block)
  244. gems/state_machines-0.5.0/lib/state_machines/state_context.rb
  245. def method_missing(*args, &block)
  246. machine.owner_class.send(*args, &block)
  247. gems/actionview-6.0.0/lib/action_view/test_case.rb
  248. def method_missing(selector, *args)
  249. @controller.__send__(selector, *args)
  250. gems/actionview-6.0.0/lib/action_view/helpers/atom_feed_helper.rb
  251. def method_missing(method, *arguments, &block)
  252. @xml.__send__(method, *arguments) do
  253. gems/bson-4.5.0/lib/bson/regexp.rb
  254. def method_missing(method, *arguments)
  255. compile.send(method, *arguments)
  256. gems/bundler-2.0.2/lib/bundler/lazy_specification.rb
  257. def method_missing(method, *args, &blk)
  258. @specification.send(method, *args, &blk)
  259. gems/bundler-2.0.2/lib/bundler/plugin/api.rb
  260. def method_missing(name, *args, &blk)
  261. return Bundler.send(name, *args, &blk) if Bundler.respond_to?(name)
  262. gems/bundler-2.0.2/lib/bundler/dep_proxy.rb
  263. def method_missing(*args, &blk)
  264. @dep.send(*args, &blk)
  265. gems/bundler-2.0.2/lib/bundler/remote_specification.rb
  266. def method_missing(method, *args, &blk)
  267. _remote_specification.send(method, *args, &blk)
  268. gems/rspec-support-3.8.2/lib/rspec/support/spec/stderr_splitter.rb
  269. def method_missing(name, *args, &block)
  270. @output_tracker.__send__(name, *args, &block) if @output_tracker.respond_to?(name)
  271. gems/xpath-3.2.0/lib/xpath/union.rb
  272. def method_missing(*args) # rubocop:disable Style/MethodMissingSuper, Style/MissingRespondToMissing
  273. XPath::Union.new(*arguments.map { |e| e.send(*args) })
  274. gems/mail-2.7.1/lib/mail/multibyte/chars.rb
  275. def method_missing(method, *args, &block)
  276. @wrapped_string.__send__(method, *args, &block)
  277. gems/mail-2.7.1/lib/mail/field.rb
  278. def method_missing(name, *args, &block)
  279. field.send(name, *args, &block)
  280. gems/rdoc-6.2.0/lib/rdoc/markdown.rb
  281. def external_invoke(other, rule, *args)
  282. if val = __send__(rule, *args)
  283. gems/rdoc-6.2.0/lib/rdoc/markdown.rb
  284. def apply_with_args(rule, *args)
  285. ans = __send__ rule, *args
  286. gems/rdoc-6.2.0/lib/rdoc/markdown/literals.rb
  287. def external_invoke(other, rule, *args)
  288. if val = __send__(rule, *args)
  289. gems/rdoc-6.2.0/lib/rdoc/markdown/literals.rb
  290. def apply_with_args(rule, *args)
  291. ans = __send__ rule, *args
  292. gems/hashie-3.6.0/lib/hashie/rash.rb
  293. def method_missing(*args, &block)
  294. @hash.send(*args, &block) || super
  295. gems/sass-3.4.25/lib/sass/plugin.rb
  296. def method_missing(method, *args, &block)
  297. compiler.send(method, *args, &block)
  298. gems/sass-3.4.25/lib/sass/tree/visitors/check_nesting.rb
  299. def try_send(method, *args)
  300. send(method, *args)
  301. gems/sass-3.4.25/lib/sass/scss/parser.rb
  302. def sass_script(*args)
  303. result = parser.send(*args)
  304. gems/sass-3.4.25/lib/sass/util/normalized_map.rb
  305. def method_missing(method, *args, &block)
  306. @map.send(method, *args, &block)
  307. gems/sassc-2.2.0/lib/sassc/util/normalized_map.rb
  308. def method_missing(method, *args, &block)
  309. @map.send(method, *args, &block)
  310. gems/multipart-post-2.0.0/lib/composite_io.rb
  311. def method_missing(*args)
  312. @io.send(*args)
  313. gems/fog-cloudatcost-0.4.0/lib/fog/cloudatcost/models/server.rb
  314. def perform_action(action, *args)
  315. response = service.send(action, sid, *args)
  316. gems/web-console-4.0.1/lib/web_console/testing/erb_precompiler.rb
  317. def method_missing(name, *args, &block)
  318. @view.send(name, *args, &block)
  319. gems/arel-9.0.0/lib/arel/predications.rb
  320. def grouping_any method_id, others, *extras
  321. nodes = others.map {|expr| send(method_id, expr, *extras)}
  322. gems/arel-9.0.0/lib/arel/predications.rb
  323. def grouping_all method_id, others, *extras
  324. nodes = others.map {|expr| send(method_id, expr, *extras)}
  325. gems/chef-sugar-5.0.1/lib/chef/sugar/filters.rb
  326. def method_missing(m, *args, &block)
  327. resource = @recipe.send(m, *args, &block)
  328. gems/chef-sugar-5.0.1/lib/chef/sugar/filters.rb
  329. def method_missing(m, *args, &block)
  330. new_resource = @recipe.send(m, *args, &block)
  331. gems/dalli-2.7.10/lib/dalli/server.rb
  332. def request(op, *args)
  333. send(op, *args)
  334. gems/activemodel-6.0.0/lib/active_model/attribute_methods.rb
  335. def attribute_missing(match, *args, &block)
  336. __send__(match.target, match.attr_name, *args, &block)
  337. gems/sinatra-2.0.7/lib/sinatra/base.rb
  338. def method_missing(*args, &block)
  339. to_str.send(*args, &block)
  340. gems/sinatra-2.0.7/lib/sinatra/base.rb
  341. def invoke_hook(name, *args)
  342. extensions.each { |e| e.send(name, *args) if e.respond_to?(name) }
  343. gems/liquid-4.0.3/lib/liquid/strainer.rb
  344. def invoke(method, *args)
  345. send(method, *args)
  346. gems/resque-2.0.0/lib/resque/data_store.rb
  347. def method_missing(sym,*args,&block)
  348. @redis.send(sym,*args,&block)
  349. gems/resque-2.0.0/lib/resque.rb
  350. def enqueue_to(queue, klass, *args)
  351. klass.send(hook, *args)
  352. gems/resque-2.0.0/lib/resque.rb
  353. def dequeue(klass, *args)
  354. klass.send(hook, *args)
  355. gems/actioncable-6.0.0/lib/action_cable/server/worker.rb
  356. def invoke(receiver, method, *args, connection:, &block)
  357. receiver.send method, *args, &block
  358. gems/rubocop-0.74.0/lib/rubocop/cop/variable_force/variable_table.rb
  359. def invoke_hook(hook_name, *args)
  360. @hook_receiver&.send(hook_name, *args)
  361. gems/rubocop-0.74.0/lib/rubocop/cop/force.rb
  362. def run_hook(method_name, *args)
  363. cop.send(method_name, *args)
  364. gems/logging-2.2.2/lib/logging/diagnostic_context.rb
  365. def create_with_logging_context( m, *a, &b )
  366. self.send(m, *a) { |*args|
  367. gems/logging-2.2.2/lib/logging/proxy.rb
  368. def method_missing( name, *args, &block )
  369. @object.send(name, *args, &block)
  370. gems/rack-2.0.7/lib/rack/body_proxy.rb
  371. def method_missing(method_name, *args, &block)
  372. @body.__send__(method_name, *args, &block)
  373. gems/rack-2.0.7/lib/rack/multipart/uploaded_file.rb
  374. def method_missing(method_name, *args, &block) #:nodoc:
  375. @tempfile.__send__(method_name, *args, &block)
  376. gems/pry-0.12.2/lib/pry/wrapped_module.rb
  377. def method_missing(method_name, *args, &block)
  378. wrapped.send(method_name, *args, &block)
  379. gems/pry-0.12.2/lib/pry/output.rb
  380. def method_missing(name, *args, &block)
  381. @boxed_io.__send__(name, *args, &block)
  382. gems/pry-0.12.2/lib/pry/method.rb
  383. def method_missing(method_name, *args, &block)
  384. @method.send(method_name, *args, &block)
  385. gems/pry-0.12.2/lib/pry/code.rb
  386. def method_missing(name, *args, &block)
  387. to_s.send(name, *args, &block)
  388. gems/carrierwave-2.0.1/lib/carrierwave/downloader/remote_file.rb
  389. def method_missing(*args, &block)
  390. file.send(*args, &block)
  391. gems/carrierwave-2.0.1/lib/carrierwave/uploader/callbacks.rb
  392. def with_callbacks(kind, *args)
  393. self.class._before_callbacks[kind].each { |c| send c, *args }
  394. gems/coderay-1.1.2/lib/coderay/tokens_proxy.rb
  395. def method_missing method, *args, &blk
  396. tokens.send(method, *args, &blk)
  397. gems/rspec-core-3.8.2/lib/rspec/core/output_wrapper.rb
  398. def method_missing(name, *args, &block)
  399. output.send(name, *args, &block)
  400. gems/httparty-0.17.0/lib/httparty/response.rb
  401. def method_missing(name, *args, &block)
  402. parsed_response.send(name, *args, &block)
  403. gems/factory_girl-4.9.0/lib/factory_girl/evaluator.rb
  404. def method_missing(method_name, *args, &block)
  405. @instance.send(method_name, *args, &block)
  406. gems/factory_girl-4.9.0/lib/factory_girl/decorator.rb
  407. def method_missing(name, *args, &block)
  408. @component.send(name, *args, &block)
  409. gems/factory_girl-4.9.0/lib/factory_girl/decorator.rb
  410. def send(symbol, *args, &block)
  411. __send__(symbol, *args, &block)
  412. gems/babosa-1.0.2/lib/babosa/identifier.rb
  413. def method_missing(symbol, *args, &block)
  414. @wrapped_string.__send__(symbol, *args, &block)
  415. gems/babosa-1.0.2/lib/babosa/identifier.rb
  416. def send_to_new_instance(*args)
  417. id.send(*args)
  418. gems/backports-3.15.0/lib/backports/1.8.7/kernel/instance_exec.rb
  419. def instance_exec(*arg, &block)
  420. send(:"temporary method for instance_exec", *arg)
  421. gems/backports-3.15.0/lib/backports/1.9.1/kernel/public_send.rb
  422. def public_send(method, *args, &block)
  423. send(method, *args, &block)
  424. gems/factory_bot-5.0.2/lib/factory_bot/evaluator.rb
  425. def method_missing(method_name, *args, &block) # rubocop:disable Style/MethodMissing
  426. @instance.send(method_name, *args, &block)
  427. gems/factory_bot-5.0.2/lib/factory_bot/decorator.rb
  428. def method_missing(name, *args, &block) # rubocop:disable Style/MethodMissing
  429. @component.send(name, *args, &block)
  430. gems/factory_bot-5.0.2/lib/factory_bot/decorator.rb
  431. def send(symbol, *args, &block)
  432. __send__(symbol, *args, &block)
  433. gems/redis-namespace-1.6.0/lib/redis/namespace.rb
  434. def method_missing(command, *args, &block)
  435. @redis.send(command, *args, &block)
  436. gems/redis-namespace-1.6.0/lib/redis/namespace.rb
  437. def call_with_namespace(command, *args, &block)
  438. result = @redis.send(command, *args, &block)
  439. gems/specinfra-2.81.0/lib/specinfra/command_factory.rb
  440. def get(meth, *args)
  441. command_class.send(method, *args)
  442. gems/specinfra-2.81.0/lib/specinfra/runner.rb
  443. def self.method_missing(meth, *args)
  444. processor.send(meth, *args)
  445. gems/specinfra-2.81.0/lib/specinfra/helper/set.rb
  446. def set(param, *value)
  447. Specinfra.configuration.send(param, *value)
  448. gems/faraday-0.15.4/lib/faraday.rb
  449. def method_missing(name, *args, &block)
  450. default_connection.send(name, *args, &block)
  451. gems/uber-0.1.0/lib/uber/options.rb
  452. def method!(context, *args)
  453. context.send(@value, *args)
  454. gems/redis-4.1.2/lib/redis/distributed.rb
  455. def on_each_node(command, *args)
  456. node.send(command, *args)
  457. gems/term-ansicolor-1.7.1/lib/term/ansicolor/rgb_triple.rb
  458. def method_missing(name, *args, &block)
  459. to_hsl_triple.send(name, *args, &block)
  460. gems/term-ansicolor-1.7.1/lib/term/ansicolor/hsl_triple.rb
  461. def method_missing(name, *args, &block)
  462. to_rgb_triple.send(name, *args, &block)
  463. gems/compass-1.0.3/lib/compass/sass_extensions/sprites/sprite_map.rb
  464. def method_missing(meth, *args, &block)
  465. @evaluation_context.send(meth, *args, &block)
  466. gems/kaminari-core-1.1.1/lib/kaminari/helpers/paginator.rb
  467. def method_missing(name, *args, &block)
  468. @template.respond_to?(name) ? @template.send(name, *args, &block) : super
  469. gems/multipart-post-2.1.1/lib/composite_io.rb
  470. def method_missing(*args)
  471. @io.send(*args)
  472. gems/connection_pool-2.2.2/lib/connection_pool.rb
  473. def method_missing(name, *args, &block)
  474. connection.send(name, *args, &block)
  475. gems/poltergeist-1.18.1/lib/capybara/poltergeist/node.rb
  476. def command(name, *args)
  477. browser.send(name, page_id, id, *args)
  478. gems/guard-2.15.1/lib/guard/guardfile/generator.rb
  479. def _ui(*args)
  480. UI.send(*args)
  481. gems/guard-2.15.1/lib/guard/runner.rb
  482. def _supervise(plugin, task, *args)
  483. plugin.send(task, *args)
  484. gems/celluloid-0.17.4/lib/celluloid/proxy/sync.rb
  485. def method_missing(meth, *args, &block)
  486. # return actor.__send__(*args, &block)
  487. gems/devise-4.7.1/lib/devise/omniauth/url_helpers.rb
  488. def omniauth_authorize_path(resource_or_scope, provider, *args)
  489. _devise_route_context.send("#{scope}_#{provider}_omniauth_authorize_path", *args)
  490. gems/devise-4.7.1/lib/devise/omniauth/url_helpers.rb
  491. def omniauth_authorize_url(resource_or_scope, provider, *args)
  492. _devise_route_context.send("#{scope}_#{provider}_omniauth_authorize_url", *args)
  493. gems/devise-4.7.1/lib/devise/omniauth/url_helpers.rb
  494. def omniauth_callback_path(resource_or_scope, provider, *args)
  495. _devise_route_context.send("#{scope}_#{provider}_omniauth_callback_path", *args)
  496. gems/devise-4.7.1/lib/devise/omniauth/url_helpers.rb
  497. def omniauth_callback_url(resource_or_scope, provider, *args)
  498. _devise_route_context.send("#{scope}_#{provider}_omniauth_callback_url", *args)
  499. gems/devise-4.7.1/lib/devise/models/authenticatable.rb
  500. def send_devise_notification(notification, *args)
  501. message = devise_mailer.send(notification, self, *args)
  502. gems/sass-listen-4.0.0/lib/sass-listen/adapter/base.rb
  503. def self._log(*args, &block)
  504. SassListen::Logger.send(*args, &block)
  505. gems/minitest-5.11.3/lib/minitest/pride_plugin.rb
  506. def method_missing msg, *args # :nodoc:
  507. io.send(msg, *args)
  508. gems/activesupport-6.0.0/lib/active_support/multibyte/chars.rb
  509. def method_missing(method, *args, &block)
  510. result = @wrapped_string.__send__(method, *args, &block)
  511. gems/activesupport-6.0.0/lib/active_support/current_attributes.rb
  512. def method_missing(name, *args, &block)
  513. send(name, *args, &block)
  514. gems/activesupport-6.0.0/lib/active_support/per_thread_registry.rb
  515. def method_missing(name, *args, &block)
  516. send(name, *args, &block)
  517. gems/activesupport-6.0.0/lib/active_support/option_merger.rb
  518. def method_missing(method, *arguments, &block)
  519. @context.__send__(method, *arguments, &block)
  520. gems/activesupport-6.0.0/lib/active_support/deprecation/proxy_wrappers.rb
  521. def method_missing(called, *args, &block)
  522. target.__send__(called, *args, &block)
  523. gems/activesupport-6.0.0/lib/active_support/deprecation/proxy_wrappers.rb
  524. def method_missing(called, *args, &block)
  525. target.__send__(called, *args, &block)
  526. gems/activesupport-6.0.0/lib/active_support/time_with_zone.rb
  527. def method_missing(sym, *args, &block)
  528. wrap_with_time_zone time.__send__(sym, *args, &block)
  529. gems/bunny-2.14.2/lib/bunny/concurrent/linked_continuation_queue.rb
  530. def method_missing(selector, *args, &block)
  531. @q.__send__(selector, *args, &block)
  532. gems/railties-6.0.0/lib/rails/generators/rails/app/app_generator.rb
  533. def method_missing(meth, *args, &block)
  534. @generator.send(meth, *args, &block)
  535. gems/railties-6.0.0/lib/rails/generators/app_base.rb
  536. def build(meth, *args) # :doc:
  537. builder.send(meth, *args) if builder.respond_to?(meth)
  538. gems/railties-6.0.0/lib/rails/railtie/configurable.rb
  539. def method_missing(*args, &block)
  540. instance.send(*args, &block)
  541. gems/activeresource-5.1.0/lib/active_resource/connection.rb
  542. def request(method, path, *arguments)
  543. payload[:result] = http.send(method, path, *arguments)
  544.  
  545. 179 matches in 158 files of 86 gems
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement