Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- gems/therubyracer-0.12.3/lib/v8/function.rb
- def call(*args)
- methodcall @context.native.Global(), *args
- gems/therubyracer-0.12.3/lib/v8/object.rb
- def method_missing(name, *args, &block)
- return super(name, *args, &block) unless self.respond_to?(name)
- gems/rake-12.3.3/lib/rake/cpu_counter.rb
- def run(command, *args)
- IO.popen [cmd, *args] do |io|
- gems/rake-12.3.3/lib/rake/promise.rb
- def stat(*args)
- @recorder.call(*args) if @recorder
- gems/rake-12.3.3/lib/rake/task_arguments.rb
- def fetch(*args, &block)
- @hash.fetch(*args, &block)
- gems/rake-12.3.3/lib/rake/file_list.rb
- def egrep(pattern, *options)
- File.open(fn, "r", *options) do |inf|
- gems/rake-12.3.3/lib/rake/file_list.rb
- def glob(pattern, *args)
- Dir.glob(pattern, *args).sort
- gems/rake-12.3.3/lib/rake/dsl_definition.rb
- def task(*args, &block) # :doc:
- Rake::Task.define_task(*args, &block)
- gems/rake-12.3.3/lib/rake/dsl_definition.rb
- def file(*args, &block) # :doc:
- Rake::FileTask.define_task(*args, &block)
- gems/rake-12.3.3/lib/rake/dsl_definition.rb
- def file_create(*args, &block)
- Rake::FileCreationTask.define_task(*args, &block)
- gems/rake-12.3.3/lib/rake/dsl_definition.rb
- def directory(*args, &block) # :doc:
- result = file_create(*args, &block)
- gems/rake-12.3.3/lib/rake/dsl_definition.rb
- def multitask(*args, &block) # :doc:
- Rake::MultiTask.define_task(*args, &block)
- gems/rake-12.3.3/lib/rake/dsl_definition.rb
- def rule(*args, &block) # :doc:
- Rake::Task.create_rule(*args, &block)
- gems/rake-12.3.3/lib/rake/task.rb
- def define_task(*args, &block)
- Rake.application.define_task(self, *args, &block)
- gems/rake-12.3.3/lib/rake/task.rb
- def create_rule(*args, &block)
- Rake.application.create_rule(*args, &block)
- gems/rake-12.3.3/lib/rake/application.rb
- def trace(*strings) # :nodoc:
- trace_on(options.trace_output, *strings)
- gems/rake-12.3.3/lib/rake/file_utils.rb
- def sh(*cmd, &block)
- res = (Hash === cmd.last) ? system(*cmd) : system(*cmd, options)
- gems/rake-12.3.3/lib/rake/file_utils.rb
- def safe_ln(*args)
- cp(*args)
- gems/rake-12.3.3/lib/rake/private_reader.rb
- def private_reader(*names)
- attr_reader(*names)
- gems/rspec-expectations-3.8.4/lib/rspec/matchers/dsl.rb
- def initialize(name, declarations, matcher_execution_context, *expected, &block_arg)
- end.class_exec(*expected, &declarations)
- gems/rspec-expectations-3.8.4/lib/rspec/matchers/dsl.rb
- def method_missing(method, *args, &block)
- @matcher_execution_context.__send__ method, *args, &block
- gems/rspec-expectations-3.8.4/lib/rspec/matchers/matcher_delegator.rb
- def method_missing(*args, &block)
- base_matcher.__send__(*args, &block)
- gems/rspec-expectations-3.8.4/lib/rspec/matchers/aliased_matcher.rb
- def matches?(*args, &block)
- @base_matcher.does_not_match?(*args, &block)
- gems/rspec-expectations-3.8.4/lib/rspec/matchers/aliased_matcher.rb
- def does_not_match?(*args, &block)
- @base_matcher.matches?(*args, &block)
- gems/rspec-expectations-3.8.4/lib/rspec/matchers/built_in/base_matcher.rb
- def match_unless_raises(*exceptions)
- rescue *exceptions => @rescued_exception
- gems/rspec-expectations-3.8.4/lib/rspec/matchers/fail_matchers.rb
- def fail_including(*snippets)
- a_string_including(*snippets)
- gems/rspec-expectations-3.8.4/lib/rspec/matchers.rb
- def self.alias_matcher(*args, &block)
- super(*args, &block)
- gems/rspec-expectations-3.8.4/lib/rspec/matchers.rb
- def be(*args)
- args.empty? ? Matchers::BuiltIn::Be.new : equal(*args)
- gems/rspec-expectations-3.8.4/lib/rspec/matchers.rb
- def cover(*values)
- BuiltIn::Cover.new(*values)
- gems/rspec-expectations-3.8.4/lib/rspec/matchers.rb
- def end_with(*expected)
- BuiltIn::EndWith.new(*expected)
- gems/rspec-expectations-3.8.4/lib/rspec/matchers.rb
- def exist(*args)
- BuiltIn::Exist.new(*args)
- gems/rspec-expectations-3.8.4/lib/rspec/matchers.rb
- def include(*expected)
- BuiltIn::Include.new(*expected)
- gems/rspec-expectations-3.8.4/lib/rspec/matchers.rb
- def respond_to(*names)
- BuiltIn::RespondTo.new(*names)
- gems/rspec-expectations-3.8.4/lib/rspec/matchers.rb
- def start_with(*expected)
- BuiltIn::StartWith.new(*expected)
- gems/rspec-expectations-3.8.4/lib/rspec/matchers.rb
- def yield_with_args(*args)
- BuiltIn::YieldWithArgs.new(*args)
- gems/rspec-expectations-3.8.4/lib/rspec/matchers.rb
- def yield_successive_args(*args)
- BuiltIn::YieldSuccessiveArgs.new(*args)
- gems/rspec-expectations-3.8.4/lib/rspec/matchers.rb
- def method_missing(method, *args, &block)
- BuiltIn::BePredicate.new(method, *args, &block)
- gems/database_cleaner-1.7.0/lib/database_cleaner/configuration.rb
- def clean_with(*args)
- connections.each { |connection| connection.clean_with(*args) }
- gems/database_cleaner-1.7.0/lib/database_cleaner/base.rb
- def clean_with(*args)
- strategy = create_strategy(*args)
- gems/celluloid-io-0.17.3/lib/celluloid/io/udp_socket.rb
- def initialize(*args)
- super(::UDPSocket.new(*args))
- gems/celluloid-io-0.17.3/lib/celluloid/io/tcp_server.rb
- def initialize(*args)
- super(::TCPServer.new(*args))
- gems/celluloid-io-0.17.3/lib/celluloid/io/tcp_socket.rb
- def self.open(*args, &_block)
- sock = new(*args)
- gems/celluloid-io-0.17.3/lib/celluloid/io/tcp_socket.rb
- def initialize(*args)
- super(create_socket(*args))
- gems/celluloid-io-0.17.3/lib/celluloid/io/socket.rb
- def self.new(*args)
- return ::Socket.new(*args)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/metric_spec.rb
- def to_json(*a)
- 'scope' => scope}.to_json(*a)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/controller_instrumentation.rb
- def perform_action_with_newrelic_trace(*args, &block) #THREAD_LOCAL_ACCESS
- # the *args method signature to ensure backwards compatibility.
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/typhoeus.rb
- def run_with_newrelic(*args)
- run_without_newrelic(*args)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/padrino.rb
- def invoke_route_with_newrelic(*args, &block)
- invoke_route_without_newrelic(*args, &block)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/sinatra.rb
- def build_with_newrelic(*args, &block)
- build_without_newrelic(*args, &block)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/sinatra.rb
- def process_route_with_newrelic(*args, &block)
- process_route_without_newrelic(*args, &block)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/sinatra.rb
- def route_eval_with_newrelic(*args, &block)
- route_eval_without_newrelic(*args, &block)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/net.rb
- def request_with_newrelic_trace(request, *args, &block)
- response = request_without_newrelic_trace( request, *args, &block )
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb
- def newrelic_ignore(*routes)
- set_newrelic_ignore(:routes, *routes)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb
- def newrelic_ignore_apdex(*routes)
- set_newrelic_ignore(:apdex, *routes)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb
- def newrelic_ignore_enduser(*routes)
- set_newrelic_ignore(:enduser, *routes)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/curb.rb
- def http_head_with_newrelic(*args, &blk)
- http_head_without_newrelic(*args, &blk)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/curb.rb
- def http_post_with_newrelic(*args, &blk)
- http_post_without_newrelic(*args, &blk)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/curb.rb
- def http_put_with_newrelic(*args, &blk)
- http_put_without_newrelic(*args, &blk)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/active_record.rb
- def log_with_newrelic_instrumentation(*args, &block) #THREAD_LOCAL_ACCESS
- return log_without_newrelic_instrumentation(*args, &block)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/rails3/action_controller.rb
- def render_with_newrelic(*args, &block)
- render_without_newrelic(*args, &block)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/rake.rb
- def invoke(*args)
- return invoke_without_newrelic(*args)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/merb/controller.rb
- def _dispatch_with_newrelic_trace(*args)
- _dispatch_without_newrelic_trace(*args)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/redis.rb
- def call(*args, &block)
- call_without_new_relic(*args, &block)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/redis.rb
- def call_pipeline(*args, &block)
- call_pipeline_without_new_relic(*args, &block)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/redis.rb
- def connect(*args, &block)
- connect_without_new_relic(*args, &block)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/acts_as_solr.rb
- def parse_query_with_newrelic(*args)
- parse_query_without_newrelic(*args)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/middleware_proxy.rb
- def new(*args, &blk)
- middleware_instance = @middleware_class.new(*args, &blk)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb
- def initialize_with_new_relic(*args)
- initialize_without_new_relic(*args)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/rack.rb
- def run_with_newrelic(app, *args)
- run_without_newrelic(wrapped_app, *args)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/rack.rb
- def use_with_newrelic(middleware_class, *args, &blk)
- use_without_newrelic(wrapped_middleware_class, *args, &blk)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/bunny.rb
- def purge *args
- purge_without_new_relic(*args)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/instrumentation/bunny.rb
- def call *args
- call_without_new_relic(*args)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/configuration/yaml_source.rb
- def log_failure(*messages)
- ::NewRelic::Agent.logger.error(*messages)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/log_once.rb
- def log_once(level, key, *msgs)
- self.send(level, *msgs)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/stats.rb
- def to_json(*_)
- }.to_json(*_)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent/event_listener.rb
- def notify(event, *args)
- handler.call(*args)
- gems/newrelic_rpm-6.6.0.358/lib/new_relic/agent.rb
- def notify(event_type, *args)
- agent.events.notify( event_type, *args )
- gems/erubis-2.7.0/lib/erubis/helpers/rails_form_helper.rb
- def pp_form_tag(url_for_options={}, options={}, *parameters_for_url, &block)
- return form_tag(url_for_options, options, *parameters_for_url, &block)
- gems/launchy-2.4.3/lib/launchy/detect/runner.rb
- def run( cmd, *args )
- $stdout.puts dry_run( cmd, *args )
- gems/launchy-2.4.3/lib/launchy/detect/runner.rb
- def all_args( cmd, *args )
- args = [ 'cmd', '/c', *shell_commands( cmd, *args ) ]
- gems/launchy-2.4.3/lib/launchy/detect/runner.rb
- def dry_run( cmd, *args )
- all_args( cmd, *args ).join(" ")
- gems/launchy-2.4.3/lib/launchy/detect/runner.rb
- def wet_run( cmd, *args )
- system( *all_args( cmd, *args ) )
- gems/launchy-2.4.3/lib/launchy/detect/runner.rb
- def wet_run( cmd, *args )
- Spoon.spawnp( *shell_commands( cmd, *args ) )
- gems/launchy-2.4.3/lib/launchy/detect/runner.rb
- def wet_run( cmd, *args )
- exec_or_raise( cmd, *args )
- gems/launchy-2.4.3/lib/launchy/detect/runner.rb
- def exec_or_raise( cmd, *args )
- exec( *shell_commands( cmd, *args ))
- gems/launchy-2.4.3/lib/launchy/application.rb
- def find_executable( bin, *paths )
- Application.find_executable( bin, *paths )
- gems/launchy-2.4.3/lib/launchy/application.rb
- def run( cmd, *args )
- runner.run( cmd, *args )
- gems/launchy-2.4.3/lib/launchy/descendant_tracker.rb
- def find_child( method, *args )
- child.send( method, *args )
- gems/listen-3.1.5/lib/listen/event/loop.rb
- def _sleep(*args)
- Kernel.sleep(*args)
- gems/listen-3.1.5/lib/listen/event/processor.rb
- def _sleep(_local_reason, *args)
- sleep_duration = config.sleep(*args)
- gems/listen-3.1.5/lib/listen/event/config.rb
- def sleep(*args)
- Kernel.sleep(*args)
- gems/listen-3.1.5/lib/listen/event/config.rb
- def call(*args)
- @block.call(*args) if @block
- gems/listen-3.1.5/lib/listen/queue_optimizer.rb
- def debug(*args, &block)
- Listen.logger.debug(*args, &block)
- gems/listen-3.1.5/lib/listen/adapter/base.rb
- def _log(*args, &block)
- self.class.send(:_log, *args, &block)
- gems/listen-3.1.5/lib/listen/adapter/base.rb
- def _log(*args, &block)
- Listen::Logger.send(*args, &block)
- gems/listen-3.1.5/lib/listen/adapter/bsd.rb
- def _find(*paths, &block)
- Find.send(:find, *paths, &block)
- gems/listen-3.1.5/lib/listen.rb
- def to(*args, &block)
- Listener.new(*args, &block).tap do |listener|
- gems/yard-0.9.20/lib/yard.rb
- def self.parse(*args)
- Parser::SourceParser.parse(*args) end
- gems/yard-0.9.20/lib/yard.rb
- def self.parse_string(*args)
- Parser::SourceParser.parse_string(*args) end
- gems/yard-0.9.20/lib/yard/rubygems/doc_manager.rb
- def run_yardoc(*args)
- YARD::CLI::Yardoc.run(*args)
- gems/yard-0.9.20/lib/yard/rubygems/backports/source_index.rb
- def from_installed_gems(*deprecated)
- from_gems_in(*deprecated) # HACK: warn
- gems/yard-0.9.20/lib/yard/rubygems/hook.rb
- def run_yardoc(*args)
- YARD::CLI::Yardoc.run(*args)
- gems/yard-0.9.20/lib/yard/tags/types_explainer.rb
- def self.explain(*types)
- explain!(*types)
- gems/yard-0.9.20/lib/yard/tags/overload_tag.rb
- def method_missing(*args, &block)
- object.send(*args, &block)
- gems/yard-0.9.20/lib/yard/logging.rb
- def initialize(pipe, *args)
- super(pipe, *args)
- gems/yard-0.9.20/lib/yard/logging.rb
- def add(*args)
- super(*args)
- gems/yard-0.9.20/lib/yard/code_objects/base.rb
- def new(namespace, name, *args, &block)
- obj = super(namespace, name, *args)
- gems/yard-0.9.20/lib/yard/code_objects/base.rb
- def add_tag(*tags)
- @docstring.add_tag(*tags)
- gems/yard-0.9.20/lib/yard/code_objects/extended_method_object.rb
- def method_missing(sym, *args, &block)
- @del.__send__(sym, *args, &block) end
- gems/yard-0.9.20/lib/yard/code_objects/proxy.rb
- def method_missing(meth, *args, &block)
- to_obj.__send__(meth, *args, &block)
- gems/yard-0.9.20/lib/yard/handlers/ruby/legacy/base.rb
- def tokval_list(tokenlist, *accepted_types)
- tokval = accepted_types == [:all] ? token.text : tokval(token, *accepted_types)
- gems/yard-0.9.20/lib/yard/serializers/yardoc_serializer.rb
- def method_missing(meth, *args, &block)
- @object.send(meth, *args, &block)
- gems/yard-0.9.20/lib/yard/verifier.rb
- def initialize(*expressions)
- add_expressions(*expressions)
- gems/yard-0.9.20/lib/yard/verifier.rb
- def method_missing(sym, *args, &block)
- object.send(sym, *args, &block)
- gems/yard-0.9.20/lib/yard/gem_index.rb
- def find_all_by_name(*args)
- Gem::Specification.find_all_by_name(*args)
- gems/yard-0.9.20/lib/yard/docstring.rb
- def parser(*args)
- default_parser.new(*args) end
- gems/yard-0.9.20/lib/yard/templates/helpers/html_helper.rb
- def htmlify_line(*args)
- "<div class='inline'>" + htmlify(*args) + "</div>"
- gems/yard-0.9.20/lib/yard/templates/helpers/base_helper.rb
- def linkify(*args)
- link_object(*args)
- gems/yard-0.9.20/lib/yard/templates/template.rb
- def new(*args)
- obj.send(:initialize, *args)
- gems/yard-0.9.20/lib/yard/templates/template.rb
- def run(*args)
- new(*args).run
- gems/yard-0.9.20/lib/yard/templates/template.rb
- def T(*path)
- Engine.template(*path)
- gems/yard-0.9.20/lib/yard/templates/template.rb
- def S(*args)
- Section.new(*args)
- gems/yard-0.9.20/lib/yard/templates/template.rb
- def T(*path) # rubocop:disable Style/MethodName
- self.class.T(*path)
- gems/yard-0.9.20/lib/yard/templates/template.rb
- def sections(*args)
- @sections = Section.new(nil, *args) unless args.empty?
- gems/yard-0.9.20/lib/yard/core_ext/hash.rb
- def create(*args)
- create_186(*args)
- gems/yard-0.9.20/lib/yard/core_ext/file.rb
- def self.open!(file, *args, &block)
- open(file, *args, &block)
- gems/yard-0.9.20/lib/yard/parser/ruby/ruby_parser.rb
- def on_rescue(exc, *args)
- visit_event AstNode.new(:rescue, [exc, *args])
- gems/yard-0.9.20/lib/yard/server/doc_server_helper.rb
- def abs_url(*path_components)
- File.join(router.request.script_name, *path_components)
- gems/yard-0.9.20/lib/yard/cli/server.rb
- def run(*args)
- optparse(*args)
- gems/yard-0.9.20/lib/yard/cli/diff.rb
- def run(*args)
- registry = optparse(*args).map do |gemfile|
- gems/yard-0.9.20/lib/yard/cli/gems.rb
- def run(*args)
- optparse(*args)
- gems/yard-0.9.20/lib/yard/cli/yardopts_command.rb
- def parse_arguments(*args)
- parse_yardopts_options(*args)
- gems/yard-0.9.20/lib/yard/cli/stats.rb
- def run(*args)
- parse_arguments(*args)
- gems/yard-0.9.20/lib/yard/cli/stats.rb
- def optparse(*args)
- parse_files(*args) unless args.empty?
- gems/yard-0.9.20/lib/yard/cli/display.rb
- def run(*args)
- return unless parse_arguments(*args)
- gems/yard-0.9.20/lib/yard/cli/command_parser.rb
- def self.run(*args)
- new.run(*args) end
- gems/yard-0.9.20/lib/yard/cli/command_parser.rb
- def run(*args)
- return commands[command_name].run(*args)
- gems/yard-0.9.20/lib/yard/cli/yardoc.rb
- def run(*args)
- return unless parse_arguments(*args)
- gems/yard-0.9.20/lib/yard/cli/yardoc.rb
- def parse_arguments(*args)
- super(*args)
- gems/yard-0.9.20/lib/yard/cli/yardoc.rb
- def optparse(*args)
- parse_files(*args) unless args.empty?
- gems/yard-0.9.20/lib/yard/cli/graph.rb
- def run(*args)
- parse_arguments(*args)
- gems/yard-0.9.20/lib/yard/cli/list.rb
- def run(*args)
- Yardoc.run('-c', '--list', *args)
- gems/yard-0.9.20/lib/yard/cli/command.rb
- def self.run(*args)
- new.run(*args) end
- gems/yard-0.9.20/lib/yard/cli/i18n.rb
- def run(*args)
- return unless parse_arguments(*args)
- gems/yard-0.9.20/lib/yard/cli/config.rb
- def run(*args)
- optparse(*args)
- gems/yard-0.9.20/lib/yard/cli/yri.rb
- def self.run(*args)
- new.run(*args) end
- gems/yard-0.9.20/lib/yard/cli/yri.rb
- def run(*args)
- optparse(*args)
- gems/activerecord-import-1.0.2/lib/activerecord-import/adapters/postgresql_adapter.rb
- def insert_many( sql, values, options = {}, *args ) # :nodoc:
- insert( sql2insert, *args )
- gems/activerecord-import-1.0.2/lib/activerecord-import/adapters/abstract_adapter.rb
- def insert_many( sql, values, _options = {}, *args ) # :nodoc:
- insert( sql2insert, *args )
- gems/activerecord-import-1.0.2/lib/activerecord-import/adapters/sqlite3_adapter.rb
- def insert_many( sql, values, _options = {}, *args ) # :nodoc:
- insert( sql2insert, *args )
- gems/activerecord-import-1.0.2/lib/activerecord-import/adapters/mysql_adapter.rb
- def insert_many( sql, values, options = {}, *args ) # :nodoc:
- insert( sql2insert, *args )
- gems/activerecord-import-1.0.2/lib/activerecord-import/import.rb
- def bulk_import(*args, &block)
- @association.bulk_import(*args, &block)
- gems/activerecord-import-1.0.2/lib/activerecord-import/import.rb
- def establish_connection_with_activerecord_import(*args)
- conn = establish_connection_without_activerecord_import(*args)
- gems/activerecord-import-1.0.2/lib/activerecord-import/import.rb
- def supports_import?(*args)
- connection.respond_to?(:supports_import?) && connection.supports_import?(*args)
- gems/activerecord-import-1.0.2/lib/activerecord-import/import.rb
- def bulk_import(*args)
- import_helper(*args)
- gems/activerecord-import-1.0.2/lib/activerecord-import/import.rb
- def bulk_import!(*args)
- bulk_import(*args, options)
- gems/tins-1.21.1/lib/tins/find.rb
- def find(*paths)
- block_given? or return enum_for(__method__, *paths)
- gems/tins-1.21.1/lib/tins/find.rb
- def find(*paths, &block) # :yield: path
- Finder.new(opts).find(*paths, &block)
- gems/tins-1.21.1/lib/tins/proc_prelude.rb
- def map_apply(my_method, *args, &my_proc)
- lambda { |x, y| my_proc.call(x, y.__send__(my_method, *args)) }
- gems/tins-1.21.1/lib/tins/ask_and_send.rb
- def ask_and_send(method_name, *args, &block)
- __send__(method_name, *args, &block)
- gems/tins-1.21.1/lib/tins/ask_and_send.rb
- def ask_and_send!(method_name, *args, &block)
- __send__(method_name, *args, &block)
- gems/tins-1.21.1/lib/tins/ask_and_send.rb
- def ask_and_send_or_self(method_name, *args, &block)
- __send__(method_name, *args, &block)
- gems/tins-1.21.1/lib/tins/ask_and_send.rb
- def ask_and_send_or_self!(method_name, *args, &block)
- __send__(method_name, *args, &block)
- gems/tins-1.21.1/lib/tins/xt/subhash.rb
- def subhash!(*patterns)
- replace subhash(*patterns)
- gems/tins-1.21.1/lib/tins/xt/full.rb
- def full?(dispatch = nil, *args)
- obj = __send__(dispatch, *args)
- gems/tins-1.21.1/lib/tins/dslkit.rb
- def class_attr_accessor(*ids)
- eigenclass_eval { attr_accessor(*ids) }
- gems/tins-1.21.1/lib/tins/dslkit.rb
- def class_attr_reader(*ids)
- eigenclass_eval { attr_reader(*ids) }
- gems/tins-1.21.1/lib/tins/dslkit.rb
- def class_attr_writer(*ids)
- eigenclass_eval { attr_writer(*ids) }
- gems/tins-1.21.1/lib/tins/dslkit.rb
- def interpret(source, *args)
- interpret_with_binding(source, binding, *args)
- gems/tins-1.21.1/lib/tins/dslkit.rb
- def interpret_with_binding(source, my_binding, *args)
- instance_exec(*args, &block)
- gems/tins-1.21.1/lib/tins/dslkit.rb
- def initialize(delegator, *a, &b)
- super(*a, &b) if defined? super
- gems/tins-1.21.1/lib/tins/dslkit.rb
- def method_missing(id, *a, &b)
- method_missing_delegator.__send__(id, *a, &b)
- gems/tins-1.21.1/lib/tins/dslkit.rb
- def parameterize_for(*args, &block)
- respond_to?(:parameterize) ? parameterize(*args, &block) : self
- gems/tins-1.21.1/lib/tins/expose.rb
- def expose(method_name = nil, *args, &block)
- __send__(method_name, *args)
- gems/actionpack-6.0.0/lib/action_controller/renderer.rb
- def render(*args)
- instance.render_to_string(*args)
- gems/actionpack-6.0.0/lib/action_controller/test_case.rb
- def fetch(key, *args, &block)
- @data.fetch(key.to_s, *args, &block)
- gems/actionpack-6.0.0/lib/action_controller/metal.rb
- def self.use(*args, &block)
- middleware_stack.use(*args, &block)
- gems/actionpack-6.0.0/lib/action_controller/metal/strong_parameters.rb
- def to_query(*args)
- to_h.to_query(*args)
- gems/actionpack-6.0.0/lib/action_controller/metal/strong_parameters.rb
- def dig(*keys)
- @parameters.dig(*keys)
- gems/actionpack-6.0.0/lib/action_controller/metal/strong_parameters.rb
- def slice(*keys)
- new_instance_with_inherited_permitted_status(@parameters.slice(*keys))
- gems/actionpack-6.0.0/lib/action_controller/metal/strong_parameters.rb
- def slice!(*keys)
- @parameters.slice!(*keys)
- gems/actionpack-6.0.0/lib/action_controller/metal/strong_parameters.rb
- def except(*keys)
- new_instance_with_inherited_permitted_status(@parameters.except(*keys))
- gems/actionpack-6.0.0/lib/action_controller/metal/strong_parameters.rb
- def extract!(*keys)
- new_instance_with_inherited_permitted_status(@parameters.extract!(*keys))
- gems/actionpack-6.0.0/lib/action_controller/metal/strong_parameters.rb
- def values_at(*keys)
- convert_value_to_parameters(@parameters.values_at(*keys))
- gems/actionpack-6.0.0/lib/abstract_controller/rendering.rb
- def render(*args, &block)
- options = _normalize_render(*args, &block)
- gems/actionpack-6.0.0/lib/abstract_controller/rendering.rb
- def render_to_string(*args, &block)
- options = _normalize_render(*args, &block)
- gems/actionpack-6.0.0/lib/abstract_controller/rendering.rb
- def _normalize_render(*args, &block) # :nodoc:
- options = _normalize_args(*args, &block)
- gems/actionpack-6.0.0/lib/abstract_controller/base.rb
- def process(action, *args)
- process_action(action_name, *args)
- gems/actionpack-6.0.0/lib/abstract_controller/base.rb
- def process_action(method_name, *args)
- send_action(method_name, *args)
- gems/actionpack-6.0.0/lib/abstract_controller/base.rb
- def _handle_action_missing(*args)
- action_missing(@_action_name, *args)
- gems/actionpack-6.0.0/lib/abstract_controller/translation.rb
- def localize(*args)
- I18n.localize(*args)
- gems/actionpack-6.0.0/lib/action_dispatch/request/session.rb
- def values_at(*args)
- ; @delegate.values_at(*args); end
- gems/actionpack-6.0.0/lib/action_dispatch/request/session.rb
- def dig(*keys)
- @delegate.dig(*keys)
- gems/actionpack-6.0.0/lib/action_dispatch/middleware/exception_wrapper.rb
- def clean_backtrace(*args)
- backtrace_cleaner.clean(backtrace, *args)
- gems/actionpack-6.0.0/lib/action_dispatch/middleware/stack.rb
- def insert_after(index, *args, &block)
- insert(index + 1, *args, &block)
- gems/actionpack-6.0.0/lib/action_dispatch/middleware/stack.rb
- def swap(target, *args, &block)
- insert(index, *args, &block)
- gems/actionpack-6.0.0/lib/action_dispatch/middleware/cookies.rb
- def fetch(name, *args, &block)
- @cookies.fetch(name.to_s, *args, &block)
- gems/actionpack-6.0.0/lib/action_dispatch/middleware/callbacks.rb
- def before(*args, &block)
- set_callback(:call, :before, *args, &block)
- gems/actionpack-6.0.0/lib/action_dispatch/middleware/callbacks.rb
- def after(*args, &block)
- set_callback(:call, :after, *args, &block)
- gems/actionpack-6.0.0/lib/action_dispatch/testing/integration.rb
- def head(path, *args)
- process(:head, path, *args)
- gems/actionpack-6.0.0/lib/action_dispatch/testing/integration.rb
- def initialize(*args, &blk)
- super(*args, &blk)
- gems/actionpack-6.0.0/lib/action_dispatch/testing/integration.rb
- def method_missing(method, *args, &block)
- integration_session.public_send(method, *args, &block).tap do
- gems/actionpack-6.0.0/lib/action_dispatch/testing/integration.rb
- def register_encoder(*args)
- RequestEncoder.register_encoder(*args)
- gems/actionpack-6.0.0/lib/action_dispatch/testing/assertions/routing.rb
- def method_missing(selector, *args, &block)
- @controller.send(selector, *args, &block)
- gems/actionpack-6.0.0/lib/action_dispatch/http/response.rb
- def each(*args, &block)
- @response.each(*args, &block)
- gems/actionpack-6.0.0/lib/action_dispatch/routing/url_for.rb
- def route_for(name, *args)
- public_send(:"#{name}_url", *args)
- gems/actionpack-6.0.0/lib/action_dispatch/routing/routes_proxy.rb
- def method_missing(method, *args)
- public_send(method, *args)
- gems/compass-core-1.0.3/lib/compass/configuration/inheritance.rb
- def inherited_accessor(*attributes)
- inherited_reader(*attributes)
- gems/compass-core-1.0.3/lib/compass/configuration/inheritance.rb
- def method_missing(m, *args, &block)
- a.send(m,*args, &block)
- gems/compass-core-1.0.3/lib/compass/configuration/inheritance.rb
- def inherited_array(*attributes)
- inherited_reader(*attributes)
- gems/compass-core-1.0.3/lib/compass/configuration/inheritance.rb
- def method_missing(meth, *args, &block)
- inherited_data.send(meth, *args, &block)
- gems/compass-core-1.0.3/lib/compass/core.rb
- def base_directory(*subdirs)
- File.expand_path(File.join(File.dirname(__FILE__), '..', "..", *subdirs))
- gems/compass-core-1.0.3/lib/compass/core.rb
- def lib_directory(*subdirs)
- File.expand_path(File.join(File.dirname(__FILE__), "..", *subdirs))
- gems/compass-core-1.0.3/lib/compass/frameworks.rb
- def register(name, *arguments)
- @registered = Framework.new(name, *arguments)
- gems/compass-core-1.0.3/lib/compass/util.rb
- def compass_warn(*args)
- Sass::Util.sass_warn(*args)
- gems/compass-core-1.0.3/lib/compass/core/sass_extensions/functions.rb
- def declare(*args)
- Sass::Script::Functions.declare(*args)
- gems/compass-core-1.0.3/lib/compass/core/sass_extensions/functions/cross_browser_support.rb
- def _#{prefix}(*args)
- prefix("#{prefix}", *args)
- gems/compass-core-1.0.3/lib/compass/core/sass_extensions/functions/font_files.rb
- def font_formats(*args)
- with_each_font_file(*args) do |path, type|
- gems/compass-core-1.0.3/lib/compass/core/sass_extensions/functions/font_files.rb
- def font_files(*args)
- with_each_font_file(*args) do |path, type|
- gems/compass-core-1.0.3/lib/compass/core/sass_extensions/functions/inline_image.rb
- def inline_font_files(*args)
- with_each_font_file(*args) do |path, type|
- gems/compass-core-1.0.3/lib/compass/core/sass_extensions/functions/gradient_support.rb
- def radial_gradient(position_or_angle, shape_and_size, *color_stops)
- RadialGradient.new(position_or_angle, shape_and_size, send(:color_stops, *color_stops))
- gems/compass-core-1.0.3/lib/compass/core/sass_extensions/functions/gradient_support.rb
- def _linear_gradient(position_or_angle, *color_stops)
- position_or_angle, color_stops = _build_linear_gradient(position_or_angle, *color_stops)
- gems/compass-core-1.0.3/lib/compass/core/sass_extensions/functions/gradient_support.rb
- def _linear_gradient_legacy(position_or_angle, *color_stops)
- position_or_angle, color_stops = _build_linear_gradient(position_or_angle, *color_stops)
- gems/compass-core-1.0.3/lib/compass/core/sass_extensions/functions/configuration.rb
- def join_file_segments(*segments)
- quoted_string(File.join(*segments.map{|s| assert_type s, :String; s.value}))
- gems/compass-core-1.0.3/lib/compass/core/sass_extensions/functions/math.rb
- def deprecated_random(*args)
- sass_random(*args)
- gems/raindrops-0.19.0/lib/raindrops/middleware/proxy.rb
- def method_missing(*args, &block)
- @body.__send__(*args, &block)
- gems/raindrops-0.19.0/lib/raindrops/aggregate/pmq.rb
- def to_s(*args)
- ; aggregate.to_s(*args); end
- gems/haml-5.1.2/lib/haml/filters.rb
- def internal_compile(*args)
- compile(*args)
- gems/haml-5.1.2/lib/haml/helpers/action_view_mods.rb
- def capture_with_haml(*args, &block)
- capture_haml(*args, &block)
- gems/haml-5.1.2/lib/haml/helpers/action_view_mods.rb
- def content_tag_with_haml(name, *args, &block)
- return content_tag_without_haml(name, *args, &block) unless is_haml?
- gems/haml-5.1.2/lib/haml/helpers/action_view_mods.rb
- def content_tag(*args, &block)
- html_tag = content_tag_with_haml(*args, &block)
- gems/haml-5.1.2/lib/haml/helpers/action_view_mods.rb
- def form_tag_with_haml(url_for_options = {}, options = {}, *parameters_for_url, &proc)
- res = form_tag_without_haml(url_for_options, options, *parameters_for_url, &proc) << "\n"
- gems/haml-5.1.2/lib/haml/helpers/action_view_xss_mods.rb
- def with_output_buffer_with_haml_xss(*args, &block)
- res = with_output_buffer_without_haml_xss(*args, &block)
- gems/haml-5.1.2/lib/haml/helpers/action_view_xss_mods.rb
- def form_tag_with_haml_xss(*args, &block)
- res = form_tag_without_haml_xss(*args, &block)
- gems/haml-5.1.2/lib/haml/helpers/action_view_xss_mods.rb
- def form_for_with_haml_xss(*args, &block)
- res = form_for_without_haml_xss(*args, &block)
- gems/haml-5.1.2/lib/haml/helpers/xss_mods.rb
- def find_and_preserve_with_haml_xss(*args, &block)
- Haml::Util.html_safe(find_and_preserve_without_haml_xss(*args, &block))
- gems/haml-5.1.2/lib/haml/helpers/xss_mods.rb
- def preserve_with_haml_xss(*args, &block)
- Haml::Util.html_safe(preserve_without_haml_xss(*args, &block))
- gems/haml-5.1.2/lib/haml/helpers/xss_mods.rb
- def list_of_with_haml_xss(*args, &block)
- Haml::Util.html_safe(list_of_without_haml_xss(*args, &block))
- gems/haml-5.1.2/lib/haml/helpers/xss_mods.rb
- def capture_haml_with_haml_xss(*args, &block)
- Haml::Util.html_safe(capture_haml_without_haml_xss(*args, &block))
- gems/haml-5.1.2/lib/haml/helpers/xss_mods.rb
- def escape_once_with_haml_xss(*args)
- Haml::Util.html_safe(escape_once_without_haml_xss(*args))
- gems/haml-5.1.2/lib/haml/exec.rb
- def puts(*args)
- Kernel.puts(*args)
- gems/haml-5.1.2/lib/haml/parser.rb
- def balance(*args)
- Haml::Util.balance(*args) or raise(SyntaxError.new(Error.message(:unbalanced_brackets)))
- gems/haml-5.1.2/lib/haml/helpers.rb
- def capture_haml(*args, &block)
- value = block.call(*args)
- gems/haml-5.1.2/lib/haml/helpers.rb
- def haml_tag_if(condition, *tag)
- haml_tag(*tag){ yield }
- gems/httpclient-2.8.3/lib/httpclient/session.rb
- def initialize(socket, *args)
- super(*args)
- gems/httpclient-2.8.3/lib/httpclient/util.rb
- def keyword_argument(args, *field)
- return h.values_at(*field)
- gems/redis-activesupport-5.2.0/lib/active_support/cache/redis_store.rb
- def initialize(*addresses)
- ::ConnectionPool.new(pool_options) { ::Redis::Store::Factory.create(*addresses, @options) }
- gems/redis-activesupport-5.2.0/lib/active_support/cache/redis_store.rb
- def fetch_multi(*names)
- results = read_multi(*names, options)
- gems/redis-activesupport-5.2.0/lib/active_support/cache/redis_store.rb
- def normalize_key(*args)
- namespaced_key(*args)
- gems/declarative-option-0.1.0/lib/declarative/options.rb
- def call(context, *args)
- Hash[ collect { |k,v| [k,v.(context, *args) ] } ]
- gems/cucumber-3.1.2/lib/cucumber/hooks.rb
- def describe_to(visitor, *args)
- visitor.after_hook(self, *args)
- gems/cucumber-3.1.2/lib/cucumber/hooks.rb
- def describe_to(visitor, *args)
- visitor.before_hook(self, *args)
- gems/cucumber-3.1.2/lib/cucumber/hooks.rb
- def describe_to(visitor, *args)
- visitor.after_step_hook(self, *args)
- gems/cucumber-3.1.2/lib/cucumber/multiline_argument/data_table.rb
- def to_json(*args)
- raw.to_json(*args)
- gems/cucumber-3.1.2/lib/cucumber/configuration.rb
- def notify(message, *args)
- event_bus.send(message, *args)
- gems/cucumber-3.1.2/lib/cucumber/runtime/support_code.rb
- def fire_hook(name, *args)
- registry.send(name, *args)
- gems/cucumber-3.1.2/lib/cucumber/runtime/user_interface.rb
- def puts(*messages)
- @visitor.puts(*messages)
- gems/cucumber-3.1.2/lib/cucumber/glue/invoke_in_world.rb
- def self.cucumber_instance_exec_in(world, check_arity, pseudo_method, *args, &block)
- world.instance_exec(*args, &block)
- gems/cucumber-3.1.2/lib/cucumber/deprecate.rb
- def self.deprecate(*args)
- Deprecate::STRATEGY.call(*args)
- gems/cucumber-3.1.2/lib/cucumber/formatter/ignore_missing_messages.rb
- def method_missing(message, *args)
- @receiver.send(message, *args) if @receiver.respond_to?(message)
- gems/cucumber-3.1.2/lib/cucumber/formatter/legacy_api/adapter.rb
- def before_test_step(*args)
- @child.before_test_step(*args)
- gems/cucumber-3.1.2/lib/cucumber/formatter/legacy_api/adapter.rb
- def after_test_case(*args)
- @child.after_test_case(*args)
- gems/cucumber-3.1.2/lib/cucumber/formatter/legacy_api/adapter.rb
- def after_test_case(*args)
- @child.after_test_case(*args)
- gems/cucumber-3.1.2/lib/cucumber/formatter/fanout.rb
- def method_missing(message, *args)
- recipient.send(message, *args) if recipient.respond_to?(message)
- gems/cucumber-3.1.2/lib/cucumber/formatter/interceptor.rb
- def method_missing(method, *args, &blk)
- @pipe.send(method, *args, &blk)
- gems/public_suffix-2.0.5/lib/public_suffix/list.rb
- def each(*args, &block)
- @rules.each(*args, &block)
- gems/oj-3.9.1/lib/oj/json.rb
- def dump(obj, *args)
- ::JSON.dump(obj, *args)
- gems/oj-3.9.1/lib/oj/json.rb
- def to_json(*a)
- as_json.to_json(*a)
- gems/fog-digitalocean-0.4.0/lib/fog/compute/digitalocean/models/server.rb
- def perform_action(action, *args)
- response = service.send(action, id, *args)
- gems/columnize-0.9.0/lib/columnize.rb
- def columnize(*args)
- return Columnize.columnize(*args) if args.length > 1
- gems/cliver-0.3.2/lib/cliver.rb
- def self.detect!(*args, &block)
- Dependency::new(*args, &block).detect!
- gems/cliver-0.3.2/lib/cliver.rb
- def self.detect(*args, &block)
- Dependency::new(*args, &block).detect
- gems/cliver-0.3.2/lib/cliver.rb
- def self.assert(*args, &block)
- Dependency::new(*args, &block).detect!
- gems/cliver-0.3.2/lib/cliver.rb
- def self.verify!(executable, *args, &block)
- Dependency::new(executable, *args, &block).detect!
- gems/cliver-0.3.2/lib/cliver.rb
- def dependency_unmet?(*args, &block)
- Cliver.assert(*args, &block)
- gems/capistrano-3.11.1/lib/capistrano/scm.rb
- def test!(*args)
- context.test(*args)
- gems/capistrano-3.11.1/lib/capistrano/scm.rb
- def fetch(*args)
- context.fetch(*args)
- gems/capistrano-3.11.1/lib/capistrano/dsl.rb
- def invoke(task_name, *args)
- task.invoke(*args)
- gems/capistrano-3.11.1/lib/capistrano/dsl.rb
- def invoke!(task_name, *args)
- task.invoke(*args)
- gems/capistrano-3.11.1/lib/capistrano/dsl.rb
- def sudo(*args)
- execute :sudo, *args
- gems/capistrano-3.11.1/lib/capistrano/dsl/task_enhancements.rb
- def before(task, prerequisite, *args, &block)
- prerequisite = Rake::Task.define_task(prerequisite, *args, &block) if block_given?
- gems/capistrano-3.11.1/lib/capistrano/dsl/task_enhancements.rb
- def after(task, post_task, *args, &block)
- Rake::Task.define_task(post_task, *args, &block) if block_given?
- gems/capistrano-3.11.1/lib/capistrano/dsl/env.rb
- def release_roles(*names)
- roles(*names)
- gems/capistrano-3.11.1/lib/capistrano/scm/git.rb
- def git(*args)
- backend.execute(*args)
- gems/capistrano-3.11.1/lib/capistrano/scm/hg.rb
- def hg(*args)
- backend.execute(*args)
- gems/capistrano-3.11.1/lib/capistrano/scm/svn.rb
- def svn(*args)
- backend.execute(*args)
- gems/capistrano-3.11.1/lib/capistrano/immutable_task.rb
- def enhance(*args, &block)
- super(*args, &block)
- gems/guard-compat-1.2.1/lib/guard/compat/plugin.rb
- def self.color(text, *colors)
- Guard::UI.send(:color, text, *colors)
- gems/nori-2.6.0/lib/nori.rb
- def find(hash, *path)
- find(value, *path) if value
- gems/aws-sdk-v1-1.67.0/lib/aws/errors.rb
- def new(*args)
- e = Base.new(*args)
- gems/aws-sdk-v1-1.67.0/lib/aws/simple_workflow/client.rb
- def build_request *args
- request = super(*args)
- gems/aws-sdk-v1-1.67.0/lib/aws/sqs/client.rb
- def build_request *args
- request = super(*args)
- gems/aws-sdk-v1-1.67.0/lib/aws/glacier/client.rb
- def build_request *args
- request = super(*args)
- gems/aws-sdk-v1-1.67.0/lib/aws/ec2/security_group.rb
- def allow_ping *sources
- authorize_ingress('icmp', -1, *sources)
- gems/aws-sdk-v1-1.67.0/lib/aws/ec2/security_group.rb
- def disallow_ping *sources
- revoke_ingress('icmp', -1, *sources)
- gems/aws-sdk-v1-1.67.0/lib/aws/ec2/resource_tag_collection.rb
- def method_missing(m, *args)
- self.send(:[]=, m.to_s[0...-1], *args)
- gems/aws-sdk-v1-1.67.0/lib/aws/ec2/resource_tag_collection.rb
- def values_at(*keys)
- return cached.values_at(*keys.map { |k| k.to_s })
- gems/aws-sdk-v1-1.67.0/lib/aws/ec2/tagged_collection.rb
- def with_tag(tag_key, *values)
- filter("tag:#{tag_key}", *values)
- gems/aws-sdk-v1-1.67.0/lib/aws/ec2/tagged_collection.rb
- def tagged *keys
- filter('tag-key', *keys)
- gems/aws-sdk-v1-1.67.0/lib/aws/ec2/tagged_collection.rb
- def tagged_values *values
- filter('tag-value', *values)
- gems/aws-sdk-v1-1.67.0/lib/aws/ec2/permission_collection.rb
- def add(*users)
- modify(:add, *users)
- gems/aws-sdk-v1-1.67.0/lib/aws/ec2/permission_collection.rb
- def remove(*users)
- modify(:remove, *users)
- gems/aws-sdk-v1-1.67.0/lib/aws/record/scope.rb
- def method_missing scope_name, *args
- _merge_scope(base_class.send(scope_name, *args))
- gems/aws-sdk-v1-1.67.0/lib/aws/record/validations.rb
- def validate *args
- validators << MethodValidator.new(self, *args)
- gems/aws-sdk-v1-1.67.0/lib/aws/record/validations.rb
- def validates_acceptance_of *args
- validators << AcceptanceValidator.new(self, *args)
- gems/aws-sdk-v1-1.67.0/lib/aws/record/validations.rb
- def validates_confirmation_of *args
- validators << ConfirmationValidator.new(self, *args)
- gems/aws-sdk-v1-1.67.0/lib/aws/record/validations.rb
- def validates_count_of *args
- validators << CountValidator.new(self, *args)
- gems/aws-sdk-v1-1.67.0/lib/aws/record/validations.rb
- def validates_each *attributes, &block
- validators << BlockValidator.new(self, *attributes, &block)
- gems/aws-sdk-v1-1.67.0/lib/aws/record/validations.rb
- def validates_exclusion_of *args
- validators << ExclusionValidator.new(self, *args)
- gems/aws-sdk-v1-1.67.0/lib/aws/record/validations.rb
- def validates_format_of *args
- validators << FormatValidator.new(self, *args)
- gems/aws-sdk-v1-1.67.0/lib/aws/record/validations.rb
- def validates_inclusion_of *attributes
- validators << InclusionValidator.new(self, *attributes)
- gems/aws-sdk-v1-1.67.0/lib/aws/record/validations.rb
- def validates_length_of *args
- validators << LengthValidator.new(self, *args)
- gems/aws-sdk-v1-1.67.0/lib/aws/record/validations.rb
- def validates_numericality_of *args
- validators << NumericalityValidator.new(self, *args)
- gems/aws-sdk-v1-1.67.0/lib/aws/record/validations.rb
- def validates_presence_of *args
- validators << PresenceValidator.new(self, *args)
- gems/aws-sdk-v1-1.67.0/lib/aws/record/hash_model/finder_methods.rb
- def find *args
- new_scope.find(*args)
- gems/aws-sdk-v1-1.67.0/lib/aws/record/validators/block.rb
- def initialize *args, &block
- super(*args)
- gems/aws-sdk-v1-1.67.0/lib/aws/record/model/finder_methods.rb
- def find *args
- new_scope.find(*args)
- gems/aws-sdk-v1-1.67.0/lib/aws/record/model/finder_methods.rb
- def where *args
- new_scope.where(*args)
- gems/aws-sdk-v1-1.67.0/lib/aws/record/model/finder_methods.rb
- def order *args
- new_scope.order(*args)
- gems/aws-sdk-v1-1.67.0/lib/aws/dynamo_db/item_collection.rb
- def in *values
- @items.with_filter(attribute, "IN", *values)
- gems/aws-sdk-v1-1.67.0/lib/aws/dynamo_db/item.rb
- def self.new_from(op, response_object, table, *args)
- table, hash_value, range_value, *args)
- gems/aws-sdk-v1-1.67.0/lib/aws/dynamo_db/attribute_collection.rb
- def values_at(*attributes)
- values_at(*attributes)
- gems/aws-sdk-v1-1.67.0/lib/aws/s3/object_collection.rb
- def create key, *args, &block
- self[key].write(*args, &block)
- gems/aws-sdk-v1-1.67.0/lib/aws/s3/client.rb
- def self.object_method(method_name, verb, *args, &block)
- bucket_method(method_name, verb, *args) do
- gems/aws-sdk-v1-1.67.0/lib/aws/s3/bucket.rb
- def cors= *rules
- self.cors.set(*rules)
- gems/aws-sdk-v1-1.67.0/lib/aws/s3/prefixed_collection.rb
- def initialize *args
- super(*args)
- gems/aws-sdk-v1-1.67.0/lib/aws/s3/cors_rule_collection.rb
- def add *rules
- self.set(self, *rules)
- gems/aws-sdk-v1-1.67.0/lib/aws/s3/s3_object.rb
- def write *args, &block
- options = compute_write_options(*args, &block)
- gems/aws-sdk-v1-1.67.0/lib/aws/s3/data_options.rb
- def compute_write_options *args, &block
- options = convert_args_to_options_hash(*args)
- gems/aws-sdk-v1-1.67.0/lib/aws/simple_db/item_collection.rb
- def create item_name, *args
- item.attributes.replace(*args)
- gems/aws-sdk-v1-1.67.0/lib/aws/simple_db/item_collection.rb
- def select *attributes, &block
- handle_query_options(*attributes) do |collection, *args|
- gems/aws-sdk-v1-1.67.0/lib/aws/simple_db/item_collection.rb
- def where conditions, *substitutions
- conditions = [replace_placeholders(conditions, *substitutions)]
- gems/aws-sdk-v1-1.67.0/lib/aws/simple_db/item_collection.rb
- def handle_query_options(*args)
- yield(collection, *args)
- gems/aws-sdk-v1-1.67.0/lib/aws/simple_db/attribute_collection.rb
- def delete *args
- delete_named_attributes(*args)
- gems/aws-sdk-v1-1.67.0/lib/aws/core/options/validator.rb
- def validate_value *args
- send("validate_#{args.first[:type]}", *args)
- gems/aws-sdk-v1-1.67.0/lib/aws/core/resource.rb
- def new_from request_type, resp_obj, *args
- resource = new(*args)
- gems/aws-sdk-v1-1.67.0/lib/aws/core/resource.rb
- def populates_from *request_types, &block
- provider = provider(*request_types)
- gems/aws-sdk-v1-1.67.0/lib/aws/core/client.rb
- def new_response(*args, &block)
- resp = Response.new(*args, &block)
- gems/aws-sdk-v1-1.67.0/lib/aws/core/client.rb
- def new(*args, &block)
- client.send(:initialize, *args, &block)
- gems/aws-sdk-v1-1.67.0/lib/aws/core/policy.rb
- def method_missing(m, *values)
- @condition_builder.conditions.add(m, @key, *values)
- gems/aws-sdk-v1-1.67.0/lib/aws/core/policy.rb
- def where(key, operator = nil, *values)
- @conditions.add(operator, key, *values)
- gems/aws-sdk-v1-1.67.0/lib/aws/core/policy.rb
- def include_actions(*actions)
- self.actions.push(*actions)
- gems/aws-sdk-v1-1.67.0/lib/aws/core/policy.rb
- def exclude_actions(*actions)
- self.excluded_actions.push(*actions)
- gems/aws-sdk-v1-1.67.0/lib/aws/core/response.rb
- def method_missing *args, &block
- Core::Data.new(data).send(*args, &block)
- gems/aws-sdk-v1-1.67.0/lib/aws/core/http/connection_pool.rb
- def request *args, &block
- super(*args, &block)
- gems/aws-sdk-v1-1.67.0/lib/aws/core/data.rb
- def method_missing *args, &block
- return_value = @data.send(*args) do |*values|
- gems/aws-sdk-v1-1.67.0/lib/aws/core/data.rb
- def inject *args, &block
- @data.inject(*args) do |obj,value|
- gems/aws-sdk-v1-1.67.0/lib/aws/core/indifferent_hash.rb
- def initialize *args
- merge!(*args)
- gems/aws-sdk-v1-1.67.0/lib/aws/core/indifferent_hash.rb
- def fetch key, *extras, &block
- super(_convert_key(key), *extras, &block)
- gems/rspec-its-1.3.0/lib/rspec/its.rb
- def its(attribute, *options, &block)
- example(nil, *options, &block)
- gems/mixlib-log-3.0.1/lib/mixlib/log.rb
- def init(*opts)
- @logger = logger_for(*opts)
- gems/mixlib-log-3.0.1/lib/mixlib/log.rb
- def method_missing(method_symbol, *args, &block)
- loggers.each { |l| l.send(method_symbol, *args, &block) }
- gems/mixlib-log-3.0.1/lib/mixlib/log.rb
- def logger_for(*opts)
- Mixlib::Log::Logger.new(*opts)
- gems/simple_form-4.1.0/lib/simple_form/form_builder.rb
- def button(type, *args, &block)
- send(:"#{type}_button", *args, &block)
- gems/simple_form-4.1.0/lib/simple_form/wrappers/root.rb
- def initialize(*args)
- super(:wrapper, *args)
- gems/simple_form-4.1.0/lib/simple_form/action_view_extensions/builder.rb
- def simple_fields_for(*args, &block)
- fields_for(*args, options, &block)
- gems/commander-fastlane-4.4.6/lib/commander/configure.rb
- def configure(*configuration_opts, &configuration_block)
- configuration_module.class_exec(*configuration_opts, &configuration_block)
- gems/commander-fastlane-4.4.6/lib/commander/delegates.rb
- def defined_commands(*args, &block)
- ::Commander::Runner.instance.commands(*args, &block)
- gems/commander-fastlane-4.4.6/lib/commander/command.rb
- def option(*args, &block)
- switches, description = Runner.separate_switches_from_description(*args)
- gems/commander-fastlane-4.4.6/lib/commander/command.rb
- def run(*args)
- call parse_options_and_call_procs(*args)
- gems/commander-fastlane-4.4.6/lib/commander/user_interaction.rb
- def choose(message = nil, *choices, &block)
- super(*choices, &block)
- gems/commander-fastlane-4.4.6/lib/commander/user_interaction.rb
- def color(*args)
- say $terminal.color(*args)
- gems/commander-fastlane-4.4.6/lib/commander/runner.rb
- def global_option(*args, &block)
- switches, description = Runner.separate_switches_from_description(*args)
- gems/commander-fastlane-4.4.6/lib/commander/runner.rb
- def say(*args) #:nodoc:
- $terminal.say(*args)
- gems/octokit-4.14.0/lib/octokit.rb
- def method_missing(method_name, *args, &block)
- return client.send(method_name, *args, &block)
- gems/fog-brightbox-1.0.0/lib/fog/brightbox/compute.rb
- def request(*args)
- authenticated_request(*args)
- gems/rubygems-mirror-1.3.0/lib/rubygems/mirror.rb
- def from(*args)
- File.join(@from, *args)
- gems/rubygems-mirror-1.3.0/lib/rubygems/mirror.rb
- def to(*args)
- File.join(@to, *args)
- gems/sass-3.7.4/lib/sass/exec/base.rb
- def puts(*args)
- Kernel.puts(*args)
- gems/sass-3.7.4/lib/sass/plugin.rb
- def method_missing(method, *args, &block)
- compiler.send(method, *args, &block)
- gems/sass-3.7.4/lib/sass/tree/visitors/check_nesting.rb
- def try_send(method, *args)
- send(method, *args)
- gems/sass-3.7.4/lib/sass/tree/node.rb
- def balance(*args)
- res = Sass::Shared.balance(*args)
- gems/sass-3.7.4/lib/sass/plugin/rails.rb
- def process(*args)
- sass_old_process(*args)
- gems/sass-3.7.4/lib/sass/plugin/compiler.rb
- def create_listener(*args, &block)
- SassListen.to(*args, &block)
- gems/sass-3.7.4/lib/sass/scss/parser.rb
- def sass_script(*args)
- result = parser.send(*args)
- gems/sass-3.7.4/lib/sass/util/normalized_map.rb
- def method_missing(method, *args, &block)
- @map.send(method, *args, &block)
- gems/sass-3.7.4/lib/sass/script/parser.rb
- def self.parse(*args)
- new(*args).parse
- gems/sass-3.7.4/lib/sass/script/parser.rb
- def assert_toks(*names)
- t = try_toks(*names)
- gems/sass-3.7.4/lib/sass/script/parser.rb
- def try_toks(*names)
- peek_toks(*names) && @lexer.next
- gems/ruby-prof-1.0.0/lib/ruby-prof/profile.rb
- def exclude_singleton_methods!(mod, *method_or_methods)
- exclude_methods!(mod.singleton_class, *method_or_methods)
- gems/ruby-prof-1.0.0/lib/ruby-prof/exclude_common_methods.rb
- def self.exclude_enumerable(profile, mod, *method_or_methods)
- exclude_methods(profile, mod, [:each, *method_or_methods])
- gems/sequel-5.24.0/lib/sequel/sql.rb
- def case(*args)
- SQL::CaseExpression.new(*args)
- gems/sequel-5.24.0/lib/sequel/sql.rb
- def function(name, *args)
- SQL::Function.new(name, *args)
- gems/sequel-5.24.0/lib/sequel/sql.rb
- def like(*args)
- SQL::StringExpression.like(*args)
- gems/sequel-5.24.0/lib/sequel/sql.rb
- def like(*ces)
- StringExpression.like(self, *ces)
- gems/sequel-5.24.0/lib/sequel/sql.rb
- def function(*args)
- Function.new(self, *args)
- gems/sequel-5.24.0/lib/sequel/sql.rb
- def initialize(on, *args)
- super(*args)
- gems/sequel-5.24.0/lib/sequel/sql.rb
- def initialize(cols, *args)
- super(*args)
- gems/sequel-5.24.0/lib/sequel/sql.rb
- def function(*args)
- Function.new(self, *args)
- gems/sequel-5.24.0/lib/sequel/sql.rb
- def self.like(l, *ces)
- ces.length == 1 ? ces[0] : BooleanExpression.new(:OR, *ces)
- gems/sequel-5.24.0/lib/sequel/sql.rb
- def method_missing(m, *args)
- Function.new(m, *args)
- gems/sequel-5.24.0/lib/sequel/dataset/sql.rb
- def split_qualifiers(table_name, *args)
- sch, table = schema_and_table(table_name, *args)
- gems/sequel-5.24.0/lib/sequel/dataset/placeholder_literalizer.rb
- def all(*args, &block)
- @dataset.with_sql_all(sql(*args), &block)
- gems/sequel-5.24.0/lib/sequel/dataset/placeholder_literalizer.rb
- def each(*args, &block)
- @dataset.with_sql_each(sql(*args), &block)
- gems/sequel-5.24.0/lib/sequel/dataset/placeholder_literalizer.rb
- def first(*args)
- @dataset.with_sql_first(sql(*args))
- gems/sequel-5.24.0/lib/sequel/dataset/placeholder_literalizer.rb
- def get(*args)
- @dataset.with_sql_single_value(sql(*args))
- gems/sequel-5.24.0/lib/sequel/dataset/query.rb
- def filter(*cond, &block)
- where(*cond, &block)
- gems/sequel-5.24.0/lib/sequel/dataset/query.rb
- def group_by(*columns, &block)
- group(*columns, &block)
- gems/sequel-5.24.0/lib/sequel/dataset/query.rb
- def group_and_count(*columns, &block)
- select_group(*columns, &block).select_append(COUNT_OF_ALL_AS_COUNT)
- gems/sequel-5.24.0/lib/sequel/dataset/query.rb
- def group_append(*columns, &block)
- group(*columns, &block)
- gems/sequel-5.24.0/lib/sequel/dataset/query.rb
- def join(*args, &block)
- inner_join(*args, &block)
- gems/sequel-5.24.0/lib/sequel/dataset/query.rb
- def order_append(*columns, &block)
- order(*columns, &block)
- gems/sequel-5.24.0/lib/sequel/dataset/query.rb
- def order_by(*columns, &block)
- order(*columns, &block)
- gems/sequel-5.24.0/lib/sequel/dataset/query.rb
- def order_more(*columns, &block)
- order_append(*columns, &block)
- gems/sequel-5.24.0/lib/sequel/dataset/query.rb
- def order_prepend(*columns, &block)
- ds = order(*columns, &block)
- gems/sequel-5.24.0/lib/sequel/dataset/query.rb
- def reverse_order(*order, &block)
- reverse(*order, &block)
- gems/sequel-5.24.0/lib/sequel/dataset/query.rb
- def select_all(*tables)
- select(*tables.map{|t| i, a = split_alias(t); a || i}.map!{|t| SQL::ColumnAll.new(t)}.freeze)
- gems/sequel-5.24.0/lib/sequel/dataset/query.rb
- def select_append(*columns, &block)
- return select_all(*(Array(@opts[:from]) + Array(@opts[:join]))).select_append(*columns, &block)
- gems/sequel-5.24.0/lib/sequel/dataset/query.rb
- def select_group(*columns, &block)
- select(*columns).group(*columns.map{|c| unaliased_identifier(c)})
- gems/sequel-5.24.0/lib/sequel/dataset/query.rb
- def select_more(*columns, &block)
- select_append(*columns, &block)
- gems/sequel-5.24.0/lib/sequel/dataset/query.rb
- def with_extend(*mods, &block)
- c.extend(*mods) unless mods.empty?
- gems/sequel-5.24.0/lib/sequel/dataset/query.rb
- def with_extend(*mods, &block) # :nodoc:
- c.extend(*mods) unless mods.empty?
- gems/sequel-5.24.0/lib/sequel/dataset/query.rb
- def with_sql(sql, *args)
- sql = public_send(sql, *args)
- gems/sequel-5.24.0/lib/sequel/dataset/actions.rb
- def first!(*args, &block)
- first(*args, &block) || raise(Sequel::NoMatchingRow.new(self))
- gems/sequel-5.24.0/lib/sequel/dataset/actions.rb
- def insert(*values, &block)
- sql = insert_sql(*values)
- gems/sequel-5.24.0/lib/sequel/dataset/actions.rb
- def last(*args, &block)
- reverse.first(*args, &block)
- gems/sequel-5.24.0/lib/sequel/dataset/actions.rb
- def to_hash(*a)
- as_hash(*a)
- gems/sequel-5.24.0/lib/sequel/plugins/inverted_subsets.rb
- def where(name, *args, &block)
- exclude(inverted_subset_name(name), *args, &block)
- gems/sequel-5.24.0/lib/sequel/plugins/lazy_attributes.rb
- def self.configure(model, *attrs)
- model.lazy_attributes(*attrs) unless attrs.empty?
- gems/sequel-5.24.0/lib/sequel/plugins/serialization.rb
- def self.configure(model, format=nil, *columns)
- model.serialize_attributes(format, *columns) unless columns.empty?
- gems/sequel-5.24.0/lib/sequel/plugins/serialization.rb
- def serialize_attributes(format, *columns)
- define_serialized_attribute_accessor(serializer, deserializer, *columns)
- gems/sequel-5.24.0/lib/sequel/plugins/def_dataset_method.rb
- def subset(*args, &block)
- dataset_module{subset(*args, &block)}
- gems/sequel-5.24.0/lib/sequel/plugins/validation_helpers.rb
- def validation_error_message(message, *args)
- message.is_a?(Proc) ? message.call(*args) : message
- gems/sequel-5.24.0/lib/sequel/plugins/association_proxies.rb
- def method_missing(meth, *args, &block)
- v.public_send(meth, *args, &block)
- gems/sequel-5.24.0/lib/sequel/plugins/static_cache.rb
- def first(*args)
- @all.first(*args)
- gems/sequel-5.24.0/lib/sequel/plugins/static_cache.rb
- def to_hash(*a)
- as_hash(*a)
- gems/sequel-5.24.0/lib/sequel/plugins/string_stripper.rb
- def skip_string_stripping(*columns)
- skip_input_transformer(:string_stripper, *columns)
- gems/sequel-5.24.0/lib/sequel/plugins/typecast_on_load.rb
- def self.configure(model, *columns)
- add_typecast_on_load_columns(*columns)
- gems/sequel-5.24.0/lib/sequel/plugins/validation_class_methods.rb
- def method_missing(m, *args, &block)
- @receiver.send(:"validates_#{m}", *args, &block)
- gems/sequel-5.24.0/lib/sequel/plugins/validation_class_methods.rb
- def validates_acceptance_of(*atts)
- validates_each(*atts) do |o, a, v|
- gems/sequel-5.24.0/lib/sequel/plugins/validation_class_methods.rb
- def validates_confirmation_of(*atts)
- validates_each(*atts) do |o, a, v|
- gems/sequel-5.24.0/lib/sequel/plugins/validation_class_methods.rb
- def validates_format_of(*atts)
- validates_each(*atts) do |o, a, v|
- gems/sequel-5.24.0/lib/sequel/plugins/validation_class_methods.rb
- def validates_length_of(*atts)
- validates_each(*atts) do |o, a, v|
- gems/sequel-5.24.0/lib/sequel/plugins/validation_class_methods.rb
- def validates_numericality_of(*atts)
- validates_each(*atts) do |o, a, v|
- gems/sequel-5.24.0/lib/sequel/plugins/validation_class_methods.rb
- def validates_presence_of(*atts)
- validates_each(*atts) do |o, a, v|
- gems/sequel-5.24.0/lib/sequel/plugins/validation_class_methods.rb
- def validates_inclusion_of(*atts)
- validates_each(*atts) do |o, a, v|
- gems/sequel-5.24.0/lib/sequel/plugins/validation_class_methods.rb
- def validates_schema_type(*atts)
- validates_each(*atts) do |o, a, v|
- gems/sequel-5.24.0/lib/sequel/plugins/validation_class_methods.rb
- def validates_uniqueness_of(*atts)
- validates_each(*atts) do |o, a, v|
- gems/sequel-5.24.0/lib/sequel/plugins/delay_add_association.rb
- def add_associated_object(opts, o, *args)
- after_create_hook{super(opts, o, *args)}
- gems/sequel-5.24.0/lib/sequel/plugins/json_serializer.rb
- def to_json(*a)
- Sequel.object_to_json(h, *a)
- gems/sequel-5.24.0/lib/sequel/plugins/json_serializer.rb
- def to_json(*a)
- Sequel.object_to_json(res, *a)
- gems/sequel-5.24.0/lib/sequel/core.rb
- def self.connect(*args, &block)
- Database.connect(*args, &block)
- gems/sequel-5.24.0/lib/sequel/core.rb
- def self.object_to_json(obj, *args, &block)
- obj.to_json(*args, &block)
- gems/sequel-5.24.0/lib/sequel/extensions/mssql_emulate_lateral_with_apply.rb
- def from(*source, &block)
- return super(*source, &nil) if !lateral || lateral.empty?
- gems/sequel-5.24.0/lib/sequel/extensions/constraint_validations.rb
- def constraint(*args)
- add_constraint(*args)
- gems/sequel-5.24.0/lib/sequel/extensions/constraint_validations.rb
- def unique(*args)
- add_unique_constraint(*args)
- gems/sequel-5.24.0/lib/sequel/extensions/query.rb
- def method_missing(method, *args, &block)
- @dataset = @dataset.send(method, *args, &block)
- gems/sequel-5.24.0/lib/sequel/extensions/core_extensions.rb
- def case(*args)
- ::Sequel::SQL::CaseExpression.new(self, *args)
- gems/sequel-5.24.0/lib/sequel/extensions/core_extensions.rb
- def case(*args)
- ::Sequel::SQL::CaseExpression.new(to_a, *args)
- gems/sequel-5.24.0/lib/sequel/extensions/core_extensions.rb
- def sql_function(*args)
- Sequel::SQL::Function.new(self, *args)
- gems/sequel-5.24.0/lib/sequel/extensions/pg_hstore.rb
- def fetch(key, *args, &block)
- super(key.to_s, *args, &block)
- gems/sequel-5.24.0/lib/sequel/extensions/dataset_source_alias.rb
- def from(*source, &block)
- super(*source, &nil)
- gems/sequel-5.24.0/lib/sequel/extensions/virtual_row_method_block.rb
- def method_missing(m, *args, &block)
- Function.new(m, *args).*
- gems/sequel-5.24.0/lib/sequel/extensions/sequel_4_dataset_methods.rb
- def and(*cond, &block)
- where(*cond, &block)
- gems/sequel-5.24.0/lib/sequel/extensions/sequel_4_dataset_methods.rb
- def exclude_where(*cond, &block)
- exclude(*cond, &block)
- gems/sequel-5.24.0/lib/sequel/extensions/pg_hstore_ops.rb
- def function(name, *args)
- SQL::Function.new(name, self, *args)
- gems/sequel-5.24.0/lib/sequel/extensions/s.rb
- def S(*a, &block)
- Sequel.expr(*a, &block)
- gems/sequel-5.24.0/lib/sequel/extensions/string_agg.rb
- def string_agg(*a)
- StringAgg.new(*a)
- gems/sequel-5.24.0/lib/sequel/extensions/pg_json_ops.rb
- def extract(*a)
- self.class.new(function(:extract_path, *a))
- gems/sequel-5.24.0/lib/sequel/extensions/pg_json_ops.rb
- def extract_text(*a)
- Sequel::SQL::StringExpression.new(:NOOP, function(:extract_path_text, *a))
- gems/sequel-5.24.0/lib/sequel/extensions/pg_json_ops.rb
- def function(name, *args)
- SQL::Function.new(function_name(name), self, *args)
- gems/sequel-5.24.0/lib/sequel/extensions/core_refinements.rb
- def case(*args)
- ::Sequel::SQL::CaseExpression.new(self, *args)
- gems/sequel-5.24.0/lib/sequel/extensions/core_refinements.rb
- def case(*args)
- ::Sequel::SQL::CaseExpression.new(to_a, *args)
- gems/sequel-5.24.0/lib/sequel/extensions/core_refinements.rb
- def sql_function(*args)
- Sequel::SQL::Function.new(self, *args)
- gems/sequel-5.24.0/lib/sequel/extensions/pg_array_ops.rb
- def unnest(*args)
- function(:unnest, *args.map{|a| wrap_array(a)})
- gems/sequel-5.24.0/lib/sequel/extensions/pg_array_ops.rb
- def function(name, *args)
- SQL::Function.new(name, self, *args)
- gems/sequel-5.24.0/lib/sequel/extensions/migration.rb
- def method_missing(method_sym, *args, &block)
- @db.send(method_sym, *args, &block)
- gems/sequel-5.24.0/lib/sequel/extensions/migration.rb
- def add_index(*args)
- @actions << [:drop_index, *args]
- gems/sequel-5.24.0/lib/sequel/extensions/migration.rb
- def create_join_table(*args)
- @actions << [:drop_join_table, *args]
- gems/sequel-5.24.0/lib/sequel/extensions/migration.rb
- def add_foreign_key(key, table, *args)
- @actions << [:drop_foreign_key, key, *args]
- gems/sequel-5.24.0/lib/sequel/extensions/migration.rb
- def add_index(*args)
- @actions << [:drop_index, *args]
- gems/sequel-5.24.0/lib/sequel/extensions/migration.rb
- def self.check_current(*args)
- raise(NotCurrentError, 'migrator is not current') unless is_current?(*args)
- gems/sequel-5.24.0/lib/sequel/adapters/ibmdb.rb
- def execute_prepared(ps_name, *values)
- res = stmt.execute(*values)
- gems/sequel-5.24.0/lib/sequel/adapters/jdbc.rb
- def metadata(*args, &block)
- result = c.getMetaData.public_send(*args)
- gems/sequel-5.24.0/lib/sequel/adapters/ado/mssql.rb
- def insert(*values)
- with_sql("SET NOCOUNT ON; #{insert_sql(*values)}; SELECT CAST(SCOPE_IDENTITY() AS INTEGER)").single_value
- gems/sequel-5.24.0/lib/sequel/adapters/shared/mysql.rb
- def distinct(*args)
- args.empty? ? super : group(*args)
- gems/sequel-5.24.0/lib/sequel/adapters/shared/mssql.rb
- def insert_select(*values)
- with_sql_first(insert_select_sql(*values)) || false
- gems/sequel-5.24.0/lib/sequel/adapters/shared/mssql.rb
- def insert_select_sql(*values)
- ds.insert_sql(*values)
- gems/sequel-5.24.0/lib/sequel/adapters/shared/postgres.rb
- def insert(*values)
- returning(insert_pk).insert(*values){|r| return r.values.first}
- gems/sequel-5.24.0/lib/sequel/adapters/shared/postgres.rb
- def insert_select(*values)
- server?(:default).with_sql_first(insert_select_sql(*values)) || false
- gems/sequel-5.24.0/lib/sequel/adapters/shared/postgres.rb
- def insert_select_sql(*values)
- ds.insert_sql(*values)
- gems/sequel-5.24.0/lib/sequel/adapters/shared/postgres.rb
- def to_prepared_statement(type, *a)
- returning(insert_pk).send(:to_prepared_statement, :insert_pk, *a)
- gems/sequel-5.24.0/lib/sequel/adapters/shared/sqlite.rb
- def select(*cols)
- super(*cols.map{|c| alias_qualified_column(c)})
- gems/sequel-5.24.0/lib/sequel/adapters/shared/oracle.rb
- def create_trigger(*args)
- self << create_trigger_sql(*args)
- gems/sequel-5.24.0/lib/sequel/adapters/utils/stored_procedures.rb
- def call_sproc(type, name, *args)
- prepare_sproc(type, name).call(*args)
- gems/sequel-5.24.0/lib/sequel/adapters/utils/replace.rb
- def replace(*values)
- execute_insert(replace_sql(*values))
- gems/sequel-5.24.0/lib/sequel/adapters/utils/replace.rb
- def replace_sql(*values)
- clone(:replace=>true).insert_sql(*values)
- gems/sequel-5.24.0/lib/sequel/adapters/utils/replace.rb
- def multi_replace(*values)
- clone(:replace=>true).multi_insert(*values)
- gems/sequel-5.24.0/lib/sequel/database/schema_methods.rb
- def add_column(table, *args)
- alter_table(table) {add_column(*args)}
- gems/sequel-5.24.0/lib/sequel/database/schema_methods.rb
- def drop_column(table, *args)
- alter_table(table) {drop_column(*args)}
- gems/sequel-5.24.0/lib/sequel/database/schema_methods.rb
- def rename_column(table, *args)
- alter_table(table) {rename_column(*args)}
- gems/sequel-5.24.0/lib/sequel/database/schema_methods.rb
- def set_column_default(table, *args)
- alter_table(table) {set_column_default(*args)}
- gems/sequel-5.24.0/lib/sequel/database/schema_methods.rb
- def set_column_type(table, *args)
- alter_table(table) {set_column_type(*args)}
- gems/sequel-5.24.0/lib/sequel/database/schema_methods.rb
- def filter_expr(*args, &block)
- args = [Sequel.lit(*args)]
- gems/sequel-5.24.0/lib/sequel/database/schema_generator.rb
- def check(*args, &block)
- constraint(nil, *args, &block)
- gems/sequel-5.24.0/lib/sequel/database/schema_generator.rb
- def primary_key(name, *args)
- return composite_primary_key(name, *args) if name.is_a?(Array)
- gems/sequel-5.24.0/lib/sequel/database/query.rb
- def get(*args, &block)
- @default_dataset.get(*args, &block)
- gems/sequel-5.24.0/lib/sequel/database/misc.rb
- def self.extension(*extensions)
- after_initialize{|db| db.extension(*extensions)}
- gems/sequel-5.24.0/lib/sequel/database/misc.rb
- def extension(*exts)
- Sequel.extension(*exts)
- gems/sequel-5.24.0/lib/sequel/database/dataset.rb
- def fetch(sql, *args, &block)
- ds = @default_dataset.with_sql(sql, *args)
- gems/sequel-5.24.0/lib/sequel/database/dataset.rb
- def from(*args, &block)
- @default_dataset.from(*args, &block)
- gems/sequel-5.24.0/lib/sequel/database/dataset.rb
- def select(*args, &block)
- @default_dataset.select(*args, &block)
- gems/sequel-5.24.0/lib/sequel/model/associations.rb
- def add_associated_object(opts, o, *args)
- ensure_associated_primary_key(opts, o, *args)
- gems/sequel-5.24.0/lib/sequel/model/associations.rb
- def remove_all_associated_objects(opts, *args)
- send(opts[:_remove_all_method], *args)
- gems/sequel-5.24.0/lib/sequel/model/associations.rb
- def remove_associated_object(opts, o, *args)
- o = remove_check_existing_object_from_pk(opts, o, *args)
- gems/sequel-5.24.0/lib/sequel/model/associations.rb
- def association_join(*associations)
- association_inner_join(*associations)
- gems/sequel-5.24.0/lib/sequel/model/associations.rb
- def eager_graph_association(ds, model, ta, requirements, r, *associations)
- ds = ds.eager_graph_associations(ds, r.associated_class, assoc_table_alias, requirements + [assoc_table_alias], *associations) unless associations.empty?
- gems/sequel-5.24.0/lib/sequel/model/dataset_module.rb
- def subset(name, *args, &block)
- where(name, *args, &block)
- gems/sequel-5.24.0/lib/sequel/model/base.rb
- def find(*args, &block)
- first(*args, &block)
- gems/sequel-5.24.0/lib/sequel/model/base.rb
- def plugin(plugin, *args, &block)
- m.apply(self, *args, &block) if m.respond_to?(:apply)
- gems/sequel-5.24.0/lib/sequel/model/base.rb
- def last(*a, &block)
- ds.last(*a, &block)
- gems/sequel-5.24.0/lib/sequel/model/base.rb
- def paged_each(*a, &block)
- ds.paged_each(*a, &block)
- gems/sequel-5.24.0/lib/sequel/model/base.rb
- def to_hash(*a)
- as_hash(*a)
- gems/celluloid-essentials-0.20.5/lib/celluloid/logging/incident_reporter.rb
- def initialize(*args)
- @logger = ::Logger.new(*args)
- gems/celluloid-essentials-0.20.5/lib/celluloid/notifications.rb
- def publish(pattern, *args)
- Celluloid::Notifications.notifier.publish(pattern, *args)
- gems/celluloid-essentials-0.20.5/lib/celluloid/notifications.rb
- def unsubscribe(*args)
- Celluloid::Notifications.notifier.unsubscribe(*args)
- gems/celluloid-essentials-0.20.5/lib/celluloid/notifications.rb
- def publish(pattern, *args)
- listeners_for(pattern).each { |s| s.publish(pattern, *args) }
- gems/celluloid-essentials-0.20.5/lib/celluloid/notifications.rb
- def publish(pattern, *args)
- actor.async method, pattern, *args
- gems/celluloid-essentials-0.20.5/lib/celluloid/notifications.rb
- def self.publish(*args)
- Notifications.publish(*args)
- gems/celluloid-essentials-0.20.5/lib/celluloid/internals/method.rb
- def call(*args, &block)
- @proxy.__send__(@name, *args, &block)
- gems/paperclip-6.1.0/lib/paperclip/schema.rb
- def drop_attached_file(*args)
- remove_attachment(*args)
- gems/paperclip-6.1.0/lib/paperclip/schema.rb
- def has_attached_file(*attachment_names)
- attachment(*attachment_names)
- gems/paperclip-6.1.0/lib/paperclip/interpolations.rb
- def self.interpolate pattern, *args
- result.gsub!(token) { send(method, *args) } if result.include?(token)
- gems/paperclip-6.1.0/lib/paperclip/attachment.rb
- def clear(*styles_to_clear)
- queue_some_for_delete(*styles_to_clear)
- gems/paperclip-6.1.0/lib/paperclip/attachment.rb
- def post_process(*style_args) #:nodoc:
- post_process_styles(*style_args)
- gems/net-ldap-0.16.1/lib/net/ldap/dn.rb
- def method_missing(method, *args, &block)
- @dn.send(method, *args, &block)
- gems/cucumber-core-3.2.1/lib/cucumber/core/test/around_hook.rb
- def describe_to(visitor, *args, &continue)
- visitor.around_hook(self, *args, &continue)
- gems/cucumber-core-3.2.1/lib/cucumber/core/test/result.rb
- def describe_to(visitor, *args)
- visitor.passed(*args)
- gems/cucumber-core-3.2.1/lib/cucumber/core/test/result.rb
- def describe_to(visitor, *args)
- visitor.failed(*args)
- gems/cucumber-core-3.2.1/lib/cucumber/core/test/result.rb
- def describe_to(visitor, *args)
- visitor.undefined(*args)
- gems/cucumber-core-3.2.1/lib/cucumber/core/test/result.rb
- def describe_to(visitor, *args)
- visitor.skipped(*args)
- gems/cucumber-core-3.2.1/lib/cucumber/core/test/result.rb
- def describe_to(visitor, *args)
- visitor.pending(self, *args)
- gems/cucumber-core-3.2.1/lib/cucumber/core/test/action.rb
- def execute(*args)
- @block.call(*args)
- gems/cucumber-core-3.2.1/lib/cucumber/core/test/action.rb
- def skip(*args)
- execute(*args)
- gems/cucumber-core-3.2.1/lib/cucumber/core/test/step.rb
- def describe_to(visitor, *args)
- visitor.test_step(self, *args)
- gems/cucumber-core-3.2.1/lib/cucumber/core/test/step.rb
- def describe_source_to(visitor, *args)
- node.describe_to(visitor, *args)
- gems/cucumber-core-3.2.1/lib/cucumber/core/test/step.rb
- def skip(*args)
- @action.skip(*args)
- gems/cucumber-core-3.2.1/lib/cucumber/core/test/step.rb
- def execute(*args)
- @action.execute(*args)
- gems/cucumber-core-3.2.1/lib/cucumber/core/test/case.rb
- def describe_to(visitor, *args)
- visitor.test_case(self, *args) do |child_visitor|
- gems/cucumber-core-3.2.1/lib/cucumber/core/test/case.rb
- def describe_source_to(visitor, *args)
- node.describe_to(visitor, *args)
- gems/cucumber-core-3.2.1/lib/cucumber/core/test/case.rb
- def compose_around_hooks(visitor, *args, &block)
- -> { hook.describe_to(visitor, *args, &continue) }
- gems/cucumber-core-3.2.1/lib/cucumber/core/event_bus.rb
- def method_missing(event_id, *args)
- broadcast event_class.new(*args)
- gems/cucumber-core-3.2.1/lib/cucumber/core/ast/describes_itself.rb
- def describe_to(visitor, *args)
- visitor.send(description_for_visitors, self, *args) do |child_visitor|
- gems/cucumber-core-3.2.1/lib/cucumber/core/filter.rb
- def self.new(*attributes, &block)
- attr_reader(*attributes)
- gems/cucumber-core-3.2.1/lib/cucumber/core/event.rb
- def self.new(*attributes)
- attr_reader(*attributes)
- gems/cucumber-core-3.2.1/lib/cucumber/core/gherkin/writer.rb
- def feature(*args, &source)
- @feature = Feature.new(comment_lines, *args).tap do |builder|
- gems/ruby-progressbar-1.10.1/lib/ruby-progressbar.rb
- def self.create(*args)
- ProgressBar::Base.new(*args)
- gems/ruby-progressbar-1.10.1/lib/ruby-progressbar/base.rb
- def update_progress(*args)
- progressable.__send__(*args)
- gems/active_model_serializers-0.10.10/lib/active_model_serializers/logging.rb
- def tag_logger(*tags)
- ActiveModelSerializers.logger.tagged(*tags) { yield }
- gems/active_model_serializers-0.10.10/lib/active_model_serializers/deserialization.rb
- def jsonapi_parse(*args)
- Adapter::JsonApi::Deserialization.parse(*args)
- gems/active_model_serializers-0.10.10/lib/active_model_serializers/deserialization.rb
- def jsonapi_parse!(*args)
- Adapter::JsonApi::Deserialization.parse!(*args)
- gems/active_model_serializers-0.10.10/lib/active_model_serializers/model.rb
- def self.attributes(*names)
- attr_accessor(*names)
- gems/active_model_serializers-0.10.10/lib/active_model_serializers/callbacks.rb
- def around_render(*filters, &blk)
- set_callback(:render, :around, *filters, &blk)
- gems/googleauth-0.9.0/lib/googleauth/credentials_loader.rb
- def make_creds *args
- creds = new(*args)
- gems/actionmailer-6.0.0/lib/action_mailer/parameterized.rb
- def method_missing(method_name, *args)
- ActionMailer::Parameterized::MessageDelivery.new(@mailer, method_name, @params, *args)
- gems/actionmailer-6.0.0/lib/action_mailer/parameterized.rb
- def perform(mailer, mail_method, delivery_method, params, *args)
- mailer.constantize.with(params).public_send(mail_method, *args).send(delivery_method)
- gems/actionmailer-6.0.0/lib/action_mailer/parameterized.rb
- def initialize(mailer_class, action, params, *args)
- super(mailer_class, action, *args)
- gems/actionmailer-6.0.0/lib/action_mailer/base.rb
- def method_missing(method_name, *args)
- MessageDelivery.new(self, method_name, *args)
- gems/actionmailer-6.0.0/lib/action_mailer/delivery_job.rb
- def perform(mailer, mail_method, delivery_method, *args) #:nodoc:
- mailer.constantize.public_send(mail_method, *args).send(delivery_method)
- gems/actionmailer-6.0.0/lib/action_mailer/delivery_methods.rb
- def wrap_delivery_behavior!(*args) # :nodoc:
- self.class.wrap_delivery_behavior(message, *args)
- gems/dpl-1.10.12/lib/dpl/provider.rb
- def option(name, *alternatives)
- alternatives.any? ? option(*alternatives) : raise(Error, "missing #{name}")
- gems/savon-2.12.0/lib/savon/response.rb
- def find(*path)
- nori.find(envelope, *path)
- gems/savon-2.12.0/lib/savon/block_interface.rb
- def method_missing(method, *args, &block)
- @target.send(method, *args, &block)
- gems/unicode-display_width-1.6.0/lib/unicode/display_width/string_ext.rb
- def display_size(*args)
- display_width(*args)
- gems/unicode-display_width-1.6.0/lib/unicode/display_width/string_ext.rb
- def display_length(*args)
- display_width(*args)
- gems/mini_magick-4.9.5/lib/mini_magick/image.rb
- def method_missing(name, *args)
- builder.send(name, *args)
- gems/mini_magick-4.9.5/lib/mini_magick/tool.rb
- def self.new(*args)
- instance = super(*args)
- gems/mini_magick-4.9.5/lib/mini_magick/tool/convert.rb
- def initialize(*args)
- super("convert", *args)
- gems/mini_magick-4.9.5/lib/mini_magick/tool/composite.rb
- def initialize(*args)
- super("composite", *args)
- gems/mini_magick-4.9.5/lib/mini_magick/tool/magick.rb
- def initialize(*args)
- super("magick", *args)
- gems/mini_magick-4.9.5/lib/mini_magick/tool/stream.rb
- def initialize(*args)
- super("stream", *args)
- gems/mini_magick-4.9.5/lib/mini_magick/tool/display.rb
- def initialize(*args)
- super("display", *args)
- gems/mini_magick-4.9.5/lib/mini_magick/tool/mogrify.rb
- def initialize(*args)
- super("mogrify", *args)
- gems/mini_magick-4.9.5/lib/mini_magick/tool/compare.rb
- def initialize(*args)
- super("compare", *args)
- gems/mini_magick-4.9.5/lib/mini_magick/tool/animate.rb
- def initialize(*args)
- super("animate", *args)
- gems/mini_magick-4.9.5/lib/mini_magick/tool/montage.rb
- def initialize(*args)
- super("montage", *args)
- gems/mini_magick-4.9.5/lib/mini_magick/tool/identify.rb
- def initialize(*args)
- super("identify", *args)
- gems/mini_magick-4.9.5/lib/mini_magick/tool/conjure.rb
- def initialize(*args)
- super("conjure", *args)
- gems/mini_magick-4.9.5/lib/mini_magick/tool/import.rb
- def initialize(*args)
- super("import", *args)
- gems/slim-4.0.1/lib/slim/embedded.rb
- def register(name, klass, *option_filter)
- define_options(name, *option_filter)
- gems/slim-4.0.1/lib/slim/code_attributes.rb
- def on_html_attrs(*attrs)
- [:multi, *attrs.map {|a| compile(a) }]
- gems/selenium-webdriver-3.142.4/lib/selenium/webdriver.rb
- def self.for(*args)
- WebDriver::Driver.for(*args)
- gems/selenium-webdriver-3.142.4/lib/selenium/webdriver/atoms.rb
- def execute_atom(function_name, *arguments)
- execute_script(script, *arguments)
- gems/selenium-webdriver-3.142.4/lib/selenium/webdriver/support/event_firing_bridge.rb
- def execute_script(script, *args)
- @delegate.execute_script(script, *args)
- gems/selenium-webdriver-3.142.4/lib/selenium/webdriver/support/event_firing_bridge.rb
- def dispatch(name, *args)
- @listener.__send__("before_#{name}", *args)
- gems/selenium-webdriver-3.142.4/lib/selenium/webdriver/support/event_firing_bridge.rb
- def method_missing(meth, *args, &blk) # rubocop:disable Style/MethodMissingSuper, Style/MissingRespondToMissing
- @delegate.__send__(meth, *args, &blk)
- gems/selenium-webdriver-3.142.4/lib/selenium/webdriver/support/block_event_listener.rb
- def method_missing(meth, *args) # rubocop:disable Style/MethodMissingSuper, Style/MissingRespondToMissing
- @callback.call meth, *args
- gems/selenium-webdriver-3.142.4/lib/selenium/webdriver/common/interactions/key_actions.rb
- def key_down(*args, device: nil)
- key_action(*args, action: :create_key_down, device: device)
- gems/selenium-webdriver-3.142.4/lib/selenium/webdriver/common/interactions/key_actions.rb
- def key_up(*args, device: nil)
- key_action(*args, action: :create_key_up, device: device)
- gems/selenium-webdriver-3.142.4/lib/selenium/webdriver/common/service.rb
- def build_process(*command)
- @process = ChildProcess.build(*command)
- gems/selenium-webdriver-3.142.4/lib/selenium/webdriver/common/driver.rb
- def execute_script(script, *args)
- bridge.execute_script(script, *args)
- gems/selenium-webdriver-3.142.4/lib/selenium/webdriver/common/driver.rb
- def execute_async_script(script, *args)
- bridge.execute_async_script(script, *args)
- gems/selenium-webdriver-3.142.4/lib/selenium/webdriver/firefox/binary.rb
- def start_with(profile, profile_path, *args)
- execute(*args)
- gems/net-sftp-2.1.2/lib/net/sftp/protocol/base.rb
- def send_request(type, *args)
- session.send_packet(type, :long, @request_id_counter, *args)
- gems/net-sftp-2.1.2/lib/net/sftp/operations/download.rb
- def update_progress(hook, *args)
- progress.send(on, self, *args)
- gems/net-sftp-2.1.2/lib/net/sftp/operations/upload.rb
- def update_progress(event, *args)
- progress.send(on, self, *args)
- gems/net-sftp-2.1.2/lib/net/sftp/session.rb
- def send_packet(type, *args)
- data = Net::SSH::Buffer.from(*args)
- gems/net-sftp-2.1.2/lib/net/sftp/session.rb
- def request(type, *args, &callback)
- request = Request.new(self, type, protocol.send(type, *args), &callback)
- gems/timecop-0.9.1/lib/timecop/time_extensions.rb
- def new_with_mock_time(*args)
- args.size <= 0 ? now : new_without_mock_time(*args)
- gems/timecop-0.9.1/lib/timecop/time_extensions.rb
- def parse_with_mock_date(*args)
- parsed_date = parse_without_mock_date(*args)
- gems/timecop-0.9.1/lib/timecop/time_extensions.rb
- def parse_with_mock_date(*args)
- date_hash = Date._parse(*args)
- gems/timecop-0.9.1/lib/timecop/time_stack_item.rb
- def initialize(mock_type, *args)
- @time = parse_time(*args)
- gems/timecop-0.9.1/lib/timecop/timecop.rb
- def freeze(*args, &block)
- send_travel(:freeze, *args, &block)
- gems/timecop-0.9.1/lib/timecop/timecop.rb
- def travel(*args, &block)
- send_travel(:travel, *args, &block)
- gems/timecop-0.9.1/lib/timecop/timecop.rb
- def scale(*args, &block)
- send_travel(:scale, *args, &block)
- gems/timecop-0.9.1/lib/timecop/timecop.rb
- def send_travel(mock_type, *args, &block)
- val = instance.send(:travel, mock_type, *args, &block)
- gems/timecop-0.9.1/lib/timecop/timecop.rb
- def travel(mock_type, *args, &block) #:nodoc:
- stack_item = TimeStackItem.new(mock_type, *args)
- gems/docile-1.3.2/lib/docile.rb
- def dsl_eval(dsl, *args, &block)
- exec_in_proxy_context(dsl, FallbackContextProxy, *args, &block)
- gems/docile-1.3.2/lib/docile.rb
- def dsl_eval_with_block_return(dsl, *args, &block)
- exec_in_proxy_context(dsl, FallbackContextProxy, *args, &block)
- gems/docile-1.3.2/lib/docile.rb
- def dsl_eval_immutable(dsl, *args, &block)
- exec_in_proxy_context(dsl, ChainingFallbackContextProxy, *args, &block)
- gems/docile-1.3.2/lib/docile/fallback_context_proxy.rb
- def method_missing(method, *args, &block)
- @__receiver__.__send__(method.to_sym, *args, &block)
- gems/docile-1.3.2/lib/docile/chaining_fallback_context_proxy.rb
- def method_missing(method, *args, &block)
- @__receiver__ = super(method, *args, &block)
- gems/docile-1.3.2/lib/docile/execution.rb
- def exec_in_proxy_context(dsl, proxy_type, *args, &block)
- proxy_context.instance_exec(*args, &block)
- gems/thor-0.20.3/lib/thor/actions/file_manipulation.rb
- def gsub_file(path, flag, *args, &block)
- content.gsub!(flag, *args, &block)
- gems/thor-0.20.3/lib/thor/actions/file_manipulation.rb
- def uncomment_lines(path, flag, *args)
- gsub_file(path, /^(\s*)#[[:blank:]]*(.*#{flag})/, '\1\2', *args)
- gems/thor-0.20.3/lib/thor/actions/file_manipulation.rb
- def comment_lines(path, flag, *args)
- gsub_file(path, /^(\s*)([^#\n]*#{flag})/, '\1# \2', *args)
- gems/thor-0.20.3/lib/thor/actions/file_manipulation.rb
- def capture(*args)
- with_output_buffer { yield(*args) }
- gems/thor-0.20.3/lib/thor/shell/basic.rb
- def prepare_message(message, *color)
- spaces + set_color(message.to_s, *color)
- gems/thor-0.20.3/lib/thor/invocation.rb
- def invoke_command(command, *args) #:nodoc:
- command.run(self, *args)
- gems/thor-0.20.3/lib/thor/invocation.rb
- def invoke_with_padding(*args)
- with_padding { invoke(*args) }
- gems/thor-0.20.3/lib/thor/core_ext/hash_with_indifferent_access.rb
- def fetch(key, *args)
- super(convert_key(key), *args)
- gems/thor-0.20.3/lib/thor/core_ext/io_binary_read.rb
- def binread(file, *args)
- f.read(*args)
- gems/thor-0.20.3/lib/thor/parser/arguments.rb
- def self.parse(*args)
- new(*args).parse(to_parse)
- gems/thor-0.20.3/lib/thor/group.rb
- def _invoke_for_class_method(klass, command = nil, *args, &block) #:nodoc:
- invoke klass, command, *args
- gems/sdoc-1.0.0/lib/sdoc/generator.rb
- def debug_msg( *msg )
- $stderr.puts( *msg )
- gems/warden-1.2.8/lib/warden/hooks.rb
- def _run_callbacks(kind, *args) #:nodoc:
- callback.call(*args) unless invalid
- gems/warden-1.2.8/lib/warden/errors.rb
- def method_missing(meth, *args, &block)
- errors.send(meth, *args, &block)
- gems/warden-1.2.8/lib/warden/test/helpers.rb
- def logout(*scopes)
- proxy.logout(*scopes)
- gems/warden-1.2.8/lib/warden/manager.rb
- def _run_callbacks(*args) #:nodoc:
- self.class._run_callbacks(*args)
- gems/warden-1.2.8/lib/warden/config.rb
- def serialize_into_session(*args, &block)
- Warden::Manager.serialize_into_session(*args, &block)
- gems/warden-1.2.8/lib/warden/config.rb
- def serialize_from_session(*args, &block)
- Warden::Manager.serialize_from_session(*args, &block)
- gems/warden-1.2.8/lib/warden/proxy.rb
- def authenticate(*args)
- user, _opts = _perform_authentication(*args)
- gems/warden-1.2.8/lib/warden/proxy.rb
- def authenticate?(*args)
- result = !!authenticate(*args)
- gems/warden-1.2.8/lib/warden/proxy.rb
- def authenticate!(*args)
- user, opts = _perform_authentication(*args)
- gems/warden-1.2.8/lib/warden/proxy.rb
- def to_s(*args)
- inspect(*args)
- gems/jbuilder-2.9.1/lib/jbuilder.rb
- def self.encode(*args, &block)
- new(*args, &block).target!
- gems/jbuilder-2.9.1/lib/jbuilder.rb
- def set!(key, value = BLANK, *args)
- _scope{ array! value, *args }
- gems/jbuilder-2.9.1/lib/jbuilder.rb
- def method_missing(*args)
- set!(*args, &::Proc.new)
- gems/jbuilder-2.9.1/lib/jbuilder.rb
- def key_format!(*args)
- @key_formatter = KeyFormatter.new(*args)
- gems/jbuilder-2.9.1/lib/jbuilder.rb
- def self.key_format(*args)
- @@key_formatter = KeyFormatter.new(*args)
- gems/jbuilder-2.9.1/lib/jbuilder.rb
- def array!(collection = [], *attributes)
- _map_collection(collection) { |element| extract! element, *attributes }
- gems/jbuilder-2.9.1/lib/jbuilder.rb
- def call(object, *attributes)
- extract! object, *attributes
- gems/jbuilder-2.9.1/lib/jbuilder/jbuilder_template.rb
- def initialize(context, *args)
- super(*args)
- gems/jbuilder-2.9.1/lib/jbuilder/jbuilder_template.rb
- def partial!(*args)
- _render_explicit_partial(*args)
- gems/jbuilder-2.9.1/lib/jbuilder/jbuilder_template.rb
- def cache_if!(condition, *args)
- condition ? cache!(*args, &::Proc.new) : yield
- gems/tty-screen-0.7.0/lib/tty/screen.rb
- def run_command(*args)
- result = system(*args, out: out.path, err: File::NULL)
- gems/omniauth-1.9.0/lib/omniauth/builder.rb
- def provider(klass, *args, &block)
- use middleware, *args, &block
- gems/hike-2.1.3/lib/hike/cached_trail.rb
- def find(*logical_paths)
- find_all(*logical_paths).first
- gems/hike-2.1.3/lib/hike/cached_trail.rb
- def find_all(*logical_paths, &block)
- return to_enum(__method__, *logical_paths) unless block_given?
- gems/hike-2.1.3/lib/hike/trail.rb
- def prepend_paths(*paths)
- self.paths.unshift(*paths)
- gems/hike-2.1.3/lib/hike/trail.rb
- def append_paths(*paths)
- self.paths.push(*paths)
- gems/hike-2.1.3/lib/hike/trail.rb
- def prepend_extensions(*extensions)
- self.extensions.unshift(*extensions)
- gems/hike-2.1.3/lib/hike/trail.rb
- def append_extensions(*extensions)
- self.extensions.push(*extensions)
- gems/hike-2.1.3/lib/hike/trail.rb
- def find(*args)
- index.find(*args)
- gems/hike-2.1.3/lib/hike/trail.rb
- def find_all(*args, &block)
- cached.find_all(*args, &block)
- gems/memoist-0.16.0/lib/memoist.rb
- def self.memoist_eval(klass, *args, &block)
- klass.class_eval(*args, &block)
- gems/concurrent-ruby-1.1.5/lib/concurrent/promise.rb
- def zip(*others)
- self.class.zip(self, *others)
- gems/concurrent-ruby-1.1.5/lib/concurrent/promise.rb
- def self.all?(*promises)
- aggregate(:all?, *promises)
- gems/concurrent-ruby-1.1.5/lib/concurrent/promise.rb
- def self.any?(*promises)
- aggregate(:any?, *promises)
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def future(*args, &task)
- future_on(default_executor, *args, &task)
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def future_on(default_executor, *args, &task)
- ImmediateEventPromise.new(default_executor).future.then(*args, &task)
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def delay(*args, &task)
- delay_on default_executor, *args, &task
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def delay_on(default_executor, *args, &task)
- task ? event.chain(*args, &task) : event
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def schedule(intended_time, *args, &task)
- schedule_on default_executor, intended_time, *args, &task
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def schedule_on(default_executor, intended_time, *args, &task)
- task ? event.chain(*args, &task) : event
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def zip_futures(*futures_and_or_events)
- zip_futures_on default_executor, *futures_and_or_events
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def zip_events(*futures_and_or_events)
- zip_events_on default_executor, *futures_and_or_events
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def any_resolved_future(*futures_and_or_events)
- any_resolved_future_on default_executor, *futures_and_or_events
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def any_fulfilled_future(*futures_and_or_events)
- any_fulfilled_future_on default_executor, *futures_and_or_events
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def any_event(*futures_and_or_events)
- any_event_on default_executor, *futures_and_or_events
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def chain(*args, &task)
- chain_on @DefaultExecutor, *args, &task
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def on_resolution(*args, &callback)
- on_resolution_using @DefaultExecutor, *args, &callback
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def with_async(executor, *args, &block)
- Concurrent.executor(executor).post(*args, &block)
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def exception(*args)
- reason[0].exception(*args)
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def then(*args, &task)
- then_on @DefaultExecutor, *args, &task
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def rescue(*args, &task)
- rescue_on @DefaultExecutor, *args, &task
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def on_fulfillment(*args, &callback)
- on_fulfillment_using @DefaultExecutor, *args, &callback
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def on_rejection(*args, &callback)
- on_rejection_using @DefaultExecutor, *args, &callback
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def evaluate_to(*args, &block)
- promise.evaluate_to(*args, block)
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def evaluate_to!(*args, &block)
- promise.evaluate_to(*args, block).wait!
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def evaluate_to(*args, block)
- resolve_with Fulfilled.new(block.call(*args))
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def self.new_blocked_by1(blocker, *args, &block)
- promise = new(blocker_delayed, 1, *args, &block)
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def self.new_blocked_by2(blocker1, blocker2, *args, &block)
- promise = new(delayed, 2, *args, &block)
- gems/concurrent-ruby-1.1.5/lib/concurrent/promises.rb
- def self.new_blocked_by(blockers, *args, &block)
- promise = new(delayed, blockers.size, *args, &block)
- gems/concurrent-ruby-1.1.5/lib/concurrent/concern/obligation.rb
- def exception(*args)
- reason.exception(*args)
- gems/concurrent-ruby-1.1.5/lib/concurrent/maybe.rb
- def self.from(*args)
- value = yield(*args)
- gems/concurrent-ruby-1.1.5/lib/concurrent/collection/copy_on_notify_observer_set.rb
- def notify_observers(*args, &block)
- notify_to(observers, *args, &block)
- gems/concurrent-ruby-1.1.5/lib/concurrent/collection/copy_on_notify_observer_set.rb
- def notify_and_delete_observers(*args, &block)
- notify_to(observers, *args, &block)
- gems/concurrent-ruby-1.1.5/lib/concurrent/collection/copy_on_notify_observer_set.rb
- def notify_to(observers, *args)
- observer.send(function, *args)
- gems/concurrent-ruby-1.1.5/lib/concurrent/collection/copy_on_write_observer_set.rb
- def notify_observers(*args, &block)
- notify_to(observers, *args, &block)
- gems/concurrent-ruby-1.1.5/lib/concurrent/collection/copy_on_write_observer_set.rb
- def notify_and_delete_observers(*args, &block)
- notify_to(old, *args, &block)
- gems/concurrent-ruby-1.1.5/lib/concurrent/collection/copy_on_write_observer_set.rb
- def notify_to(observers, *args)
- observer.send(function, *args)
- gems/concurrent-ruby-1.1.5/lib/concurrent/agent.rb
- def send!(*args, &action)
- raise Error.new unless send(*args, &action)
- gems/concurrent-ruby-1.1.5/lib/concurrent/agent.rb
- def send_off!(*args, &action)
- raise Error.new unless send_off(*args, &action)
- gems/concurrent-ruby-1.1.5/lib/concurrent/agent.rb
- def send_via!(executor, *args, &action)
- raise Error.new unless send_via(executor, *args, &action)
- gems/concurrent-ruby-1.1.5/lib/concurrent/agent.rb
- def await_for!(timeout, *agents)
- raise Concurrent::TimeoutError unless await_for(timeout, *agents)
- gems/concurrent-ruby-1.1.5/lib/concurrent/re_include.rb
- def include(*modules)
- result = super(*modules)
- gems/concurrent-ruby-1.1.5/lib/concurrent/atom.rb
- def swap(*args)
- new_value = yield(old_value, *args)
- gems/concurrent-ruby-1.1.5/lib/concurrent/executor/immediate_executor.rb
- def post(*args, &task)
- task.call(*args)
- gems/concurrent-ruby-1.1.5/lib/concurrent/executor/abstract_executor_service.rb
- def initialize(*args, &block)
- synchronize { ns_initialize(*args, &block) }
- gems/concurrent-ruby-1.1.5/lib/concurrent/executor/abstract_executor_service.rb
- def handle_fallback(*args)
- yield(*args)
- gems/concurrent-ruby-1.1.5/lib/concurrent/executor/serialized_execution_delegator.rb
- def post(*args, &task)
- @serializer.post(@executor, *args, &task)
- gems/concurrent-ruby-1.1.5/lib/concurrent/executor/ruby_executor_service.rb
- def post(*args, &task)
- return handle_fallback(*args, &task) unless running?
- gems/concurrent-ruby-1.1.5/lib/concurrent/executor/simple_executor_service.rb
- def self.post(*args)
- Thread.new(*args) do
- gems/concurrent-ruby-1.1.5/lib/concurrent/executor/simple_executor_service.rb
- def post(*args, &task)
- Thread.new(*args) do
- gems/concurrent-ruby-1.1.5/lib/concurrent/executor/safe_task_executor.rb
- def execute(*args)
- value = @task.call(*args)
- gems/concurrent-ruby-1.1.5/lib/concurrent/executor/ruby_thread_pool_executor.rb
- def ns_execute(*args, &task)
- if ns_assign_worker(*args, &task) || ns_enqueue(*args, &task)
- gems/concurrent-ruby-1.1.5/lib/concurrent/executor/indirect_immediate_executor.rb
- def post(*args, &task)
- task.call(*args)
- gems/concurrent-ruby-1.1.5/lib/concurrent/executor/java_executor_service.rb
- def post(*args, &task)
- return handle_fallback(*args, &task) unless running?
- gems/concurrent-ruby-1.1.5/lib/concurrent/async.rb
- def new(*args, &block)
- obj = original_new(*args, &block)
- gems/concurrent-ruby-1.1.5/lib/concurrent/async.rb
- def method_missing(method, *args, &block)
- Async::validate_argc(@delegate, method, *args)
- gems/concurrent-ruby-1.1.5/lib/concurrent/async.rb
- def method_missing(method, *args, &block)
- ivar = @delegate.send(method, *args, &block)
- gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/rbx_lockable_object.rb
- def initialize(*defaults)
- super(*defaults)
- gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/abstract_struct.rb
- def initialize(*values)
- ns_initialize(*values)
- gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/mutex_lockable_object.rb
- def initialize(*defaults)
- super(*defaults)
- gems/concurrent-ruby-1.1.5/lib/concurrent/synchronization/mutex_lockable_object.rb
- def initialize(*defaults)
- super(*defaults)
- gems/concurrent-ruby-1.1.5/lib/concurrent/dataflow.rb
- def dataflow(*inputs, &block)
- dataflow_with(Concurrent.global_io_executor, *inputs, &block)
- gems/concurrent-ruby-1.1.5/lib/concurrent/dataflow.rb
- def dataflow_with(executor, *inputs, &block)
- call_dataflow(:value, executor, *inputs, &block)
- gems/concurrent-ruby-1.1.5/lib/concurrent/dataflow.rb
- def dataflow!(*inputs, &block)
- dataflow_with!(Concurrent.global_io_executor, *inputs, &block)
- gems/concurrent-ruby-1.1.5/lib/concurrent/dataflow.rb
- def dataflow_with!(executor, *inputs, &block)
- call_dataflow(:value!, executor, *inputs, &block)
- gems/concurrent-ruby-1.1.5/lib/concurrent/utility/at_exit.rb
- def initialize(*args)
- synchronize { ns_initialize(*args) }
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/any_instance/message_chains.rb
- def each_unfulfilled_expectation_matching(method_name, *args)
- yield chain if !chain.expectation_fulfilled? && chain.matches_args?(*args)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/any_instance/proxy.rb
- def stub_chain(*chain, &block)
- Mocks::StubChain.stub_chain_on(proxy.object, *chain, &block)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/any_instance/proxy.rb
- def expect_chain(*chain, &block)
- Mocks::ExpectChain.expect_chain_on(proxy.object, *chain, &block)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/any_instance/proxy.rb
- def method_missing(*args, &block)
- return_values = @targets.map { |t| t.__send__(*args, &block) }
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/any_instance/chain.rb
- def matches_args?(*args)
- @argument_list_matcher.args_match?(*args)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/any_instance/chain.rb
- def with(*args, &block)
- @argument_list_matcher = ArgumentListMatcher.new(*args)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/any_instance/chain.rb
- def record(rspec_method_name, *args, &block)
- verify_invocation_order(rspec_method_name, *args, &block)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/any_instance/recorder.rb
- def stub_chain(*method_names_and_optional_return_values, &block)
- normalize_chain(*method_names_and_optional_return_values) do |method_name, args|
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/any_instance/recorder.rb
- def expect_chain(*method_names_and_optional_return_values, &block)
- normalize_chain(*method_names_and_optional_return_values) do |method_name, args|
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/test_double.rb
- def method_missing(message, *args, &block)
- proxy.record_message_received(message, *args, &block)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/message_expectation.rb
- def and_raise(*args)
- self.terminal_implementation_action = Proc.new { raise(*args) }
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/message_expectation.rb
- def and_throw(*args)
- self.terminal_implementation_action = Proc.new { throw(*args) }
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/message_expectation.rb
- def with(*args, &block)
- @argument_list_matcher = ArgumentListMatcher.new(*args)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/message_expectation.rb
- def matches?(message, *args)
- @message == message && @argument_list_matcher.args_match?(*args)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/message_expectation.rb
- def safe_invoke(parent_stub, *args, &block)
- invoke_incrementing_actual_calls_by(1, false, parent_stub, *args, &block)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/message_expectation.rb
- def invoke(parent_stub, *args, &block)
- invoke_incrementing_actual_calls_by(1, true, parent_stub, *args, &block)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/message_expectation.rb
- def invoke_without_incrementing_received_count(parent_stub, *args, &block)
- invoke_incrementing_actual_calls_by(0, true, parent_stub, *args, &block)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/message_expectation.rb
- def matches_name_but_not_args(message, *args)
- @message == message && !@argument_list_matcher.args_match?(*args)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/message_expectation.rb
- def invoke_incrementing_actual_calls_by(increment, allowed_to_fail, parent_stub, *args, &block)
- implementation.call(*args, &block)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/message_expectation.rb
- def call(*args, &block)
- action.call(*args, &block)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/message_expectation.rb
- def call(*args, &block)
- @block.call(@method, *args, &block)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/matchers/receive.rb
- def setup_method_substitute(host, method, block, *args)
- expectation = host.__send__(method, *args, &(@block || block))
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/verifying_message_expectation.rb
- def with(*args, &block)
- super(*args, &block).tap do
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/verifying_double.rb
- def send(name, *args, &block)
- __send__(name, *args, &block)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/verifying_double.rb
- def initialize(doubled_module, *args)
- super(name, *args)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/error_generator.rb
- def notify(*args)
- RSpec::Support.notify_failure(*args)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/method_double.rb
- def proxy_method_invoked(_obj, *args, &block)
- @proxy.message_received method_name, *args, &block
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/method_double.rb
- def add_default_stub(*args, &implementation)
- add_stub(*args, &implementation)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/argument_matchers.rb
- def duck_type(*args)
- DuckTypeMatcher.new(*args)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/argument_matchers.rb
- def hash_including(*args)
- HashIncludingMatcher.new(ArgumentMatchers.anythingize_lonely_keys(*args))
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/argument_matchers.rb
- def hash_excluding(*args)
- HashExcludingMatcher.new(ArgumentMatchers.anythingize_lonely_keys(*args))
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/verifying_proxy.rb
- def add_expectation(*args, &block)
- super(*args, &block).tap { |x| x.method_reference = @method_reference }
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/verifying_proxy.rb
- def add_stub(*args, &block)
- super(*args, &block).tap { |x| x.method_reference = @method_reference }
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/proxy.rb
- def message_received(message, *args, &block)
- record_message_received message, *args, &block
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/proxy.rb
- def find_matching_expectation(method_name, *args)
- expectation.matches?(method_name, *args)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/proxy.rb
- def find_almost_matching_expectation(method_name, *args)
- expectation.matches_name_but_not_args(method_name, *args)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/proxy.rb
- def find_matching_method_stub(method_name, *args)
- method_double_for(method_name).stubs.find { |stub| stub.matches?(method_name, *args) }
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/proxy.rb
- def find_almost_matching_stub(method_name, *args)
- method_double_for(method_name).stubs.find { |stub| stub.matches_name_but_not_args(method_name, *args) }
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/proxy.rb
- def initialize(source_space, *args)
- super(*args)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/message_chain.rb
- def initialize(object, *chain, &blk)
- @chain, @block = format_chain(*chain, &blk)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/message_chain.rb
- def chain_on(object, *chain, &block)
- initialize(object, *chain, &block)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/message_chain.rb
- def self.expect_chain_on(object, *chain, &blk)
- new(object, *chain, &blk).setup_chain
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/message_chain.rb
- def self.stub_chain_on(object, *chain, &blk)
- new(object, *chain, &blk).setup_chain
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/example_methods.rb
- def double(*args)
- ExampleMethods.declare_double(Double, *args)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/example_methods.rb
- def instance_double(doubled_class, *args)
- ExampleMethods.declare_verifying_double(InstanceVerifyingDouble, ref, *args)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/example_methods.rb
- def class_double(doubled_class, *args)
- ExampleMethods.declare_verifying_double(ClassVerifyingDouble, ref, *args)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/example_methods.rb
- def object_double(object_or_name, *args)
- ExampleMethods.declare_verifying_double(ObjectVerifyingDouble, ref, *args)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/example_methods.rb
- def spy(*args)
- double(*args).as_null_object
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/example_methods.rb
- def instance_spy(*args)
- instance_double(*args).as_null_object
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/example_methods.rb
- def object_spy(*args)
- object_double(*args).as_null_object
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/example_methods.rb
- def class_spy(*args)
- class_double(*args).as_null_object
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/example_methods.rb
- def self.declare_verifying_double(type, ref, *args)
- declare_double(type, ref, *args)
- gems/rspec-mocks-3.8.1/lib/rspec/mocks/example_methods.rb
- def self.declare_double(type, *args)
- type.new(*args)
- gems/nokogiri-1.10.4/lib/nokogiri.rb
- def Slop(*args, &block)
- Nokogiri(*args, &block).slop!
- gems/nokogiri-1.10.4/lib/nokogiri.rb
- def Nokogiri(*args, &block)
- Nokogiri.parse(*args)
- gems/nokogiri-1.10.4/lib/nokogiri/xml/document_fragment.rb
- def to_html *args
- children.to_html(*args)
- gems/nokogiri-1.10.4/lib/nokogiri/xml/document_fragment.rb
- def to_xhtml *args
- children.to_xhtml(*args)
- gems/nokogiri-1.10.4/lib/nokogiri/xml/document_fragment.rb
- def to_xml *args
- children.to_xml(*args)
- gems/nokogiri-1.10.4/lib/nokogiri/xml/document_fragment.rb
- def css *args
- children.css(*args) # 'children' is a smell here
- gems/nokogiri-1.10.4/lib/nokogiri/xml/node.rb
- def inner_html *args
- children.map { |x| x.to_html(*args) }.join
- gems/nokogiri-1.10.4/lib/nokogiri/xml/entity_decl.rb
- def self.new name, doc, *args
- doc.create_entity(name, *args)
- gems/nokogiri-1.10.4/lib/nokogiri/xml/builder.rb
- def to_xml(*args)
- @doc.to_xml(*args)
- gems/nokogiri-1.10.4/lib/nokogiri/xml/builder.rb
- def method_missing(method, *args, &block) # :nodoc:
- @context.send(method, *args, &block)
- gems/nokogiri-1.10.4/lib/nokogiri/xml/searchable.rb
- def at *args
- search(*args).first
- gems/nokogiri-1.10.4/lib/nokogiri/xml/searchable.rb
- def at_css *args
- css(*args).first
- gems/nokogiri-1.10.4/lib/nokogiri/xml/searchable.rb
- def at_xpath *args
- xpath(*args).first
- gems/nokogiri-1.10.4/lib/nokogiri/xml/node_set.rb
- def at *args
- super(*args)
- gems/nokogiri-1.10.4/lib/nokogiri/xml/node_set.rb
- def inner_html *args
- collect{|j| j.inner_html(*args) }.join('')
- gems/nokogiri-1.10.4/lib/nokogiri/xml/node_set.rb
- def to_html *args
- map { |x| x.to_html(*args) }.join
- gems/nokogiri-1.10.4/lib/nokogiri/xml/node_set.rb
- def to_xhtml *args
- map { |x| x.to_xhtml(*args) }.join
- gems/nokogiri-1.10.4/lib/nokogiri/xml/node_set.rb
- def to_xml *args
- map { |x| x.to_xml(*args) }.join
- gems/nenv-0.3.0/lib/nenv.rb
- def method_missing(meth, *args)
- instance.send(meth, *args)
- gems/nenv-0.3.0/lib/nenv/autoenvironment.rb
- def method_missing(meth, *args)
- send(meth, *args)
- gems/rspec-rails-3.8.2/lib/generators/rspec/scaffold/scaffold_generator.rb
- def initialize(*args, &blk)
- super(*args, &blk)
- gems/rspec-rails-3.8.2/lib/rspec/rails/matchers/routing_matchers.rb
- def route_to(*expected)
- RouteToMatcher.new(self, *expected)
- gems/rspec-rails-3.8.2/lib/rspec/rails/matchers/be_valid.rb
- def be_valid(*args)
- BeValid.new(*args)
- gems/rspec-rails-3.8.2/lib/rspec/rails/example/controller_example_group.rb
- def method_missing(method, *args, &block)
- controller.send(method, *args, &block)
- gems/rspec-rails-3.8.2/lib/rspec/rails/example/routing_example_group.rb
- def method_missing(m, *args, &block)
- routes.url_helpers.respond_to?(m) ? routes.url_helpers.send(m, *args) : super
- gems/rspec-rails-3.8.2/lib/rspec/rails/example/system_example_group.rb
- def initialize(*args, &blk)
- super(*args, &blk)
- gems/rspec-rails-3.8.2/lib/rspec/rails/example/system_example_group.rb
- def driven_by(*args, &blk)
- @driver = ::ActionDispatch::SystemTestCase.driven_by(*args, &blk).tap(&:use)
- gems/rspec-rails-3.8.2/lib/rspec/rails/view_rendering.rb
- def method_missing(name, *args, &block)
- result = @resolver.send(name, *args, &block)
- gems/git-1.5.0/lib/git/base.rb
- def add_tag(name, *opts)
- self.lib.tag(name, *opts)
- gems/google-api-client-0.30.9/lib/google/apis/core/json_representation.rb
- def to_json(*a)
- representation.new(self).to_hash(user_options: { skip_undefined: true }).to_json(*a)
- gems/ffi-1.11.1/lib/ffi/enum.rb
- def initialize(*args)
- info, @tag = *args
- gems/ffi-1.11.1/lib/ffi/enum.rb
- def initialize(*args)
- info, @tag = *args
- gems/ffi-1.11.1/lib/ffi/library.rb
- def enum(*args)
- generic_enum(FFI::Enum, *args)
- gems/ffi-1.11.1/lib/ffi/library.rb
- def bitmask(*args)
- generic_enum(FFI::Bitmask, *args)
- gems/guard-rspec-4.7.3/lib/guard/rspec_formatter.rb
- def dump_summary(*args)
- return write_summary(*args) unless self.class.rspec_3?
- gems/activerecord-6.0.0/lib/arel/nodes/table_alias.rb
- def type_cast_for_database(*args)
- relation.type_cast_for_database(*args)
- gems/activerecord-6.0.0/lib/arel/visitors/where_sql.rb
- def initialize(inner_visitor, *args, &block)
- super(*args, &block)
- gems/activerecord-6.0.0/lib/arel/table.rb
- def group(*columns)
- from.group(*columns)
- gems/activerecord-6.0.0/lib/arel/table.rb
- def order(*expr)
- from.order(*expr)
- gems/activerecord-6.0.0/lib/arel/table.rb
- def project(*things)
- from.project(*things)
- gems/activerecord-6.0.0/lib/arel/predications.rb
- def grouping_any(method_id, others, *extras)
- nodes = others.map { |expr| send(method_id, expr, *extras) }
- gems/activerecord-6.0.0/lib/arel/predications.rb
- def grouping_all(method_id, others, *extras)
- nodes = others.map { |expr| send(method_id, expr, *extras) }
- gems/activerecord-6.0.0/lib/active_record/relation/spawn_methods.rb
- def except(*skips)
- relation_with values.except(*skips)
- gems/activerecord-6.0.0/lib/active_record/relation/spawn_methods.rb
- def only(*onlies)
- relation_with values.slice(*onlies)
- gems/activerecord-6.0.0/lib/active_record/relation/finder_methods.rb
- def find(*args)
- find_with_ids(*args)
- gems/activerecord-6.0.0/lib/active_record/relation/finder_methods.rb
- def find_by(arg, *args)
- where(arg, *args).take
- gems/activerecord-6.0.0/lib/active_record/relation/finder_methods.rb
- def find_by!(arg, *args)
- where(arg, *args).take!
- gems/activerecord-6.0.0/lib/active_record/relation/query_methods.rb
- def includes(*args)
- spawn.includes!(*args)
- gems/activerecord-6.0.0/lib/active_record/relation/query_methods.rb
- def eager_load(*args)
- spawn.eager_load!(*args)
- gems/activerecord-6.0.0/lib/active_record/relation/query_methods.rb
- def preload(*args)
- spawn.preload!(*args)
- gems/activerecord-6.0.0/lib/active_record/relation/query_methods.rb
- def references(*table_names)
- spawn.references!(*table_names)
- gems/activerecord-6.0.0/lib/active_record/relation/query_methods.rb
- def select(*fields)
- spawn._select!(*fields)
- gems/activerecord-6.0.0/lib/active_record/relation/query_methods.rb
- def reselect(*args)
- spawn.reselect!(*args)
- gems/activerecord-6.0.0/lib/active_record/relation/query_methods.rb
- def group(*args)
- spawn.group!(*args)
- gems/activerecord-6.0.0/lib/active_record/relation/query_methods.rb
- def order(*args)
- spawn.order!(*args)
- gems/activerecord-6.0.0/lib/active_record/relation/query_methods.rb
- def reorder(*args)
- spawn.reorder!(*args)
- gems/activerecord-6.0.0/lib/active_record/relation/query_methods.rb
- def unscope(*args)
- spawn.unscope!(*args)
- gems/activerecord-6.0.0/lib/active_record/relation/query_methods.rb
- def unscope!(*args) # :nodoc:
- raise ArgumentError, "Hash arguments in .unscope(*args) must have :where as the key."
- gems/activerecord-6.0.0/lib/active_record/relation/query_methods.rb
- def joins(*args)
- spawn.joins!(*args)
- gems/activerecord-6.0.0/lib/active_record/relation/query_methods.rb
- def left_outer_joins(*args)
- spawn.left_outer_joins!(*args)
- gems/activerecord-6.0.0/lib/active_record/relation/query_methods.rb
- def where(opts = :chain, *rest)
- spawn.where!(opts, *rest)
- gems/activerecord-6.0.0/lib/active_record/relation/query_methods.rb
- def having(opts, *rest)
- opts.blank? ? self : spawn.having!(opts, *rest)
- gems/activerecord-6.0.0/lib/active_record/relation/query_methods.rb
- def extending(*modules, &block)
- spawn.extending!(*modules, &block)
- gems/activerecord-6.0.0/lib/active_record/relation/query_methods.rb
- def optimizer_hints(*args)
- spawn.optimizer_hints!(*args)
- gems/activerecord-6.0.0/lib/active_record/relation/query_methods.rb
- def annotate(*args)
- spawn.annotate!(*args)
- gems/activerecord-6.0.0/lib/active_record/relation/calculations.rb
- def pluck(*column_names)
- return records.pluck(*column_names)
- gems/activerecord-6.0.0/lib/active_record/relation/calculations.rb
- def pick(*column_names)
- limit(1).pluck(*column_names).first
- gems/activerecord-6.0.0/lib/active_record/relation/delegation.rb
- def method_missing(method, *args, &block)
- scoping { @klass.public_send(method, *args, &block) }
- gems/activerecord-6.0.0/lib/active_record/relation/delegation.rb
- def create(klass, *args)
- relation_class_for(klass).new(klass, *args)
- gems/activerecord-6.0.0/lib/active_record/touch_later.rb
- def touch(*names, time: nil) # :nodoc:
- super(*names, time: time)
- gems/activerecord-6.0.0/lib/active_record/attribute_decorators.rb
- def merge(*args)
- TypeDecorator.new(@decorations.merge(*args))
- gems/activerecord-6.0.0/lib/active_record/persistence.rb
- def save(*args, &block)
- create_or_update(*args, &block)
- gems/activerecord-6.0.0/lib/active_record/persistence.rb
- def save!(*args, &block)
- create_or_update(*args, &block) || raise(RecordNotSaved.new("Failed to save the record", self))
- gems/activerecord-6.0.0/lib/active_record/transactions.rb
- def before_commit(*args, &block) # :nodoc:
- set_callback(:before_commit, :before, *args, &block)
- gems/activerecord-6.0.0/lib/active_record/transactions.rb
- def after_commit(*args, &block)
- set_callback(:commit, :after, *args, &block)
- gems/activerecord-6.0.0/lib/active_record/transactions.rb
- def after_save_commit(*args, &block)
- set_callback(:commit, :after, *args, &block)
- gems/activerecord-6.0.0/lib/active_record/transactions.rb
- def after_create_commit(*args, &block)
- set_callback(:commit, :after, *args, &block)
- gems/activerecord-6.0.0/lib/active_record/transactions.rb
- def after_update_commit(*args, &block)
- set_callback(:commit, :after, *args, &block)
- gems/activerecord-6.0.0/lib/active_record/transactions.rb
- def after_destroy_commit(*args, &block)
- set_callback(:commit, :after, *args, &block)
- gems/activerecord-6.0.0/lib/active_record/transactions.rb
- def after_rollback(*args, &block)
- set_callback(:rollback, :after, *args, &block)
- gems/activerecord-6.0.0/lib/active_record/transactions.rb
- def before_commit_without_transaction_enrollment(*args, &block) # :nodoc:
- set_callback(:before_commit_without_transaction_enrollment, :before, *args, &block)
- gems/activerecord-6.0.0/lib/active_record/transactions.rb
- def after_commit_without_transaction_enrollment(*args, &block) # :nodoc:
- set_callback(:commit_without_transaction_enrollment, :after, *args, &block)
- gems/activerecord-6.0.0/lib/active_record/transactions.rb
- def after_rollback_without_transaction_enrollment(*args, &block) # :nodoc:
- set_callback(:rollback_without_transaction_enrollment, :after, *args, &block)
- gems/activerecord-6.0.0/lib/active_record/type/hash_lookup_type_map.rb
- def perform_fetch(type, *args, &block)
- @mapping.fetch(type, block).call(type, *args)
- gems/activerecord-6.0.0/lib/active_record/type/adapter_specific_registry.rb
- def find_registration(symbol, *args)
- .select { |registration| registration.matches?(symbol, *args) }
- gems/activerecord-6.0.0/lib/active_record/type/type_map.rb
- def lookup(lookup_key, *args)
- fetch(lookup_key, *args) { Type.default_value }
- gems/activerecord-6.0.0/lib/active_record/type/type_map.rb
- def fetch(lookup_key, *args, &block)
- perform_fetch(lookup_key, *args, &block)
- gems/activerecord-6.0.0/lib/active_record/type/type_map.rb
- def perform_fetch(lookup_key, *args)
- matching_pair.last.call(lookup_key, *args)
- gems/activerecord-6.0.0/lib/active_record/dynamic_matchers.rb
- def method_missing(name, *arguments, &block)
- send(name, *arguments, &block)
- gems/activerecord-6.0.0/lib/active_record/core.rb
- def find_by!(*args) # :nodoc:
- find_by(*args) || raise(RecordNotFound.new("Couldn't find #{name}", name))
- gems/activerecord-6.0.0/lib/active_record/association_relation.rb
- def build(*args, &block)
- scoping { @association.build(*args, &block) }
- gems/activerecord-6.0.0/lib/active_record/association_relation.rb
- def create(*args, &block)
- scoping { @association.create(*args, &block) }
- gems/activerecord-6.0.0/lib/active_record/association_relation.rb
- def create!(*args, &block)
- scoping { @association.create!(*args, &block) }
- gems/activerecord-6.0.0/lib/active_record/connection_adapters/abstract_adapter.rb
- def self.build_read_query_regexp(*parts) # :nodoc:
- Regexp.union(*parts)
- gems/activerecord-6.0.0/lib/active_record/connection_adapters/abstract/database_statements.rb
- def truncate_tables(*table_names) # :nodoc:
- Array(build_truncate_statements(*table_names)).each do |sql|
- gems/activerecord-6.0.0/lib/active_record/connection_adapters/abstract/schema_statements.rb
- def create_table_definition(*args)
- TableDefinition.new(self, *args)
- gems/activerecord-6.0.0/lib/active_record/connection_adapters/abstract/schema_definitions.rb
- def remove(*column_names)
- @base.remove_columns(name, *column_names)
- gems/activerecord-6.0.0/lib/active_record/connection_adapters/abstract/schema_definitions.rb
- def foreign_key(*args)
- @base.add_foreign_key(name, *args)
- gems/activerecord-6.0.0/lib/active_record/connection_adapters/abstract/schema_definitions.rb
- def remove_foreign_key(*args)
- @base.remove_foreign_key(name, *args)
- gems/activerecord-6.0.0/lib/active_record/connection_adapters/abstract/schema_definitions.rb
- def foreign_key_exists?(*args)
- @base.foreign_key_exists?(name, *args)
- gems/activerecord-6.0.0/lib/active_record/connection_adapters/abstract/transaction.rb
- def initialize(connection, savepoint_name, parent_transaction, *args)
- super(connection, *args)
- gems/activerecord-6.0.0/lib/active_record/connection_adapters/sqlite3/schema_statements.rb
- def create_table_definition(*args)
- SQLite3::TableDefinition.new(self, *args)
- gems/activerecord-6.0.0/lib/active_record/connection_adapters/postgresql/schema_statements.rb
- def create_table_definition(*args)
- PostgreSQL::TableDefinition.new(self, *args)
- gems/activerecord-6.0.0/lib/active_record/connection_adapters/mysql/schema_statements.rb
- def create_table_definition(*args)
- MySQL::TableDefinition.new(self, *args)
- gems/activerecord-6.0.0/lib/active_record/migration/command_recorder.rb
- def record(*command, &block)
- @commands << inverse_of(*command, &block)
- gems/activerecord-6.0.0/lib/active_record/migration/command_recorder.rb
- def method_missing(method, *args, &block)
- delegate.public_send(method, *args, &block)
- gems/activerecord-6.0.0/lib/active_record/associations/collection_association.rb
- def find(*args)
- result = find_by_scan(*args)
- gems/activerecord-6.0.0/lib/active_record/associations/collection_association.rb
- def transaction(*args)
- reflection.klass.transaction(*args) do
- gems/activerecord-6.0.0/lib/active_record/associations/collection_proxy.rb
- def find(*args)
- @association.find(*args)
- gems/activerecord-6.0.0/lib/active_record/associations/collection_proxy.rb
- def delete(*records)
- @association.delete(*records).tap { reset_scope }
- gems/activerecord-6.0.0/lib/active_record/associations/collection_proxy.rb
- def destroy(*records)
- @association.destroy(*records).tap { reset_scope }
- gems/activerecord-6.0.0/lib/active_record/associations/collection_proxy.rb
- def pluck(*column_names)
- null_scope? ? scope.pluck(*column_names) : super
- gems/activerecord-6.0.0/lib/active_record/tasks/database_tasks.rb
- def create(*arguments)
- class_for_adapter(configuration["adapter"]).new(*arguments).create
- gems/activerecord-6.0.0/lib/active_record/tasks/database_tasks.rb
- def drop(*arguments)
- class_for_adapter(configuration["adapter"]).new(*arguments).drop
- gems/activerecord-6.0.0/lib/active_record/tasks/database_tasks.rb
- def charset(*arguments)
- class_for_adapter(configuration["adapter"]).new(*arguments).charset
- gems/activerecord-6.0.0/lib/active_record/tasks/database_tasks.rb
- def collation(*arguments)
- class_for_adapter(configuration["adapter"]).new(*arguments).collation
- gems/activerecord-6.0.0/lib/active_record/tasks/database_tasks.rb
- def structure_dump(*arguments)
- class_for_adapter(configuration["adapter"]).new(*arguments).structure_dump(filename, structure_dump_flags)
- gems/activerecord-6.0.0/lib/active_record/tasks/database_tasks.rb
- def structure_load(*arguments)
- class_for_adapter(configuration["adapter"]).new(*arguments).structure_load(filename, structure_load_flags)
- gems/activerecord-6.0.0/lib/active_record/migration.rb
- def method_missing(name, *args, &block) #:nodoc:
- nearest_delegate.send(name, *args, &block)
- gems/activerecord-6.0.0/lib/active_record/migration.rb
- def revert(*migration_classes)
- run(*migration_classes.reverse, revert: true) unless migration_classes.empty?
- gems/activerecord-6.0.0/lib/active_record/migration.rb
- def run(*migration_classes)
- revert { run(*migration_classes, direction: dir, revert: true) }
- gems/activerecord-6.0.0/lib/active_record/migration.rb
- def method_missing(method, *arguments, &block)
- connection.send(method, *arguments, &block)
- gems/activerecord-6.0.0/lib/active_record/relation.rb
- def _exec_scope(name, *args, &block) # :nodoc:
- _scoping(_deprecated_spawn(name)) { instance_exec(*args, &block) || self }
- gems/activerecord-6.0.0/lib/active_record/relation.rb
- def touch_all(*names, time: nil)
- update_all klass.touch_attributes_with_time(*names, time: time)
- gems/activerecord-6.0.0/lib/active_record/relation.rb
- def destroy_by(*args)
- where(*args).destroy_all
- gems/activerecord-6.0.0/lib/active_record/relation.rb
- def delete_by(*args)
- where(*args).delete_all
- gems/state_machines-0.5.0/lib/state_machines/macro_methods.rb
- def state_machine(*args, &block)
- StateMachines::Machine.find_or_create(self, *args, &block)
- gems/state_machines-0.5.0/lib/state_machines/machine.rb
- def define_helper(scope, method, *args, &block)
- helper_module.class_eval(method, *args)
- gems/state_machines-0.5.0/lib/state_machines/extensions.rb
- def fire_events(*events)
- self.class.state_machines.fire_events(self, *events)
- gems/state_machines-0.5.0/lib/state_machines/eval_helpers.rb
- def evaluate_method(object, method, *args, &block)
- object.send(method, *args, &block)
- gems/state_machines-0.5.0/lib/state_machines/state.rb
- def call(object, method, *args, &block)
- object.send(method, *args, &block)
- gems/state_machines-0.5.0/lib/state_machines/event.rb
- def fire(object, *args)
- transition.perform(*args)
- gems/state_machines-0.5.0/lib/state_machines/state_context.rb
- def method_missing(*args, &block)
- machine.owner_class.send(*args, &block)
- gems/state_machines-0.5.0/lib/state_machines/callback.rb
- def call(object, context = {}, *args, &block)
- run_methods(object, context, 0, *args, &block)
- gems/state_machines-0.5.0/lib/state_machines/callback.rb
- def run_methods(object, context = {}, index = 0, *args, &block)
- evaluate_method(object, current_method, *args) do
- gems/actionview-6.0.0/lib/action_view/path_set.rb
- def find(*args)
- find_all(*args).first || raise(MissingTemplate.new(self, *args))
- gems/actionview-6.0.0/lib/action_view/path_set.rb
- def exists?(path, prefixes, *args)
- find_all(path, prefixes, *args).any?
- gems/actionview-6.0.0/lib/action_view/test_case.rb
- def method_missing(selector, *args)
- @controller.__send__(selector, *args)
- gems/actionview-6.0.0/lib/action_view/helpers/text_helper.rb
- def cycle(first_value, *values)
- cycle = set_cycle(name, Cycle.new(*values))
- gems/actionview-6.0.0/lib/action_view/helpers/atom_feed_helper.rb
- def method_missing(method, *arguments, &block)
- @xml.__send__(method, *arguments) do
- gems/actionview-6.0.0/lib/action_view/helpers/rendering_helper.rb
- def _layout_for(*args, &block)
- capture(*args, &block)
- gems/actionview-6.0.0/lib/action_view/helpers/capture_helper.rb
- def capture(*args)
- buffer = with_output_buffer { value = yield(*args) }
- gems/actionview-6.0.0/lib/action_view/helpers/tag_helper.rb
- def method_missing(called, *args, &block)
- tag_string(called, *args, &block)
- gems/actionview-6.0.0/lib/action_view/helpers/translation_helper.rb
- def localize(*args)
- I18n.localize(*args)
- gems/representable-3.0.4/lib/representable/xml.rb
- def from_xml(doc, *args)
- node = parse_xml(doc, *args)
- gems/representable-3.0.4/lib/representable/xml.rb
- def to_xml(*args)
- to_node(*args).to_s
- gems/representable-3.0.4/lib/representable/yaml.rb
- def to_yaml(*args)
- doc.children << to_ast(*args)
- gems/representable-3.0.4/lib/representable/json.rb
- def from_json(data, *args)
- from_hash(data, *args)
- gems/representable-3.0.4/lib/representable/json.rb
- def to_json(*args)
- MultiJson.dump to_hash(*args)
- gems/representable-3.0.4/lib/representable/xml/collection.rb
- def update_properties_from(doc, *args)
- super(doc.search("./*"), *args) # pass the list of collection items to Hash::Collection#update_properties_from.
- gems/representable-3.0.4/lib/representable/hash/allow_symbols.rb
- def filter_wrap_for(data, *args)
- super(Conversion.stringify_keys(data), *args)
- gems/representable-3.0.4/lib/representable/hash/allow_symbols.rb
- def update_properties_from(data, *args)
- super(Conversion.stringify_keys(data), *args)
- gems/representable-3.0.4/lib/representable/config.rb
- def wrap_for(represented, *args, &block)
- value = @wrap.(represented, *args)
- gems/representable-3.0.4/lib/representable/definition.rb
- def create_binding(*args)
- self[:binding].call(self, *args)
- gems/representable-3.0.4/lib/representable.rb
- def representation_wrap(*args)
- representable_attrs.wrap_for(represented, *args)
- gems/bson-4.5.0/lib/bson/json.rb
- def to_json(*args)
- as_json.to_json(*args)
- gems/bson-4.5.0/lib/bson/document.rb
- def fetch(key, *args, &block)
- super(key, *args, &block)
- gems/bson-4.5.0/lib/bson/document.rb
- def dig(*keys)
- super(*keys.map{|key| convert_key(key)})
- gems/bson-4.5.0/lib/bson/document.rb
- def slice(*keys)
- super(*keys.map{|key| convert_key(key)})
- gems/bson-4.5.0/lib/bson/regexp.rb
- def method_missing(method, *arguments)
- compile.send(method, *arguments)
- gems/bundler-2.0.2/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb
- def gsub_file(path, flag, *args, &block)
- content.gsub!(flag, *args, &block)
- gems/bundler-2.0.2/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb
- def uncomment_lines(path, flag, *args)
- gsub_file(path, /^(\s*)#[[:blank:]]*(.*#{flag})/, '\1\2', *args)
- gems/bundler-2.0.2/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb
- def comment_lines(path, flag, *args)
- gsub_file(path, /^(\s*)([^#\n]*#{flag})/, '\1# \2', *args)
- gems/bundler-2.0.2/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb
- def capture(*args)
- with_output_buffer { yield(*args) }
- gems/bundler-2.0.2/lib/bundler/vendor/thor/lib/thor/shell/basic.rb
- def prepare_message(message, *color)
- spaces + set_color(message.to_s, *color)
- gems/bundler-2.0.2/lib/bundler/vendor/thor/lib/thor/invocation.rb
- def invoke_command(command, *args) #:nodoc:
- command.run(self, *args)
- gems/bundler-2.0.2/lib/bundler/vendor/thor/lib/thor/invocation.rb
- def invoke_with_padding(*args)
- with_padding { invoke(*args) }
- gems/bundler-2.0.2/lib/bundler/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb
- def fetch(key, *args)
- super(convert_key(key), *args)
- gems/bundler-2.0.2/lib/bundler/vendor/thor/lib/thor/core_ext/io_binary_read.rb
- def binread(file, *args)
- f.read(*args)
- gems/bundler-2.0.2/lib/bundler/vendor/thor/lib/thor/parser/arguments.rb
- def self.parse(*args)
- new(*args).parse(to_parse)
- gems/bundler-2.0.2/lib/bundler/vendor/thor/lib/thor/group.rb
- def _invoke_for_class_method(klass, command = nil, *args, &block) #:nodoc:
- invoke klass, command, *args
- gems/bundler-2.0.2/lib/bundler/lazy_specification.rb
- def respond_to?(*args)
- super || @specification ? @specification.respond_to?(*args) : nil
- gems/bundler-2.0.2/lib/bundler/lazy_specification.rb
- def method_missing(method, *args, &blk)
- @specification.send(method, *args, &blk)
- gems/bundler-2.0.2/lib/bundler/plugin.rb
- def hook(event, *args, &arg_blk)
- @hooks_by_event[event].each {|blk| blk.call(*args, &arg_blk) }
- gems/bundler-2.0.2/lib/bundler/shared_helpers.rb
- def find_file(*names)
- search_up(*names) do |filename|
- gems/bundler-2.0.2/lib/bundler/shared_helpers.rb
- def find_directory(*names)
- search_up(*names) do |dirname|
- gems/bundler-2.0.2/lib/bundler/rubygems_gem_installer.rb
- def self.at(*args)
- new(*args)
- gems/bundler-2.0.2/lib/bundler/cli.rb
- def self.deprecated_option(*args, &blk)
- method_option(*args, &blk)
- gems/bundler-2.0.2/lib/bundler/plugin/api.rb
- def tmp(*names)
- Bundler.tmp(["plugin", *names].join("-"))
- gems/bundler-2.0.2/lib/bundler/plugin/api.rb
- def method_missing(name, *args, &blk)
- return Bundler.send(name, *args, &blk) if Bundler.respond_to?(name)
- gems/bundler-2.0.2/lib/bundler/plugin/dsl.rb
- def plugin(name, *args)
- _gem(name, *args)
- gems/bundler-2.0.2/lib/bundler/dep_proxy.rb
- def method_missing(*args, &blk)
- @dep.send(*args, &blk)
- gems/bundler-2.0.2/lib/bundler/installer/parallel_installer.rb
- def self.call(*args)
- new(*args).call
- gems/bundler-2.0.2/lib/bundler/cli/exec.rb
- def kernel_exec(*args)
- Kernel.exec(*args)
- gems/bundler-2.0.2/lib/bundler/remote_specification.rb
- def method_missing(method, *args, &blk)
- _remote_specification.send(method, *args, &blk)
- gems/bundler-2.0.2/lib/bundler/ui/shell.rb
- def add_color(string, *color)
- @shell.set_color(string, *color)
- gems/bundler-2.0.2/lib/bundler.rb
- def setup(*groups)
- load.setup(*groups)
- gems/bundler-2.0.2/lib/bundler.rb
- def require(*groups)
- setup(*groups).require(*groups)
- gems/bundler-2.0.2/lib/bundler.rb
- def clean_system(*args)
- with_clean_env { Kernel.system(*args) }
- gems/bundler-2.0.2/lib/bundler.rb
- def clean_exec(*args)
- with_clean_env { Kernel.exec(*args) }
- gems/rspec-support-3.8.2/lib/rspec/support/spec/shell_out.rb
- def shell_out(*command)
- stdout, stderr, status = Open3.capture3(*command)
- gems/rspec-support-3.8.2/lib/rspec/support/spec/shell_out.rb
- def shell_out(*command)
- Open3.popen3(*command) do |_in, out, err|
- gems/rspec-support-3.8.2/lib/rspec/support/spec/shell_out.rb
- def run_ruby_with_current_load_path(ruby_command, *flags)
- "-e", ruby_command, *flags
- gems/rspec-support-3.8.2/lib/rspec/support/spec/stderr_splitter.rb
- def method_missing(name, *args, &block)
- @output_tracker.__send__(name, *args, &block) if @output_tracker.respond_to?(name)
- gems/rspec-support-3.8.2/lib/rspec/support/spec/stderr_splitter.rb
- def reopen(*args)
- @orig_stderr.reopen(*args)
- gems/rspec-support-3.8.2/lib/rspec/support/differ.rb
- def any_multiline_strings?(*args)
- all_strings?(*args) && safely_flatten(args).any? { |a| multiline?(a) }
- gems/rspec-support-3.8.2/lib/rspec/support/method_signature_verifier.rb
- def split_args(*args)
- super(*args)
- gems/rspec-support-3.8.2/lib/rspec/support/method_signature_verifier.rb
- def valid_non_kw_args?(*args)
- @signature.valid_non_kw_args?(*args)
- gems/parallel-1.17.0/lib/parallel.rb
- def any?(*args, &block)
- !each(*args) { |*a| raise Parallel::Kill if block.call(*a) }
- gems/parallel-1.17.0/lib/parallel.rb
- def all?(*args, &block)
- !!each(*args) { |*a| raise Parallel::Kill unless block.call(*a) }
- gems/parallel-1.17.0/lib/parallel.rb
- def flat_map(*args, &block)
- map(*args, &block).flatten(1)
- gems/mocha-1.9.0/lib/mocha/yield_parameters.rb
- def add(*parameters)
- @parameter_groups << SingleYield.new(*parameters)
- gems/mocha-1.9.0/lib/mocha/yield_parameters.rb
- def multiple_add(*parameter_groups)
- @parameter_groups << MultipleYields.new(*parameter_groups)
- gems/mocha-1.9.0/lib/mocha/parameter_matchers/optionally.rb
- def optionally(*matchers)
- Optionally.new(*matchers)
- gems/mocha-1.9.0/lib/mocha/parameter_matchers/includes.rb
- def includes(*items)
- Includes.new(*items)
- gems/mocha-1.9.0/lib/mocha/parameter_matchers/all_of.rb
- def all_of(*matchers)
- AllOf.new(*matchers)
- gems/mocha-1.9.0/lib/mocha/parameter_matchers/any_of.rb
- def any_of(*matchers)
- AnyOf.new(*matchers)
- gems/mocha-1.9.0/lib/mocha/return_values.rb
- def self.build(*values)
- new(*values.map { |value| SingleReturnValue.new(value) })
- gems/mocha-1.9.0/lib/mocha/expectation_list.rb
- def match(method_name, *arguments)
- matching_expectations(method_name, *arguments).first
- gems/mocha-1.9.0/lib/mocha/expectation_list.rb
- def match_allowing_invocation(method_name, *arguments)
- matching_expectations(method_name, *arguments).detect(&:invocations_allowed?)
- gems/mocha-1.9.0/lib/mocha/expectation_list.rb
- def matching_expectations(method_name, *arguments)
- @expectations.select { |e| e.match?(method_name, *arguments) }
- gems/mocha-1.9.0/lib/mocha/expectation.rb
- def yields(*parameters)
- @yield_parameters.add(*parameters)
- gems/mocha-1.9.0/lib/mocha/expectation.rb
- def multiple_yields(*parameter_groups)
- @yield_parameters.multiple_add(*parameter_groups)
- gems/mocha-1.9.0/lib/mocha/expectation.rb
- def returns(*values)
- @return_values += ReturnValues.build(*values)
- gems/mocha-1.9.0/lib/mocha/mockery.rb
- def verify(*args)
- instance.verify(*args)
- gems/mocha-1.9.0/lib/mocha/mock.rb
- def method_missing(symbol, *arguments, &block)
- if (matching_expectation_allowing_invocation = all_expectations.match_allowing_invocation(symbol, *arguments))
- gems/actionmailbox-6.0.0/lib/action_mailbox/test_helper.rb
- def receive_inbound_email_from_fixture(*args)
- create_inbound_email_from_fixture(*args).tap(&:route)
- gems/actionmailbox-6.0.0/lib/action_mailbox/test_helper.rb
- def receive_inbound_email_from_source(*args)
- create_inbound_email_from_source(*args).tap(&:route)
- gems/actionmailbox-6.0.0/lib/action_mailbox/callbacks.rb
- def before_processing(*methods, &block)
- set_callback(:process, :before, *methods, &block)
- gems/actionmailbox-6.0.0/lib/action_mailbox/callbacks.rb
- def after_processing(*methods, &block)
- set_callback(:process, :after, *methods, &block)
- gems/actionmailbox-6.0.0/lib/action_mailbox/callbacks.rb
- def around_processing(*methods, &block)
- set_callback(:process, :around, *methods, &block)
- gems/faker-2.2.2/lib/faker/default/driving_licence.rb
- def uk_driving_licence(*args)
- british_driving_licence(*args)
- gems/faker-2.2.2/lib/helpers/unique_generator.rb
- def method_missing(name, *arguments)
- result = @generator.public_send(name, *arguments)
- gems/faker-2.2.2/lib/faker.rb
- def translate(*args)
- I18n.translate(*args.push(opts))
- gems/multi_json-1.13.1/lib/multi_json/options.rb
- def load_options(*args)
- defined?(@load_options) && get_options(@load_options, *args) || default_load_options
- gems/multi_json-1.13.1/lib/multi_json/options.rb
- def dump_options(*args)
- defined?(@dump_options) && get_options(@dump_options, *args) || default_dump_options
- gems/multi_json-1.13.1/lib/multi_json/options.rb
- def get_options(options, *args)
- options.arity == 0 ? options[] : options[*args]
- gems/msgpack-1.3.1/lib/msgpack/factory.rb
- def dump(v, *rest)
- packer = packer(*rest)
- gems/msgpack-1.3.1/lib/msgpack.rb
- def pack(v, *rest)
- packer = DefaultFactory.packer(*rest)
- gems/sentry-raven-2.11.1/lib/raven/breadcrumbs/logger.rb
- def add(*args)
- add_breadcrumb(*args)
- gems/sentry-raven-2.11.1/lib/raven/breadcrumbs/logger.rb
- def add_with_raven(*args)
- add_breadcrumb(*args)
- gems/sentry-raven-2.11.1/lib/raven/interfaces/http.rb
- def initialize(*arguments)
- super(*arguments)
- gems/sentry-raven-2.11.1/lib/raven/interfaces/stack_trace.rb
- def initialize(*arguments)
- super(*arguments)
- gems/sentry-raven-2.11.1/lib/raven/interfaces/stack_trace.rb
- def to_hash(*args)
- data = super(*args)
- gems/sentry-raven-2.11.1/lib/raven/interfaces/stack_trace.rb
- def initialize(*arguments)
- super(*arguments)
- gems/sentry-raven-2.11.1/lib/raven/interfaces/stack_trace.rb
- def to_hash(*args)
- data = super(*args)
- gems/sentry-raven-2.11.1/lib/raven/interfaces/exception.rb
- def to_hash(*args)
- data = super(*args)
- gems/sentry-raven-2.11.1/lib/raven/interfaces/message.rb
- def initialize(*arguments)
- super(*arguments)
- gems/sentry-raven-2.11.1/lib/raven/interfaces/single_exception.rb
- def to_hash(*args)
- data = super(*args)
- gems/fog-brightbox-0.16.1/lib/fog/brightbox/compute.rb
- def request(*args)
- authenticated_request(*args)
- gems/json-1.8.6/lib/json/add/date.rb
- def to_json(*args)
- as_json.to_json(*args)
- gems/json-1.8.6/lib/json/add/date_time.rb
- def to_json(*args)
- as_json.to_json(*args)
- gems/json-1.8.6/lib/json/add/ostruct.rb
- def to_json(*args)
- as_json.to_json(*args)
- gems/json-1.8.6/lib/json/add/struct.rb
- def to_json(*args)
- as_json.to_json(*args)
- gems/json-1.8.6/lib/json/add/symbol.rb
- def to_json(*a)
- as_json.to_json(*a)
- gems/json-1.8.6/lib/json/add/exception.rb
- def to_json(*args)
- as_json.to_json(*args)
- gems/json-1.8.6/lib/json/add/range.rb
- def to_json(*args)
- as_json.to_json(*args)
- gems/json-1.8.6/lib/json/add/time.rb
- def to_json(*args)
- as_json.to_json(*args)
- gems/json-1.8.6/lib/json/generic_object.rb
- def dump(obj, *args)
- ::JSON.dump(obj, *args)
- gems/json-1.8.6/lib/json/generic_object.rb
- def to_json(*a)
- as_json.to_json(*a)
- gems/json-1.8.6/lib/json/pure/generator.rb
- def to_json_raw(*args)
- to_json_raw_object.to_json(*args)
- gems/xpath-3.2.0/lib/xpath/dsl.rb
- def function(name, *arguments)
- Expression.new(:function, name, *arguments)
- gems/xpath-3.2.0/lib/xpath/dsl.rb
- def method(name, *arguments)
- Expression.new(:function, name, current, *arguments)
- gems/xpath-3.2.0/lib/xpath/dsl.rb
- def next_sibling(*expressions)
- axis(:"following-sibling")[1].axis(:self, *expressions)
- gems/xpath-3.2.0/lib/xpath/dsl.rb
- def previous_sibling(*expressions)
- axis(:"preceding-sibling")[1].axis(:self, *expressions)
- gems/xpath-3.2.0/lib/xpath/union.rb
- def method_missing(*args) # rubocop:disable Style/MethodMissingSuper, Style/MissingRespondToMissing
- XPath::Union.new(*arguments.map { |e| e.send(*args) })
- gems/rouge-2.0.7/lib/rouge/theme.rb
- def palette(*a)
- self.class.palette(*a) end
- gems/rouge-2.0.7/lib/rouge/cli.rb
- def error!(*a)
- self.class.error!(*a)
- gems/open4-1.3.4/lib/open4.rb
- def popen4(*cmd, &b)
- exec(*cmd)
- gems/open4-1.3.4/lib/open4.rb
- def popen4ext(closefds=false, *cmd, &b)
- exec(*cmd)
- gems/open4-1.3.4/lib/open4.rb
- def new_thread *a, &b
- Thread.new(*a) do |*_a|
- gems/open4-1.3.4/lib/open4.rb
- def spawn arg, *argv
- popen4ext(closefds, *argv) do |c, i, o, e|
- gems/excon-0.66.0/lib/excon/test/server.rb
- def open_process(*args)
- @pid, @write, @read, @error = IO.popen4(*args)
- gems/excon-0.66.0/lib/excon/headers.rb
- def values_at(*keys)
- @downcased.values_at(*keys.map {|key| key.to_s.downcase})
- gems/mail-2.7.1/lib/mail/multibyte/chars.rb
- def method_missing(method, *args, &block)
- @wrapped_string.__send__(method, *args, &block)
- gems/mail-2.7.1/lib/mail/multibyte/chars.rb
- def split(*args)
- @wrapped_string.split(*args).map { |i| i.mb_chars }
- gems/mail-2.7.1/lib/mail/multibyte/chars.rb
- def slice(*args)
- cps = Unicode.u_unpack(@wrapped_string).slice(*args)
- gems/mail-2.7.1/lib/mail/parts_list.rb
- def initialize(*args)
- @parts = Array.new(*args)
- gems/mail-2.7.1/lib/mail/elements/received_element.rb
- def to_s(*args)
- "#{info}; #{date_time.to_s(*args)}"
- gems/mail-2.7.1/lib/mail/version_specific/ruby_1_8.rb
- def Ruby18.string_byteslice(str, *args)
- str.slice(*args)
- gems/mail-2.7.1/lib/mail/version_specific/ruby_1_9.rb
- def Ruby19.string_byteslice(str, *args)
- str.byteslice(*args)
- gems/mail-2.7.1/lib/mail/version_specific/ruby_1_9.rb
- def Ruby19.string_byteslice(str, *args)
- str.unpack('C*').slice(*args).pack('C*').force_encoding(str.encoding)
- gems/mail-2.7.1/lib/mail/field.rb
- def method_missing(name, *args, &block)
- field.send(name, *args, &block)
- gems/mail-2.7.1/lib/mail/indifferent_hash.rb
- def fetch(key, *extras)
- super(convert_key(key), *extras)
- gems/mail-2.7.1/lib/mail/mail.rb
- def self.find(*args, &block)
- retriever_method.find(*args, &block)
- gems/mail-2.7.1/lib/mail/mail.rb
- def self.find_and_delete(*args, &block)
- retriever_method.find_and_delete(*args, &block)
- gems/mail-2.7.1/lib/mail/mail.rb
- def self.first(*args, &block)
- retriever_method.first(*args, &block)
- gems/mail-2.7.1/lib/mail/mail.rb
- def self.last(*args, &block)
- retriever_method.last(*args, &block)
- gems/mail-2.7.1/lib/mail/mail.rb
- def self.all(*args, &block)
- retriever_method.all(*args, &block)
- gems/mail-2.7.1/lib/mail/mail.rb
- def self.delete_all(*args, &block)
- retriever_method.delete_all(*args, &block)
- gems/aws-sdk-core-3.67.0/lib/aws-sdk-core/xml/builder.rb
- def node(name, ref, *args, &block)
- @builder.node(name, *args, &block)
- gems/aws-sdk-core-3.67.0/lib/aws-sdk-core/structure.rb
- def new(*args)
- struct = Struct.new(*args)
- gems/aws-sdk-core-3.67.0/lib/seahorse/client/net_http/connection_pool.rb
- def request(*args, &block)
- @http.request(*args, &block)
- gems/aws-sdk-core-3.67.0/lib/seahorse/client/handler_builder.rb
- def handle_request(*args, &block)
- handler(*args) do |context|
- gems/aws-sdk-core-3.67.0/lib/seahorse/client/handler_builder.rb
- def handle_response(*args, &block)
- handler(*args) do |context|
- gems/aws-sdk-core-3.67.0/lib/seahorse/client/handler_builder.rb
- def handle(*args, &block)
- handler_class = block ? handler_for(*args, &block) : args.first
- gems/aws-sdk-core-3.67.0/lib/seahorse/client/configuration.rb
- def call(*args)
- @block.call(*args)
- gems/aws-sdk-core-3.67.0/lib/seahorse/client/http/headers.rb
- def values_at(*keys)
- @data.values_at(*keys.map{ |key| key.to_s.downcase })
- gems/aws-sdk-core-3.67.0/lib/seahorse/client/http/response.rb
- def emit(event_name, *args)
- @listeners[event_name].each { |listener| listener.call(*args) }
- gems/compass-import-once-1.0.5/lib/compass/import-once/importer.rb
- def find_relative(uri, base, options, *args)
- maybe_replace_with_dummy_engine(super(uri, base, options, *args), options, force_import)
- gems/compass-import-once-1.0.5/lib/compass/import-once/importer.rb
- def find(uri, options, *args)
- maybe_replace_with_dummy_engine(super(uri, options, *args), options, force_import)
- gems/rb-inotify-0.10.0/lib/rb-inotify/notifier.rb
- def watch(path, *flags, &callback)
- return Watcher.new(self, path, *flags, &callback) unless flags.include?(:recursive)
- gems/builder-3.2.3/lib/builder/xmlbase.rb
- def method_missing(sym, *args, &block)
- tag!(sym, *args, &block)
- gems/diff-lcs-1.3/lib/diff/lcs/change.rb
- def initialize(*args)
- @action, @position, @element = *args
- gems/diff-lcs-1.3/lib/diff/lcs/change.rb
- def initialize(*args)
- @action, @old_position, @old_element, @new_position, @new_element = *args
- gems/ffi-yajl-2.3.1/lib/ffi_yajl/encoder.rb
- def self.encode(obj, *args)
- new(*args).encode(obj)
- gems/ffi-yajl-2.3.1/lib/ffi_yajl/parser.rb
- def self.parse(obj, *args)
- new(*args).parse(obj)
- gems/faraday_middleware-0.13.1/lib/faraday_middleware/rack_compatible.rb
- def initialize(app, rack_handler, *args)
- @rack = rack_handler.new(compatible_app, *args)
- gems/rdoc-6.2.0/lib/rdoc/servlet.rb
- def self.get_instance server, *options # :nodoc:
- new server, stores, @cache, *options
- gems/rdoc-6.2.0/lib/rdoc/generator/json_index.rb
- def debug_msg *msg
- $stderr.puts(*msg)
- gems/rdoc-6.2.0/lib/rdoc/generator/darkfish.rb
- def debug_msg *msg
- $stderr.puts(*msg)
- gems/rdoc-6.2.0/lib/rdoc/markup/indented_paragraph.rb
- def initialize indent, *parts
- super(*parts)
- gems/rdoc-6.2.0/lib/rdoc/markdown.rb
- def external_invoke(other, rule, *args)
- if val = __send__(rule, *args)
- gems/rdoc-6.2.0/lib/rdoc/markdown.rb
- def apply_with_args(rule, *args)
- ans = __send__ rule, *args
- gems/rdoc-6.2.0/lib/rdoc/markdown/literals.rb
- def external_invoke(other, rule, *args)
- if val = __send__(rule, *args)
- gems/rdoc-6.2.0/lib/rdoc/markdown/literals.rb
- def apply_with_args(rule, *args)
- ans = __send__ rule, *args
- gems/rdoc-6.2.0/lib/rdoc/parser/ruby_tools.rb
- def get_tk_until(*tokens)
- when *tokens then
- gems/rdoc-6.2.0/lib/rdoc/ri/paths.rb
- def self.each system = true, site = true, home = true, gems = :latest, *extra_dirs # :yields: directory, type
- return enum_for __method__, system, site, home, gems, *extra_dirs unless
- gems/rdoc-6.2.0/lib/rdoc/ri/paths.rb
- def self.path(system = true, site = true, home = true, gems = :latest, *extra_dirs)
- path = raw_path system, site, home, gems, *extra_dirs
- gems/rdoc-6.2.0/lib/rdoc/ri/paths.rb
- def self.raw_path(system, site, home, gems, *extra_dirs)
- each(system, site, home, gems, *extra_dirs) do |dir, type|
- gems/hashie-3.6.0/lib/hashie/hash.rb
- def to_json(*args)
- to_hash.to_json(*args)
- gems/hashie-3.6.0/lib/hashie/mash.rb
- def fetch(key, *args)
- super(convert_key(key), *args)
- gems/hashie-3.6.0/lib/hashie/mash.rb
- def values_at(*keys)
- super(*keys.map { |key| convert_key(key) })
- gems/hashie-3.6.0/lib/hashie/mash.rb
- def dig(*keys)
- super(*keys.map { |key| convert_key(key) })
- gems/hashie-3.6.0/lib/hashie/rash.rb
- def method_missing(*args, &block)
- @hash.send(*args, &block) || super
- gems/hashie-3.6.0/lib/hashie/extensions/indifferent_access.rb
- def indifferent_fetch(key, *args, &block)
- regular_fetch convert_key(key), *args, &block
- gems/hashie-3.6.0/lib/hashie/clash.rb
- def id(*args) #:nodoc:
- method_missing(:id, *args)
- gems/hashie-3.6.0/lib/hashie/clash.rb
- def method_missing(name, *args) #:nodoc:
- merge_store(name, *args)
- gems/axiom-types-0.1.1/lib/axiom/types/type.rb
- def self.new(*args, &block)
- type.constraint(*args)
- gems/tilt-2.0.9/lib/tilt.rb
- def self.register(template_class, *extensions)
- default_mapping.register(template_class, *extensions)
- gems/tilt-2.0.9/lib/tilt.rb
- def self.register_lazy(class_name, file, *extensions)
- default_mapping.register_lazy(class_name, file, *extensions)
- gems/tilt-2.0.9/lib/tilt.rb
- def self.prefer(template_class, *extensions)
- register(template_class, *extensions)
- gems/terrapin-0.6.0/lib/terrapin/command_line/runners/posix_runner.rb
- def spawn(*args)
- POSIX::Spawn.spawn(*args)
- gems/terrapin-0.6.0/lib/terrapin/command_line/runners/process_runner.rb
- def spawn(*args)
- Process.spawn(*args)
- gems/sass-3.4.25/lib/sass/exec/base.rb
- def puts(*args)
- Kernel.puts(*args)
- gems/sass-3.4.25/lib/sass/plugin.rb
- def method_missing(method, *args, &block)
- compiler.send(method, *args, &block)
- gems/sass-3.4.25/lib/sass/tree/visitors/check_nesting.rb
- def try_send(method, *args)
- send(method, *args)
- gems/sass-3.4.25/lib/sass/tree/node.rb
- def balance(*args)
- res = Sass::Shared.balance(*args)
- gems/sass-3.4.25/lib/sass/plugin/rails.rb
- def process(*args)
- sass_old_process(*args)
- gems/sass-3.4.25/lib/sass/plugin/compiler.rb
- def create_listener(*args, &block)
- Listen::Listener.new(*args, &block)
- gems/sass-3.4.25/lib/sass/scss/parser.rb
- def sass_script(*args)
- result = parser.send(*args)
- gems/sass-3.4.25/lib/sass/util.rb
- def ordered_hash(*pairs_or_hash)
- (pairs_or_hash.is_a?(NormalizedMap) ? NormalizedMap : OrderedHash)[*pairs_or_hash.flatten(1)]
- gems/sass-3.4.25/lib/sass/util/cross_platform_random.rb
- def rand(*args)
- return @random.rand(*args) if @random
- gems/sass-3.4.25/lib/sass/util/normalized_map.rb
- def method_missing(method, *args, &block)
- @map.send(method, *args, &block)
- gems/sass-3.4.25/lib/sass/script/parser.rb
- def assert_toks(*names)
- t = try_toks(*names)
- gems/sassc-2.2.0/lib/sassc/native.rb
- def self.attach_function(*args)
- super(*args)
- gems/sassc-2.2.0/lib/sassc/native/native_context_api.rb
- def self.context_get_included_files(*args)
- return_string_array _context_get_included_files(*args)
- gems/sassc-2.2.0/lib/sassc/util/normalized_map.rb
- def method_missing(method, *args, &block)
- @map.send(method, *args, &block)
- gems/rspec_junit_formatter-0.4.1/lib/rspec_junit_formatter/rspec3.rb
- def self.wrap(*args)
- new.wrap(*args)
- gems/multipart-post-2.0.0/lib/composite_io.rb
- def method_missing(*args)
- @io.send(*args)
- gems/fog-cloudatcost-0.4.0/lib/fog/cloudatcost/models/server.rb
- def perform_action(action, *args)
- response = service.send(action, sid, *args)
- gems/web-console-4.0.1/lib/web_console/testing/erb_precompiler.rb
- def method_missing(name, *args, &block)
- @view.send(name, *args, &block)
- gems/arel-9.0.0/lib/arel/nodes/table_alias.rb
- def type_cast_for_database(*args)
- relation.type_cast_for_database(*args)
- gems/arel-9.0.0/lib/arel/visitors/where_sql.rb
- def initialize(inner_visitor, *args, &block)
- super(*args, &block)
- gems/arel-9.0.0/lib/arel/table.rb
- def group *columns
- from.group(*columns)
- gems/arel-9.0.0/lib/arel/table.rb
- def order *expr
- from.order(*expr)
- gems/arel-9.0.0/lib/arel/table.rb
- def project *things
- from.project(*things)
- gems/arel-9.0.0/lib/arel/predications.rb
- def grouping_any method_id, others, *extras
- nodes = others.map {|expr| send(method_id, expr, *extras)}
- gems/arel-9.0.0/lib/arel/predications.rb
- def grouping_all method_id, others, *extras
- nodes = others.map {|expr| send(method_id, expr, *extras)}
- gems/chef-sugar-5.0.1/lib/chef/sugar/filters.rb
- def method_missing(m, *args, &block)
- resource = @recipe.send(m, *args, &block)
- gems/chef-sugar-5.0.1/lib/chef/sugar/filters.rb
- def method_missing(m, *args, &block)
- new_resource = @recipe.send(m, *args, &block)
- gems/chef-sugar-5.0.1/lib/chef/sugar/core_extensions/string.rb
- def satisfies?(*constraints)
- Chef::Sugar::Constraints::Version.new(dup).satisfies?(*constraints)
- gems/chef-sugar-5.0.1/lib/chef/sugar/node.rb
- def deep_fetch(*keys)
- deep_fetch!(*keys)
- gems/chef-sugar-5.0.1/lib/chef/sugar/node.rb
- def method_missing(m, *args, &block)
- old_method_missing(m, *args, &block)
- gems/chef-sugar-5.0.1/lib/chef/sugar/constraints.rb
- def initialize(*constraints)
- @requirement = Gem::Requirement.new(*constraints)
- gems/chef-sugar-5.0.1/lib/chef/sugar/constraints.rb
- def satisfies?(*constraints)
- Gem::Requirement.new(*constraints).satisfied_by?(@version)
- gems/chef-sugar-5.0.1/lib/chef/sugar/constraints_dsl.rb
- def constraint(*constraints)
- Chef::Sugar::Constraints::Constraint.new(*constraints)
- gems/chef-sugar-5.0.1/lib/chef/sugar/constraints_dsl.rb
- def constraint(*constraints)
- Chef::Sugar::Constraints.constraint(*constraints)
- gems/fog-aws-3.5.2/lib/fog/aws/compute.rb
- def modify_image_attributes(*params)
- modify_image_attribute(*params)
- gems/fog-aws-3.5.2/lib/fog/aws/iam/paged_collection.rb
- def each_entry(*args, &block)
- to_a.each(*args, &block)
- gems/loofah-2.2.3/lib/loofah.rb
- def document(*args, &block)
- Loofah::HTML::Document.parse(*args, &block)
- gems/loofah-2.2.3/lib/loofah.rb
- def fragment(*args, &block)
- Loofah::HTML::DocumentFragment.parse(*args, &block)
- gems/loofah-2.2.3/lib/loofah.rb
- def xml_document(*args, &block)
- Loofah::XML::Document.parse(*args, &block)
- gems/loofah-2.2.3/lib/loofah.rb
- def xml_fragment(*args, &block)
- Loofah::XML::DocumentFragment.parse(*args, &block)
- gems/mongo-2.10.1/lib/mongo/event/publisher.rb
- def publish(event, *args)
- listener.handle(*args)
- gems/mongo-2.10.1/lib/mongo/socket.rb
- def gets(*args)
- handle_errors { @socket.gets(*args) }
- gems/mongo-2.10.1/lib/mongo/socket.rb
- def write(*args)
- handle_errors { @socket.write(*args) }
- gems/chef-config-15.2.20/lib/chef-config/path_helper.rb
- def self.escape_glob(*parts)
- path = cleanpath(join(*parts))
- gems/chef-config-15.2.20/lib/chef-config/path_helper.rb
- def self.escape_glob_dir(*parts)
- path = Pathname.new(join(*parts)).cleanpath.to_s
- gems/chef-config-15.2.20/lib/chef-config/path_helper.rb
- def self.home(*args)
- path = File.join(@@home_dir, *args)
- gems/chef-config-15.2.20/lib/chef-config/path_helper.rb
- def self.all_homes(*args)
- joined_paths = valid_paths.map { |home_path| File.join(home_path, *args) }
- gems/thor-0.19.4/lib/thor/actions/file_manipulation.rb
- def gsub_file(path, flag, *args, &block)
- content.gsub!(flag, *args, &block)
- gems/thor-0.19.4/lib/thor/actions/file_manipulation.rb
- def uncomment_lines(path, flag, *args)
- gsub_file(path, /^(\s*)#[[:blank:]]*(.*#{flag})/, '\1\2', *args)
- gems/thor-0.19.4/lib/thor/actions/file_manipulation.rb
- def comment_lines(path, flag, *args)
- gsub_file(path, /^(\s*)([^#|\n]*#{flag})/, '\1# \2', *args)
- gems/thor-0.19.4/lib/thor/actions/file_manipulation.rb
- def capture(*args)
- with_output_buffer { yield(*args) }
- gems/thor-0.19.4/lib/thor/shell/basic.rb
- def prepare_message(message, *color)
- spaces + set_color(message.to_s, *color)
- gems/thor-0.19.4/lib/thor/invocation.rb
- def invoke_command(command, *args) #:nodoc:
- command.run(self, *args)
- gems/thor-0.19.4/lib/thor/invocation.rb
- def invoke_with_padding(*args)
- with_padding { invoke(*args) }
- gems/thor-0.19.4/lib/thor/core_ext/hash_with_indifferent_access.rb
- def fetch(key, *args)
- super(convert_key(key), *args)
- gems/thor-0.19.4/lib/thor/core_ext/io_binary_read.rb
- def binread(file, *args)
- f.read(*args)
- gems/thor-0.19.4/lib/thor/parser/arguments.rb
- def self.parse(*args)
- new(*args).parse(to_parse)
- gems/thor-0.19.4/lib/thor/group.rb
- def _invoke_for_class_method(klass, command = nil, *args, &block) #:nodoc:
- invoke klass, command, *args
- gems/trollop-2.9.9/lib/trollop.rb
- def initialize(*a, &b)
- cloaker(&b).bind(self).call(*a) if b
- gems/trollop-2.9.9/lib/trollop.rb
- def stop_on(*words)
- @stop_words = [*words].flatten
- gems/trollop-2.9.9/lib/trollop.rb
- def options(args = ARGV, *a, &b)
- @last_parser = Parser.new(*a, &b)
- gems/rainbow-3.0.0/lib/rainbow/ext/string.rb
- def foreground(*color)
- Rainbow(self).foreground(*color)
- gems/rainbow-3.0.0/lib/rainbow/ext/string.rb
- def background(*color)
- Rainbow(self).background(*color)
- gems/brakeman-4.6.1/lib/ruby_parser/bm_sexp.rb
- def method_missing name, *args
- find_node name, *args
- gems/brakeman-4.6.1/lib/ruby_parser/bm_sexp.rb
- def find_and_replace_all *args
- old_fara(*args)
- gems/brakeman-4.6.1/lib/ruby_parser/bm_sexp.rb
- def find_node *args
- old_find_node(*args)
- gems/brakeman-4.6.1/lib/brakeman/processors/lib/render_path.rb
- def join *args
- self.to_a.join(*args)
- gems/dalli-2.7.10/lib/dalli/server.rb
- def request(op, *args)
- send(op, *args)
- gems/dalli-2.7.10/lib/dalli/client.rb
- def perform(*all_args)
- op, key, *args = *all_args
- gems/dotenv-2.7.5/lib/dotenv.rb
- def load(*filenames)
- with(*filenames) do |f|
- gems/dotenv-2.7.5/lib/dotenv.rb
- def load!(*filenames)
- with(*filenames) do |f|
- gems/dotenv-2.7.5/lib/dotenv.rb
- def overload(*filenames)
- with(*filenames) do |f|
- gems/dotenv-2.7.5/lib/dotenv.rb
- def overload!(*filenames)
- with(*filenames) do |f|
- gems/dotenv-2.7.5/lib/dotenv.rb
- def parse(*filenames)
- with(*filenames) do |f|
- gems/will_paginate-3.1.8/lib/will_paginate/core_ext.rb
- def except!(*keys)
- replace(except(*keys))
- gems/will_paginate-3.1.8/lib/will_paginate/view_helpers/action_view.rb
- def paginated_section(*args, &block)
- pagination = will_paginate(*args)
- gems/will_paginate-3.1.8/lib/will_paginate/railtie.rb
- def rescue_from(*args, &block)
- super(*args, &block)
- gems/will_paginate-3.1.8/lib/will_paginate/active_record.rb
- def first(*args)
- rel.first(*args)
- gems/will_paginate-3.1.8/lib/will_paginate/active_record.rb
- def count(*args)
- super(*args)
- gems/image_processing-1.9.3/lib/image_processing/vips.rb
- def set(*args)
- image.tap { |img| img.set(*args) } end
- gems/image_processing-1.9.3/lib/image_processing/vips.rb
- def set_type(*args)
- image.tap { |img| img.set_type(*args) } end
- gems/image_processing-1.9.3/lib/image_processing/vips.rb
- def set_value(*args)
- image.tap { |img| img.set_value(*args) } end
- gems/image_processing-1.9.3/lib/image_processing/vips.rb
- def remove(*args)
- image.tap { |img| img.remove(*args) } end
- gems/image_processing-1.9.3/lib/image_processing/chainable.rb
- def method_missing(name, *args, &block)
- operation(name, *args, &block)
- gems/responders-3.0.0/lib/action_controller/responder.rb
- def self.call(*args)
- new(*args).respond
- gems/vcr-5.0.0/lib/vcr/library_hooks/webmock.rb
- def net_connect_allowed_with_vcr?(*args)
- VCR.turned_on? ? true : net_connect_allowed_without_vcr?(*args)
- gems/vcr-5.0.0/lib/vcr/deprecations.rb
- def stub_with(*adapters)
- hook_into(*adapters)
- gems/vcr-5.0.0/lib/vcr/configuration.rb
- def ignore_hosts(*hosts)
- VCR.request_ignorer.ignore_hosts(*hosts)
- gems/vcr-5.0.0/lib/vcr/configuration.rb
- def unignore_hosts(*hosts)
- VCR.request_ignorer.unignore_hosts(*hosts)
- gems/vcr-5.0.0/lib/vcr/configuration.rb
- def after_http_request(*filters)
- super(*filters.map { |f| request_filter_from(f) })
- gems/vcr-5.0.0/lib/vcr/configuration.rb
- def around_http_request(*filters, &block)
- before_http_request(*filters) do |request|
- gems/vcr-5.0.0/lib/vcr/structs.rb
- def initialize(*args)
- super(*args)
- gems/vcr-5.0.0/lib/vcr/structs.rb
- def method(*args)
- @@object_method.bind(self).call(*args)
- gems/vcr-5.0.0/lib/vcr/structs.rb
- def initialize(*args)
- super(*args)
- gems/vcr-5.0.0/lib/vcr/util/hooks.rb
- def conditionally_invoke(*args)
- return if filters.any? { |f| !call_block(f.to_proc, *args) }
- gems/vcr-5.0.0/lib/vcr/util/hooks.rb
- def invoke_hook(hook_type, *args)
- hook.conditionally_invoke(*args)
- gems/vcr-5.0.0/lib/vcr/util/logger.rb
- def request_summary(*args)
- VCR.configuration.logger.request_summary(*args)
- gems/vcr-5.0.0/lib/vcr/util/logger.rb
- def response_summary(*args)
- VCR.configuration.logger.response_summary(*args)
- gems/vcr-5.0.0/lib/vcr/util/variable_args_block_caller.rb
- def call_block(block, *args)
- block.call(*args)
- gems/activemodel-6.0.0/lib/active_model/errors.rb
- def slice!(*keys)
- @details.slice!(*keys)
- gems/activemodel-6.0.0/lib/active_model/attribute_methods.rb
- def method_missing(method, *args, &block)
- match ? attribute_missing(match, *args, &block) : super
- gems/activemodel-6.0.0/lib/active_model/attribute_methods.rb
- def attribute_missing(match, *args, &block)
- __send__(match.target, match.attr_name, *args, &block)
- gems/activemodel-6.0.0/lib/active_model/validations.rb
- def validate(*args, &block)
- set_callback(:validate, *args, options, &block)
- gems/activemodel-6.0.0/lib/active_model/type/registry.rb
- def lookup(symbol, *args)
- registration = find_registration(symbol, *args)
- gems/activemodel-6.0.0/lib/active_model/type/registry.rb
- def find_registration(symbol, *args)
- registrations.find { |r| r.matches?(symbol, *args) }
- gems/activemodel-6.0.0/lib/active_model/validations/callbacks.rb
- def before_validation(*args, &block)
- set_callback(:validation, :before, *args, options, &block)
- gems/activemodel-6.0.0/lib/active_model/validations/callbacks.rb
- def after_validation(*args, &block)
- set_callback(:validation, :after, *args, options, &block)
- gems/unicorn-5.5.1/lib/unicorn/cgi_wrapper.rb
- def initialize(rack_env, *args)
- super(*args)
- gems/unicorn-5.5.1/lib/unicorn/tee_input.rb
- def read(*args)
- @socket ? tee(super) : @tmp.read(*args)
- gems/sshkit-1.20.0/lib/sshkit/backends/netssh/known_hosts.rb
- def add(*args)
- ::Net::SSH::KnownHosts.add(*args)
- gems/sshkit-1.20.0/lib/sshkit/backends/connection_pool.rb
- def with(connection_factory, *args)
- connection_factory.call(*args)
- gems/sshkit-1.20.0/lib/sshkit/configuration.rb
- def use_format(formatter, *args)
- self.output = klass.new($stdout, *args)
- gems/sinatra-2.0.7/lib/sinatra/base.rb
- def respond_to?(*args)
- super or to_str.respond_to?(*args)
- gems/sinatra-2.0.7/lib/sinatra/base.rb
- def method_missing(*args, &block)
- to_str.send(*args, &block)
- gems/sinatra-2.0.7/lib/sinatra/base.rb
- def redirect(uri, *args)
- halt(*args)
- gems/sinatra-2.0.7/lib/sinatra/base.rb
- def expires(amount, *values)
- cache_control(*values)
- gems/sinatra-2.0.7/lib/sinatra/base.rb
- def error_block!(key, *block_params)
- error_block!(key.superclass, *block_params)
- gems/sinatra-2.0.7/lib/sinatra/base.rb
- def helpers(*extensions, &block)
- include(*extensions) if extensions.any?
- gems/sinatra-2.0.7/lib/sinatra/base.rb
- def new(*args, &bk)
- instance = new!(*args, &bk)
- gems/sinatra-2.0.7/lib/sinatra/base.rb
- def invoke_hook(name, *args)
- extensions.each { |e| e.send(name, *args) if e.respond_to?(name) }
- gems/sinatra-2.0.7/lib/sinatra/base.rb
- def force_encoding(*args)
- settings.force_encoding(*args) end
- gems/sinatra-2.0.7/lib/sinatra/base.rb
- def self.register(*extensions, &block) #:nodoc:
- super(*extensions, &block)
- gems/sinatra-2.0.7/lib/sinatra/base.rb
- def self.register(*extensions, &block)
- Delegator.target.register(*extensions, &block)
- gems/sinatra-2.0.7/lib/sinatra/base.rb
- def self.helpers(*extensions, &block)
- Delegator.target.helpers(*extensions, &block)
- gems/sinatra-2.0.7/lib/sinatra/base.rb
- def self.use(*args, &block)
- Delegator.target.use(*args, &block)
- gems/sinatra-2.0.7/lib/sinatra/indifferent_hash.rb
- def self.[](*args)
- new.merge!(Hash[*args])
- gems/sinatra-2.0.7/lib/sinatra/indifferent_hash.rb
- def initialize(*args)
- super(*args)
- gems/sinatra-2.0.7/lib/sinatra/indifferent_hash.rb
- def default(*args)
- super(*args)
- gems/sinatra-2.0.7/lib/sinatra/indifferent_hash.rb
- def fetch(key, *args)
- super(convert_key(key), *args)
- gems/sinatra-2.0.7/lib/sinatra/indifferent_hash.rb
- def dig(key, *other_keys)
- super(convert_key(key), *other_keys)
- gems/sinatra-2.0.7/lib/sinatra/indifferent_hash.rb
- def fetch_values(*keys)
- super(*keys)
- gems/sinatra-2.0.7/lib/sinatra/indifferent_hash.rb
- def slice(*keys)
- self.class[super(*keys)]
- gems/sinatra-2.0.7/lib/sinatra/indifferent_hash.rb
- def values_at(*keys)
- super(*keys)
- gems/puma-4.1.1/lib/puma/events.rb
- def fire(hook, *args)
- @hooks[hook].each { |t| t.call(*args) }
- gems/puma-4.1.1/lib/puma/minissl.rb
- def read_nonblock(size, *_)
- # *_ is to deal with keyword args that were added
- gems/puma-4.1.1/lib/puma/rack/builder.rb
- def use(middleware, *args, &block)
- @use << proc { |app| middleware.new(app, *args, &block) }
- gems/liquid-4.0.3/lib/liquid/template.rb
- def render!(*args)
- render(*args)
- gems/liquid-4.0.3/lib/liquid/context.rb
- def invoke(method, *args)
- strainer.invoke(method, *args).to_liquid
- gems/liquid-4.0.3/lib/liquid/strainer.rb
- def invoke(method, *args)
- send(method, *args)
- gems/resque-2.0.0/lib/resque/worker.rb
- def run_hook(name, *args)
- args.any? ? hook.call(*args) : hook.call
- gems/resque-2.0.0/lib/resque/failure/multiple.rb
- def initialize(*args)
- @backends = self.class.classes.map {|klass| klass.new(*args)}
- gems/resque-2.0.0/lib/resque/failure/multiple.rb
- def self.count(*args)
- classes.first.count(*args)
- gems/resque-2.0.0/lib/resque/failure/multiple.rb
- def self.all(*args)
- classes.first.all(*args)
- gems/resque-2.0.0/lib/resque/failure/multiple.rb
- def self.each(*args, &block)
- classes.first.each(*args, &block)
- gems/resque-2.0.0/lib/resque/failure/multiple.rb
- def self.clear(*args)
- classes.first.clear(*args)
- gems/resque-2.0.0/lib/resque/failure/multiple.rb
- def self.requeue(*args)
- classes.first.requeue(*args)
- gems/resque-2.0.0/lib/resque/data_store.rb
- def decremet_stat(*args)
- decrement_stat(*args)
- gems/resque-2.0.0/lib/resque/data_store.rb
- def method_missing(sym,*args,&block)
- @redis.send(sym,*args,&block)
- gems/resque-2.0.0/lib/resque.rb
- def enqueue(klass, *args)
- enqueue_to(queue_from_class(klass), klass, *args)
- gems/resque-2.0.0/lib/resque.rb
- def enqueue_to(queue, klass, *args)
- klass.send(hook, *args)
- gems/resque-2.0.0/lib/resque.rb
- def dequeue(klass, *args)
- klass.send(hook, *args)
- gems/tty-spinner-0.9.1/lib/tty/spinner/multi.rb
- def emit(key, *args)
- block.call(*args)
- gems/tty-spinner-0.9.1/lib/tty/spinner.rb
- def emit(name, *args)
- callback.call(*args)
- gems/mustermann-1.0.3/lib/mustermann/caster.rb
- def initialize(*types, &block)
- register(*types, &block)
- gems/mustermann-1.0.3/lib/mustermann/ast/translator.rb
- def t(*args, &block)
- translator.translate(*args, &block)
- gems/mustermann-1.0.3/lib/mustermann/ast/translator.rb
- def self.translate(*types, &block)
- register(*types)
- gems/mustermann-1.0.3/lib/mustermann/ast/translator.rb
- def translate(node, *args, &block)
- result = decorator_for(node).translate(*args, &block)
- gems/mustermann-1.0.3/lib/mustermann/ast/node.rb
- def self.parse(*args, &block)
- new(*args).tap { |n| n.parse(&block) }
- gems/mustermann-1.0.3/lib/mustermann/ast/transformer.rb
- def create_lookahead(elements, *args)
- [Node[:with_look_ahead].new(elements, *args, start: elements.first.start, stop: elements.last.stop)]
- gems/mustermann-1.0.3/lib/mustermann/ast/parser.rb
- def node(type, *args, &block)
- node = block ? type.parse(*args, &block) : type.new(*args)
- gems/mustermann-1.0.3/lib/mustermann/expander.rb
- def cast(*types, &block)
- caster.register(*types, &block)
- gems/rails-deprecated_sanitizer-1.0.3/lib/rails/deprecated_sanitizer/html-scanner/html/selector.rb
- def self.selector(statement, *values)
- Selector.new(statement, *values)
- gems/docker-api-1.34.2/lib/docker/connection.rb
- def request(*args, &block)
- request = compile_request_params(*args, &block)
- gems/docker-api-1.34.2/lib/docker/rake_task.rb
- def image(*args, &block)
- Docker::ImageTask.define_task(*args, &block)
- gems/googleauth-0.6.7/lib/googleauth/credentials_loader.rb
- def make_creds(*args)
- new(*args)
- gems/regexp_parser-1.6.0/lib/regexp_parser/expression/classes/root.rb
- def initialize(*args)
- return super(self.class.build_token, *args)
- gems/regexp_parser-1.6.0/lib/regexp_parser/expression/sequence.rb
- def initialize(*args)
- return self.class.at_levels(*args)
- gems/websocket-driver-0.7.1/lib/websocket/driver/event_emitter.rb
- def emit(event, *args)
- listener.call(*args)
- gems/actioncable-6.0.0/lib/action_cable/channel/test_case.rb
- def assert_broadcasts(stream_or_object, *args)
- super(broadcasting_for(stream_or_object), *args)
- gems/actioncable-6.0.0/lib/action_cable/channel/test_case.rb
- def assert_broadcast_on(stream_or_object, *args)
- super(broadcasting_for(stream_or_object), *args)
- gems/actioncable-6.0.0/lib/action_cable/channel/callbacks.rb
- def before_subscribe(*methods, &block)
- set_callback(:subscribe, :before, *methods, &block)
- gems/actioncable-6.0.0/lib/action_cable/channel/callbacks.rb
- def after_subscribe(*methods, &block)
- set_callback(:subscribe, :after, *methods, &block)
- gems/actioncable-6.0.0/lib/action_cable/channel/callbacks.rb
- def before_unsubscribe(*methods, &block)
- set_callback(:unsubscribe, :before, *methods, &block)
- gems/actioncable-6.0.0/lib/action_cable/channel/callbacks.rb
- def after_unsubscribe(*methods, &block)
- set_callback(:unsubscribe, :after, *methods, &block)
- gems/actioncable-6.0.0/lib/action_cable/server/worker.rb
- def async_exec(receiver, *args, connection:, &block)
- async_invoke receiver, :instance_exec, *args, connection: connection, &block
- gems/actioncable-6.0.0/lib/action_cable/server/worker.rb
- def async_invoke(receiver, method, *args, connection: receiver, &block)
- invoke(receiver, method, *args, connection: connection, &block)
- gems/actioncable-6.0.0/lib/action_cable/server/worker.rb
- def invoke(receiver, method, *args, connection:, &block)
- receiver.send method, *args, &block
- gems/actioncable-6.0.0/lib/action_cable/connection/base.rb
- def send_async(method, *arguments)
- worker_pool.async_invoke(self, method, *arguments)
- gems/airbrake-9.4.3/lib/airbrake/rails/action_controller_route_subscriber.rb
- def call(*args)
- event = Airbrake::Rails::Event.new(*args)
- gems/airbrake-9.4.3/lib/airbrake/rails/net_http.rb
- def request(request, *args, &block)
- request_without_airbrake(request, *args, &block)
- gems/airbrake-9.4.3/lib/airbrake/rails/active_record_subscriber.rb
- def call(*args)
- event = Airbrake::Rails::Event.new(*args)
- gems/airbrake-9.4.3/lib/airbrake/rails/action_controller_notify_subscriber.rb
- def call(*args)
- event = Airbrake::Rails::Event.new(*args)
- gems/airbrake-9.4.3/lib/airbrake/rails/action_controller_performance_breakdown_subscriber.rb
- def call(*args)
- event = Airbrake::Rails::Event.new(*args)
- gems/airbrake-9.4.3/lib/airbrake/rails/action_cable.rb
- def perform_action(*args, &block)
- perform_action_without_airbrake(*args, &block)
- gems/airbrake-9.4.3/lib/airbrake/rails/event.rb
- def initialize(*args)
- @event = ActiveSupport::Notifications::Event.new(*args)
- gems/airbrake-9.4.3/lib/airbrake/rails/excon_subscriber.rb
- def call(*args)
- event = Airbrake::Rails::Event.new(*args)
- gems/elasticsearch-transport-7.3.0/lib/elasticsearch/transport/transport/connections/collection.rb
- def slice(*args)
- connections.slice(*args)
- gems/virtus-1.0.5/lib/virtus/attribute/default_value.rb
- def self.build(*args)
- klass = descendants.detect { |descendant| descendant.handle?(*args) } || self
- gems/virtus-1.0.5/lib/virtus/attribute/default_value/from_callable.rb
- def call(*args)
- @value.call(*args)
- gems/rack-test-1.1.0/lib/rack/test/uploaded_file.rb
- def method_missing(method_name, *args, &block) #:nodoc:
- tempfile.public_send(method_name, *args, &block)
- gems/rubocop-0.74.0/lib/rubocop/cop/mixin/classish_length.rb
- def line_numbers_of_inner_nodes(node, *types)
- node.each_descendant(*types) do |inner_node|
- gems/rubocop-0.74.0/lib/rubocop/cop/variable_force/variable_table.rb
- def invoke_hook(hook_name, *args)
- @hook_receiver&.send(hook_name, *args)
- gems/rubocop-0.74.0/lib/rubocop/cop/force.rb
- def run_hook(method_name, *args)
- cop.send(method_name, *args)
- gems/rubocop-0.74.0/lib/rubocop/ast/node.rb
- def each_ancestor(*types, &block)
- return to_enum(__method__, *types) unless block_given?
- gems/rubocop-0.74.0/lib/rubocop/ast/node.rb
- def each_child_node(*types)
- return to_enum(__method__, *types) unless block_given?
- gems/rubocop-0.74.0/lib/rubocop/ast/node.rb
- def each_descendant(*types, &block)
- return to_enum(__method__, *types) unless block_given?
- gems/rubocop-0.74.0/lib/rubocop/ast/node.rb
- def each_node(*types, &block)
- return to_enum(__method__, *types) unless block_given?
- gems/rubocop-0.74.0/lib/rubocop/options.rb
- def option(opts, *args)
- opts.on(*args) do |arg|
- gems/rubocop-0.74.0/lib/rubocop/node_pattern.rb
- def match(*args)
- match(*args)
- gems/rubocop-0.74.0/lib/rubocop/rake_task.rb
- def initialize(name = :rubocop, *args, &task_block)
- task(name, *args) do |_, task_args|
- gems/rubocop-0.74.0/lib/rubocop/rake_task.rb
- def setup_subtasks(name, *args, &task_block)
- task(:auto_correct, *args) do |_, task_args|
- gems/rubocop-0.74.0/lib/rubocop/formatter/colorizable.rb
- def colorize(string, *args)
- rainbow.wrap(string).color(*args)
- gems/logging-2.2.2/lib/logging/layouts/basic.rb
- def self.basic( *args )
- ::Logging::Layouts::Basic.new(*args)
- gems/logging-2.2.2/lib/logging/layouts/pattern.rb
- def self.pattern( *args )
- ::Logging::Layouts::Pattern.new(*args)
- gems/logging-2.2.2/lib/logging/layouts/parseable.rb
- def self.json( *args )
- ::Logging::Layouts::Parseable.json(*args)
- gems/logging-2.2.2/lib/logging/layouts/parseable.rb
- def self.yaml( *args )
- ::Logging::Layouts::Parseable.yaml(*args)
- gems/logging-2.2.2/lib/logging/appenders/console.rb
- def self.stdout( *args )
- ::Logging::Appenders::Stdout.new(*args)
- gems/logging-2.2.2/lib/logging/appenders/console.rb
- def self.stderr( *args )
- ::Logging::Appenders::Stderr.new(*args)
- gems/logging-2.2.2/lib/logging/appenders/string_io.rb
- def self.string_io( *args )
- ::Logging::Appenders::StringIo.new(*args)
- gems/logging-2.2.2/lib/logging/appenders/buffering.rb
- def initialize( *args, &block )
- super(*args, &block)
- gems/logging-2.2.2/lib/logging/appenders/buffering.rb
- def close( *args )
- super(*args)
- gems/logging-2.2.2/lib/logging/appenders/io.rb
- def self.io( *args )
- ::Logging::Appenders::IO.new(*args)
- gems/logging-2.2.2/lib/logging/appenders/file.rb
- def self.file( *args )
- ::Logging::Appenders::File.new(*args)
- gems/logging-2.2.2/lib/logging/appenders/rolling_file.rb
- def self.rolling_file( *args )
- ::Logging::Appenders::RollingFile.new(*args)
- gems/logging-2.2.2/lib/logging/appenders/syslog.rb
- def self.syslog( *args )
- ::Logging::Appenders::Syslog.new(*args)
- gems/logging-2.2.2/lib/logging/diagnostic_context.rb
- def create_with_logging_context( m, *a, &b )
- self.send(m, *a) { |*args|
- gems/logging-2.2.2/lib/logging/proxy.rb
- def method_missing( name, *args, &block )
- @object.send(name, *args, &block)
- gems/mixlib-config-3.0.1/lib/mixlib/config.rb
- def method_missing(method_symbol, *args)
- internal_get_or_set(method_symbol, *args)
- gems/chunky_png-1.3.11/lib/chunky_png/color.rb
- def self.Color(*args)
- when 3; ChunkyPNG::Color.rgb(*args)
- gems/chunky_png-1.3.11/lib/chunky_png/dimension.rb
- def self.Dimension(*args)
- when 2; ChunkyPNG::Dimension.new(*args)
- gems/chunky_png-1.3.11/lib/chunky_png/dimension.rb
- def include?(*point_like)
- point = ChunkyPNG::Point(*point_like)
- gems/chunky_png-1.3.11/lib/chunky_png/point.rb
- def self.Point(*args)
- when 2; ChunkyPNG::Point.new(*args)
- gems/chunky_png-1.3.11/lib/chunky_png/point.rb
- def within_bounds?(*dimension_like)
- ChunkyPNG::Dimension(*dimension_like).include?(self)
- gems/chunky_png-1.3.11/lib/chunky_png/canvas.rb
- def include_point?(*point_like)
- dimension.include?(ChunkyPNG::Point(*point_like))
- gems/rack-2.0.7/lib/rack/body_proxy.rb
- def method_missing(method_name, *args, &block)
- @body.__send__(method_name, *args, &block)
- gems/rack-2.0.7/lib/rack/rewindable_input.rb
- def read(*args)
- @rewindable_io.read(*args)
- gems/rack-2.0.7/lib/rack/lint.rb
- def read(*args)
- v = @input.read(*args)
- gems/rack-2.0.7/lib/rack/directory.rb
- def DIR_FILE_escape url, *html
- [url, *html.map { |e| Utils.escape_html(e) }]
- gems/rack-2.0.7/lib/rack/multipart/uploaded_file.rb
- def respond_to?(*args)
- super or @tempfile.respond_to?(*args)
- gems/rack-2.0.7/lib/rack/multipart/uploaded_file.rb
- def method_missing(method_name, *args, &block) #:nodoc:
- @tempfile.__send__(method_name, *args, &block)
- gems/rack-2.0.7/lib/rack/builder.rb
- def use(middleware, *args, &block)
- @use << proc { |app| middleware.new(app, *args, &block) }
- gems/mime-types-3.3/lib/mime/types/registry.rb
- def add(*types)
- __types__.add(*types)
- gems/mime-types-3.3/lib/mime/type.rb
- def to_json(*args)
- to_h.to_json(*args)
- gems/capybara-3.29.0/lib/capybara/minitest/spec.rb
- def must_have_style(*args, &block)
- must_match_style(*args, &block)
- gems/capybara-3.29.0/lib/capybara/minitest.rb
- def assert_#{assertion_name} *args
- subject.assert_#{assertion_name}(*args)
- gems/capybara-3.29.0/lib/capybara/minitest.rb
- def assert_#{assertion_name} *args, &optional_filter_block
- subject.assert_#{assertion_name}(*args, &optional_filter_block)
- gems/capybara-3.29.0/lib/capybara/node/element.rb
- def style(*styles)
- evaluate_script(STYLE_SCRIPT, *styles)
- gems/capybara-3.29.0/lib/capybara/node/element.rb
- def send_keys(*args)
- synchronize { base.send_keys(*args) }
- gems/capybara-3.29.0/lib/capybara/node/element.rb
- def execute_script(script, *args)
- session.execute_script(<<~JS, self, *args)
- gems/capybara-3.29.0/lib/capybara/node/element.rb
- def evaluate_script(script, *args)
- session.evaluate_script(<<~JS, self, *args)
- gems/capybara-3.29.0/lib/capybara/node/element.rb
- def evaluate_async_script(script, *args)
- session.evaluate_async_script(<<~JS, self, *args)
- gems/capybara-3.29.0/lib/capybara/node/document.rb
- def execute_script(*args)
- find(:xpath, '/html').execute_script(*args)
- gems/capybara-3.29.0/lib/capybara/node/document.rb
- def evaluate_script(*args)
- find(:xpath, '/html').evaluate_script(*args)
- gems/capybara-3.29.0/lib/capybara/node/document.rb
- def scroll_to(*args)
- find(:xpath, '//body').scroll_to(*args)
- gems/capybara-3.29.0/lib/capybara/session.rb
- def within(*args)
- new_scope = args.first.respond_to?(:to_capybara_node) ? args.first.to_capybara_node : find(*args)
- gems/capybara-3.29.0/lib/capybara/session.rb
- def within_frame(*args)
- switch_to_frame(_find_frame(*args))
- gems/capybara-3.29.0/lib/capybara/session.rb
- def _find_frame(*args)
- find(:frame, *args)
- gems/capybara-3.29.0/lib/capybara/rspec/matcher_proxies.rb
- def all(*args, &block)
- ::RSpec::Matchers::BuiltIn::All.new(*args)
- gems/capybara-3.29.0/lib/capybara/rspec/matcher_proxies.rb
- def within(*args, &block)
- within_element(*args, &block)
- gems/capybara-3.29.0/lib/capybara/rspec/matchers.rb
- def have_selector(*args, &optional_filter_block)
- Matchers::HaveSelector.new(*args, &optional_filter_block)
- gems/capybara-3.29.0/lib/capybara/rspec/matchers.rb
- def have_all_of_selectors(*args, &optional_filter_block)
- Matchers::HaveAllSelectors.new(*args, &optional_filter_block)
- gems/capybara-3.29.0/lib/capybara/rspec/matchers.rb
- def have_none_of_selectors(*args, &optional_filter_block)
- Matchers::HaveNoSelectors.new(*args, &optional_filter_block)
- gems/capybara-3.29.0/lib/capybara/rspec/matchers.rb
- def have_any_of_selectors(*args, &optional_filter_block)
- Matchers::HaveAnySelectors.new(*args, &optional_filter_block)
- gems/capybara-3.29.0/lib/capybara/rspec/matchers.rb
- def match_selector(*args, &optional_filter_block)
- Matchers::MatchSelector.new(*args, &optional_filter_block)
- gems/capybara-3.29.0/lib/capybara/rspec/matchers.rb
- def have_text(*args)
- Matchers::HaveText.new(*args)
- gems/capybara-3.29.0/lib/capybara/rspec/matchers.rb
- def have_sibling(*args, &optional_filter_block)
- Matchers::HaveSibling.new(*args, &optional_filter_block)
- gems/capybara-3.29.0/lib/capybara/rspec/matchers.rb
- def have_ancestor(*args, &optional_filter_block)
- Matchers::HaveAncestor.new(*args, &optional_filter_block)
- gems/capybara-3.29.0/lib/capybara/rack_test/driver.rb
- def get(*args, &block)
- ; browser.get(*args, &block); end
- gems/capybara-3.29.0/lib/capybara/rack_test/driver.rb
- def post(*args, &block)
- ; browser.post(*args, &block); end
- gems/capybara-3.29.0/lib/capybara/rack_test/driver.rb
- def put(*args, &block)
- ; browser.put(*args, &block); end
- gems/capybara-3.29.0/lib/capybara/rack_test/driver.rb
- def delete(*args, &block)
- ; browser.delete(*args, &block); end
- gems/capybara-3.29.0/lib/capybara/selector/filter_set.rb
- def node_filter(names, *types_and_options, &block)
- add_filter(name, Filters::NodeFilter, *types_and_options, &block)
- gems/capybara-3.29.0/lib/capybara/selector/filter_set.rb
- def expression_filter(name, *types_and_options, &block)
- add_filter(name, Filters::ExpressionFilter, *types_and_options, &block)
- gems/capybara-3.29.0/lib/capybara/selenium/nodes/edge_node.rb
- def drop(*args)
- html5_drop(*args)
- gems/capybara-3.29.0/lib/capybara/selenium/nodes/chrome_node.rb
- def drop(*args)
- html5_drop(*args)
- gems/capybara-3.29.0/lib/capybara/selenium/nodes/safari_node.rb
- def send_keys(*args)
- return super(*args.map { |arg| arg == :space ? ' ' : arg })
- gems/capybara-3.29.0/lib/capybara/selenium/nodes/firefox_node.rb
- def send_keys(*args)
- return super(*args.map { |arg| arg == :space ? ' ' : arg }) if args.none? { |arg| arg.is_a? Array }
- gems/capybara-3.29.0/lib/capybara/selenium/nodes/firefox_node.rb
- def drop(*args)
- html5_drop(*args)
- gems/capybara-3.29.0/lib/capybara/selenium/node.rb
- def send_keys(*args)
- native.send_keys(*args)
- gems/capybara-3.29.0/lib/capybara/selenium/driver.rb
- def evaluate_script(script, *args)
- result = execute_script("return #{script}", *args)
- gems/simplecov-0.17.0/lib/simplecov/result_merger.rb
- def merge_results(*results)
- merged = SimpleCov::RawCoverage.merge_results(*results.map(&:original_result))
- gems/simplecov-0.17.0/lib/simplecov/formatter/multi_formatter.rb
- def self.[](*args)
- new(Array([*args]))
- gems/pry-0.12.2/lib/pry/hooks.rb
- def exec_hook(event_name, *args, &block)
- callable.call(*args, &block)
- gems/pry-0.12.2/lib/pry/slop/option.rb
- def call(*objects)
- @callback.call(*objects) if @callback.respond_to?(:call)
- gems/pry-0.12.2/lib/pry/command_set.rb
- def initialize(*imported_sets, &block)
- import(*imported_sets)
- gems/pry-0.12.2/lib/pry/command_set.rb
- def run_command(context, match, *args)
- command.new(context).call_safely(*args)
- gems/pry-0.12.2/lib/pry/last_exception.rb
- def method_missing(name, *args, &block)
- @e.public_send(name, *args, &block)
- gems/pry-0.12.2/lib/pry/helpers/base_helpers.rb
- def safe_send(obj, method, *args, &block)
- (Module === obj ? Module : Object).instance_method(method).bind(obj).call(*args, &block)
- gems/pry-0.12.2/lib/pry/repl.rb
- def input_readline(*args)
- input.readline(*args)
- gems/pry-0.12.2/lib/pry/method/disowned.rb
- def method_missing(meth_name, *args, &block)
- Object.instance_method(:method_missing).bind(self).call(meth_name, *args, &block)
- gems/pry-0.12.2/lib/pry/wrapped_module.rb
- def method_missing(method_name, *args, &block)
- wrapped.send(method_name, *args, &block)
- gems/pry-0.12.2/lib/pry/pry_instance.rb
- def exec_hook(name, *args, &block)
- hooks.exec_hook(name, *args, &block).tap do
- gems/pry-0.12.2/lib/pry/pry_instance.rb
- def raise_up(*args)
- ; raise_up_common(false, *args); end
- gems/pry-0.12.2/lib/pry/pry_instance.rb
- def raise_up!(*args)
- ; raise_up_common(true, *args); end
- gems/pry-0.12.2/lib/pry/output.rb
- def method_missing(name, *args, &block)
- @boxed_io.__send__(name, *args, &block)
- gems/pry-0.12.2/lib/pry/command.rb
- def call_safely(*args)
- call_with_hooks(*args)
- gems/pry-0.12.2/lib/pry/command.rb
- def call_with_hooks(*args)
- before_hooks.each { |block| instance_exec(*args, &block) }
- gems/pry-0.12.2/lib/pry/forwardable.rb
- def def_private_delegators(target, *private_delegates)
- class_eval { private(*private_delegates) }
- gems/pry-0.12.2/lib/pry/method.rb
- def method_missing(method_name, *args, &block)
- @method.send(method_name, *args, &block)
- gems/pry-0.12.2/lib/pry/config/behavior.rb
- def method_missing(name, *args, &block)
- value = @default.public_send(name, *args, &block)
- gems/pry-0.12.2/lib/pry/testable/utility.rb
- def unindent(*args)
- Pry::Helpers::CommandHelpers.unindent(*args)
- gems/pry-0.12.2/lib/pry/testable/evalable.rb
- def pry_tester(*args, &block)
- Pry::Testable::PryTester.new(*args).tap do |t|
- gems/pry-0.12.2/lib/pry/testable/evalable.rb
- def pry_eval(*eval_strs)
- pry_tester(b).eval(*eval_strs)
- gems/pry-0.12.2/lib/pry/code.rb
- def method_missing(name, *args, &block)
- to_s.send(name, *args, &block)
- gems/sfl-2.3/lib/sfl.rb
- def Kernel.spawn(*x)
- SFL.new(*x).run
- gems/sfl-2.3/lib/sfl.rb
- def spawn(*x)
- Kernel.spawn(*x)
- gems/sfl-2.3/lib/sfl.rb
- def Process.spawn(*x)
- SFL.new(*x).run
- gems/systemu-2.6.5/lib/systemu.rb
- def systemu(*a, &b)
- SystemUniversal.new(*a, &b).systemu end
- gems/systemu-2.6.5/lib/systemu.rb
- def quote *args, &block
- SystemUniversal.quote(*args, &block)
- gems/carrierwave-2.0.1/lib/carrierwave/mounter.rb
- def urls(*args)
- uploaders.map { |u| u.url(*args) }
- gems/carrierwave-2.0.1/lib/carrierwave/downloader/remote_file.rb
- def respond_to?(*args)
- super || file.respond_to?(*args)
- gems/carrierwave-2.0.1/lib/carrierwave/downloader/remote_file.rb
- def method_missing(*args, &block)
- file.send(*args, &block)
- gems/carrierwave-2.0.1/lib/carrierwave/uploader/callbacks.rb
- def with_callbacks(kind, *args)
- self.class._before_callbacks[kind].each { |c| send c, *args }
- gems/carrierwave-2.0.1/lib/carrierwave/uploader/default_url.rb
- def url(*args)
- super || default_url(*args)
- gems/carrierwave-2.0.1/lib/carrierwave/uploader/versions.rb
- def url(*args)
- versions[version.to_sym].url(*args[1..-1])
- gems/activejob-6.0.0/lib/active_job/logging.rb
- def tag_logger(*tags)
- logger.tagged(*tags) { yield }
- gems/activejob-6.0.0/lib/active_job/configured_job.rb
- def perform_now(*args)
- @job_class.new(*args).perform_now
- gems/activejob-6.0.0/lib/active_job/configured_job.rb
- def perform_later(*args)
- @job_class.new(*args).enqueue @options
- gems/activejob-6.0.0/lib/active_job/execution.rb
- def perform_now(*args)
- job_or_instantiate(*args).perform_now
- gems/activejob-6.0.0/lib/active_job/enqueuing.rb
- def perform_later(*args)
- job_or_instantiate(*args).enqueue
- gems/activejob-6.0.0/lib/active_job/enqueuing.rb
- def job_or_instantiate(*args) # :doc:
- args.first.is_a?(self) ? args.first : new(*args)
- gems/activejob-6.0.0/lib/active_job/callbacks.rb
- def before_perform(*filters, &blk)
- set_callback(:perform, :before, *filters, &blk)
- gems/activejob-6.0.0/lib/active_job/callbacks.rb
- def after_perform(*filters, &blk)
- set_callback(:perform, :after, *filters, &blk)
- gems/activejob-6.0.0/lib/active_job/callbacks.rb
- def around_perform(*filters, &blk)
- set_callback(:perform, :around, *filters, &blk)
- gems/activejob-6.0.0/lib/active_job/callbacks.rb
- def before_enqueue(*filters, &blk)
- set_callback(:enqueue, :before, *filters, &blk)
- gems/activejob-6.0.0/lib/active_job/callbacks.rb
- def after_enqueue(*filters, &blk)
- set_callback(:enqueue, :after, *filters, &blk)
- gems/activejob-6.0.0/lib/active_job/callbacks.rb
- def around_enqueue(*filters, &blk)
- set_callback(:enqueue, :around, *filters, &blk)
- gems/activejob-6.0.0/lib/active_job/exceptions.rb
- def retry_on(*exceptions, wait: 3.seconds, attempts: 5, queue: nil, priority: nil)
- rescue_from(*exceptions) do |error|
- gems/activejob-6.0.0/lib/active_job/exceptions.rb
- def discard_on(*exceptions)
- rescue_from(*exceptions) do |error|
- gems/notiffany-0.1.3/lib/notiffany/notifier/tmux/client.rb
- def _run(*args)
- self.class._run(*args)
- gems/notiffany-0.1.3/lib/notiffany/notifier/tmux/client.rb
- def _capture(*args)
- self.class._capture(*args)
- gems/i18n-1.6.0/lib/i18n/core_ext/hash.rb
- def except(*keys)
- dup.except!(*keys)
- gems/coderay-1.1.2/lib/coderay/tokens_proxy.rb
- def method_missing method, *args, &blk
- encode method.to_sym, *args
- gems/coderay-1.1.2/lib/coderay/tokens_proxy.rb
- def each *args, &blk
- tokens.each(*args, &blk)
- gems/coderay-1.1.2/lib/coderay/helpers/plugin_host.rb
- def plugin_path *args
- @plugin_path = File.expand_path File.join(*args)
- gems/coderay-1.1.2/lib/coderay.rb
- def self.coderay_path *path
- File.join CODERAY_PATH, *path
- gems/rspec-core-3.8.2/lib/rspec/core/example.rb
- def call(*args, &block)
- @proc.call(*args, &block)
- gems/rspec-core-3.8.2/lib/rspec/core/example.rb
- def instance_exec(*args, &block)
- @example_group_instance.instance_exec(*args, &block)
- gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb
- def before(*args, &block)
- hooks.register :append, :before, *args, &block
- gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb
- def prepend_before(*args, &block)
- hooks.register :prepend, :before, *args, &block
- gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb
- def after(*args, &block)
- hooks.register :prepend, :after, *args, &block
- gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb
- def append_after(*args, &block)
- hooks.register :append, :after, *args, &block
- gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb
- def around(*args, &block)
- hooks.register :prepend, :around, *args, &block
- gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb
- def register(prepend_or_append, position, *args, &block)
- scope, options = scope_and_options_from(*args)
- gems/rspec-core-3.8.2/lib/rspec/core/bisect/utilities.rb
- def publish(event, *args)
- notification = Notifications::CustomNotification.for(*args)
- gems/rspec-core-3.8.2/lib/rspec/core/bisect/shell_runner.rb
- def run_locations(*capture_args)
- @server.capture_run_results(*capture_args) do
- gems/rspec-core-3.8.2/lib/rspec/core/bisect/example_minimizer.rb
- def notify(*args)
- @notifier.publish(*args)
- gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb
- def self.include_context(name, *args, &block)
- find_and_eval_shared("context", name, caller.first, *args, &block)
- gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb
- def self.include_examples(name, *args, &block)
- find_and_eval_shared("examples", name, caller.first, *args, &block)
- gems/rspec-core-3.8.2/lib/rspec/core/configuration.rb
- def filter_run_when_matching(*args)
- when_first_matching_example_defined(*args) do
- gems/rspec-core-3.8.2/lib/rspec/core/configuration.rb
- def include_context(shared_group_name, *filters)
- include shared_module, *filters
- gems/rspec-core-3.8.2/lib/rspec/core/configuration.rb
- def before(scope=nil, *meta, &block)
- add_hook_to_existing_matching_groups(meta, scope) { |g| g.before(scope, *meta, &block) }
- gems/rspec-core-3.8.2/lib/rspec/core/configuration.rb
- def prepend_before(scope=nil, *meta, &block)
- add_hook_to_existing_matching_groups(meta, scope) { |g| g.prepend_before(scope, *meta, &block) }
- gems/rspec-core-3.8.2/lib/rspec/core/configuration.rb
- def after(scope=nil, *meta, &block)
- add_hook_to_existing_matching_groups(meta, scope) { |g| g.after(scope, *meta, &block) }
- gems/rspec-core-3.8.2/lib/rspec/core/configuration.rb
- def append_after(scope=nil, *meta, &block)
- add_hook_to_existing_matching_groups(meta, scope) { |g| g.append_after(scope, *meta, &block) }
- gems/rspec-core-3.8.2/lib/rspec/core/configuration.rb
- def around(scope=nil, *meta, &block)
- add_hook_to_existing_matching_groups(meta, scope) { |g| g.around(scope, *meta, &block) }
- gems/rspec-core-3.8.2/lib/rspec/core/shared_example_group.rb
- def shared_examples(name, *args, &block)
- RSpec.world.shared_example_group_registry.add(self, name, *args, &block)
- gems/rspec-core-3.8.2/lib/rspec/core/shared_example_group.rb
- def add(context, name, *metadata_args, &block)
- return legacy_add(context, name, *metadata_args, &block)
- gems/rspec-core-3.8.2/lib/rspec/core/shared_example_group.rb
- def legacy_add(context, name, *metadata_args, &block)
- RSpec.configuration.include shared_module, *metadata_args
- gems/rspec-core-3.8.2/lib/rspec/core/output_wrapper.rb
- def method_missing(name, *args, &block)
- output.send(name, *args, &block)
- gems/rspec-core-3.8.2/lib/rspec/core/formatters/deprecation_formatter.rb
- def puts(*args)
- @file.puts(*args)
- gems/rspec-core-3.8.2/lib/rspec/core/filter_manager.rb
- def fetch(*args, &block)
- @rules.fetch(*args, &block)
- gems/rspec-core-3.8.2/lib/rspec/core/filter_manager.rb
- def add(*args)
- apply_standalone_filter(*args) || super
- gems/rspec-core-3.8.2/lib/rspec/core/filter_manager.rb
- def add_with_low_priority(*args)
- apply_standalone_filter(*args) || super
- gems/kramdown-2.1.0/lib/kramdown/converter/man.rb
- def macro(name, *args)
- ".#{[name, *args].compact.join(' ')}\n"
- gems/kramdown-2.1.0/lib/kramdown/parser/kramdown.rb
- def new_block_el(*args)
- el = Element.new(*args)
- gems/ohai-15.3.1/lib/ohai/dsl/plugin.rb
- def attribute?(name, *keys)
- !safe_get_attribute(name, *keys).nil?
- gems/ohai-15.3.1/lib/ohai/dsl/plugin.rb
- def set(name, *value)
- set_attribute(name, *value)
- gems/ohai-15.3.1/lib/ohai/dsl/plugin.rb
- def get_attribute(name, *keys)
- safe_get_attribute(name, *keys)
- gems/ohai-15.3.1/lib/ohai/dsl/plugin.rb
- def method_missing(name, *args)
- set_attribute(name, *args)
- gems/ohai-15.3.1/lib/ohai/mash.rb
- def fetch(key, *extras)
- super(convert_key(key), *extras)
- gems/ohai-15.3.1/lib/ohai/mash.rb
- def except(*keys)
- super(*keys.map { |k| convert_key(k) })
- gems/httparty-0.17.0/lib/httparty/response.rb
- def method_missing(name, *args, &block)
- parsed_response.send(name, *args, &block)
- gems/httparty-0.17.0/lib/httparty.rb
- def self.get(*args, &block)
- Basement.get(*args, &block)
- gems/httparty-0.17.0/lib/httparty.rb
- def self.post(*args, &block)
- Basement.post(*args, &block)
- gems/httparty-0.17.0/lib/httparty.rb
- def self.patch(*args, &block)
- Basement.patch(*args, &block)
- gems/httparty-0.17.0/lib/httparty.rb
- def self.put(*args, &block)
- Basement.put(*args, &block)
- gems/httparty-0.17.0/lib/httparty.rb
- def self.delete(*args, &block)
- Basement.delete(*args, &block)
- gems/httparty-0.17.0/lib/httparty.rb
- def self.move(*args, &block)
- Basement.move(*args, &block)
- gems/httparty-0.17.0/lib/httparty.rb
- def self.copy(*args, &block)
- Basement.copy(*args, &block)
- gems/httparty-0.17.0/lib/httparty.rb
- def self.head(*args, &block)
- Basement.head(*args, &block)
- gems/httparty-0.17.0/lib/httparty.rb
- def self.options(*args, &block)
- Basement.options(*args, &block)
- gems/shellany-0.0.1/lib/shellany/sheller.rb
- def self.run(*args)
- new(*args).run
- gems/shellany-0.0.1/lib/shellany/sheller.rb
- def self.stdout(*args)
- new(*args).stdout
- gems/shellany-0.0.1/lib/shellany/sheller.rb
- def self.stderr(*args)
- new(*args).stderr
- gems/shellany-0.0.1/lib/shellany/sheller.rb
- def self.system(*args)
- _system_with_no_capture(*args)
- gems/shellany-0.0.1/lib/shellany/sheller.rb
- def self._system_with_no_capture(*args)
- Kernel.system(*args)
- gems/shellany-0.0.1/lib/shellany/sheller.rb
- def self._system_with_capture(*args)
- Open3.popen3(*args) do |_stdin, _stdout, _stderr, _thr|
- gems/factory_girl-4.9.0/lib/factory_girl/evaluator.rb
- def method_missing(method_name, *args, &block)
- @instance.send(method_name, *args, &block)
- gems/factory_girl-4.9.0/lib/factory_girl/definition_proxy.rb
- def method_missing(name, *args, &block)
- association(name, *args)
- gems/factory_girl-4.9.0/lib/factory_girl/definition_proxy.rb
- def sequence(name, *args, &block)
- sequence = Sequence.new(name, *args, &block)
- gems/factory_girl-4.9.0/lib/factory_girl/definition_proxy.rb
- def association(name, *options)
- @definition.declare_attribute(Declaration::Association.new(name, *options))
- gems/factory_girl-4.9.0/lib/factory_girl/definition.rb
- def before(*names, &block)
- callback(*names.map { |name| "before_#{name}" }, &block)
- gems/factory_girl-4.9.0/lib/factory_girl/definition.rb
- def after(*names, &block)
- callback(*names.map { |name| "after_#{name}" }, &block)
- gems/factory_girl-4.9.0/lib/factory_girl/syntax/default.rb
- def sequence(name, *args, &block)
- FactoryGirl.register_sequence(Sequence.new(name, *args, &block))
- gems/factory_girl-4.9.0/lib/factory_girl/decorator.rb
- def method_missing(name, *args, &block)
- @component.send(name, *args, &block)
- gems/factory_girl-4.9.0/lib/factory_girl/decorator.rb
- def send(symbol, *args, &block)
- __send__(symbol, *args, &block)
- gems/rubygems-update-3.0.6/lib/rubygems/request_set.rb
- def gem(name, *reqs)
- dep = Gem::Dependency.new name, *reqs
- gems/rubygems-update-3.0.6/lib/rubygems/version_option.rb
- def add_platform_option(task = command, *wrap)
- "Specify the platform of gem to #{task}", *wrap) do
- gems/rubygems-update-3.0.6/lib/rubygems/version_option.rb
- def add_prerelease_option(*wrap)
- "Allow prerelease versions of a gem", *wrap) do |value, options|
- gems/rubygems-update-3.0.6/lib/rubygems/version_option.rb
- def add_version_option(task = command, *wrap)
- "Specify version of gem to #{task}", *wrap) do
- gems/rubygems-update-3.0.6/lib/rubygems/specification.rb
- def self.find_all_by_name(name, *requirements)
- Gem::Dependency.new(name, *requirements).matching_specs
- gems/rubygems-update-3.0.6/lib/rubygems/specification.rb
- def self.find_by_name(name, *requirements)
- Gem::Dependency.new(name, *requirements).to_spec
- gems/rubygems-update-3.0.6/lib/rubygems/test_case.rb
- def install_default_gems(*specs)
- install_default_specs(*specs)
- gems/rubygems-update-3.0.6/lib/rubygems/test_case.rb
- def new_spec(name, version, deps = nil, *files) # :nodoc:
- s.files.push(*files) unless files.empty?
- gems/rubygems-update-3.0.6/lib/rubygems/test_case.rb
- def util_spec(name, version = 2, deps = nil, *files) # :yields: specification
- s.files.push(*files) unless files.empty?
- gems/rubygems-update-3.0.6/lib/rubygems/test_case.rb
- def escape_path(*path)
- path = File.join(*path)
- gems/rubygems-update-3.0.6/lib/rubygems/test_case.rb
- def dep(name, *requirements)
- Gem::Dependency.new name, *requirements
- gems/rubygems-update-3.0.6/lib/rubygems/resolver.rb
- def self.compose_sets(*sets)
- Gem::Resolver::ComposedSet.new(*sets)
- gems/rubygems-update-3.0.6/lib/rubygems/core_ext/kernel_gem.rb
- def gem(gem_name, *requirements) # :doc:
- dep = Gem::Dependency.new(gem_name, *requirements)
- gems/rubygems-update-3.0.6/lib/rubygems/request_set/gem_dependency_api.rb
- def gem(name, *requirements)
- @set.gem name, *requirements
- gems/rubygems-update-3.0.6/lib/rubygems/user_interaction.rb
- def progress_reporter(*args)
- SilentProgressReporter.new(@outs, *args)
- gems/rubygems-update-3.0.6/lib/rubygems/user_interaction.rb
- def download_reporter(*args)
- SilentDownloadReporter.new(@outs, *args)
- gems/rubygems-update-3.0.6/lib/rubygems/user_interaction.rb
- def download_reporter(*args) # :nodoc:
- SilentDownloadReporter.new(@outs, *args)
- gems/rubygems-update-3.0.6/lib/rubygems/user_interaction.rb
- def progress_reporter(*args) # :nodoc:
- SilentProgressReporter.new(@outs, *args)
- gems/rubygems-update-3.0.6/lib/rubygems/util.rb
- def self.popen(*command)
- exec(*command)
- gems/rubygems-update-3.0.6/lib/rubygems/util.rb
- def self.silent_system(*command)
- return system(*command)
- gems/rubygems-update-3.0.6/lib/rubygems.rb
- def self.bin_path(name, exec_name = nil, *requirements)
- # Gem::Specification.find_by_name(name, *requirements).bin_file exec_name
- gems/rubygems-update-3.0.6/lib/rubygems.rb
- def self.install(name, version = Gem::Requirement.default, *options)
- inst = Gem::DependencyInstaller.new(*options)
- gems/tzinfo-2.0.0/lib/tzinfo/data_sources/ruby_data_source.rb
- def require_data(*file)
- require(File.join(@base_path, *file))
- gems/tzinfo-2.0.0/lib/tzinfo/data_source.rb
- def set(data_source_or_type, *args)
- @@instance = DataSources::ZoneinfoDataSource.new(*args)
- gems/sidekiq-6.0.0/lib/sidekiq/middleware/chain.rb
- def add(klass, *args)
- entries << Entry.new(klass, *args)
- gems/sidekiq-6.0.0/lib/sidekiq/middleware/chain.rb
- def prepend(klass, *args)
- entries.insert(0, Entry.new(klass, *args))
- gems/sidekiq-6.0.0/lib/sidekiq/middleware/chain.rb
- def insert_before(oldklass, newklass, *args)
- new_entry = i.nil? ? Entry.new(newklass, *args) : entries.delete_at(i)
- gems/sidekiq-6.0.0/lib/sidekiq/middleware/chain.rb
- def insert_after(oldklass, newklass, *args)
- new_entry = i.nil? ? Entry.new(newklass, *args) : entries.delete_at(i)
- gems/sidekiq-6.0.0/lib/sidekiq/middleware/chain.rb
- def invoke(*args)
- chain.shift.call(*args, &traverse_chain)
- gems/sidekiq-6.0.0/lib/sidekiq/client.rb
- def enqueue_in(interval, klass, *args)
- klass.perform_in(interval, *args)
- gems/highline-1.7.10/lib/highline.rb
- def choose( *items, &details )
- @menu.choices(*items) unless items.empty?
- gems/highline-1.7.10/lib/highline.rb
- def self.color( string, *colors )
- Style(*colors).color(string)
- gems/highline-1.7.10/lib/highline.rb
- def self.color_code(*colors)
- Style(*colors).code
- gems/highline-1.7.10/lib/highline.rb
- def color_code(*colors)
- self.class.color_code(*colors)
- gems/highline-1.7.10/lib/highline.rb
- def color(*args)
- self.class.color(*args)
- gems/highline-1.7.10/lib/highline/style.rb
- def self.rgb(*colors)
- hex = rgb_hex(*colors)
- gems/highline-1.7.10/lib/highline/import.rb
- def or_ask( *args, &details )
- ask(*args) do |question|
- gems/net-ssh-5.2.0/lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha256.rb
- def initialize(*args)
- super(*args)
- gems/net-ssh-5.2.0/lib/net/ssh/test/script.rb
- def sends(type, *args, &block)
- events << LocalPacket.new(type, *args, &block)
- gems/net-ssh-5.2.0/lib/net/ssh/test/script.rb
- def gets(type, *args)
- events << RemotePacket.new(type, *args)
- gems/net-ssh-5.2.0/lib/net/ssh/test/local_packet.rb
- def initialize(type, *args, &block)
- super(type, *args)
- gems/net-ssh-5.2.0/lib/net/ssh/authentication/agent.rb
- def send_packet(type, *args)
- buffer = Buffer.from(*args)
- gems/net-ssh-5.2.0/lib/net/ssh/authentication/agent.rb
- def send_and_wait(type, *args)
- send_packet(type, *args)
- gems/net-ssh-5.2.0/lib/net/ssh/connection/session.rb
- def send_global_request(type, *extra, &callback)
- msg = Buffer.from(:byte, GLOBAL_REQUEST, :string, type.to_s, :bool, !callback.nil?, *extra)
- gems/net-ssh-5.2.0/lib/net/ssh/connection/session.rb
- def open_channel(type="session", *extra, &on_confirm)
- :long, channel.local_maximum_packet_size, *extra)
- gems/net-ssh-5.2.0/lib/net/ssh/connection/channel.rb
- def send_channel_request(request_name, *data, &callback)
- :bool, !callback.nil?, *data)
- gems/babosa-1.0.2/lib/babosa/identifier.rb
- def method_missing(symbol, *args, &block)
- @wrapped_string.__send__(symbol, *args, &block)
- gems/babosa-1.0.2/lib/babosa/identifier.rb
- def send_to_new_instance(*args)
- id.send(*args)
- gems/backports-3.15.0/lib/backports/tools/arguments.rb
- def self.coerce_to_options(obj, *options)
- hash.values_at(*options)
- gems/backports-3.15.0/lib/backports/2.4.0/regexp/match.rb
- def match?(*args)
- !match(*args).nil?
- gems/backports-3.15.0/lib/backports/2.4.0/string/match.rb
- def match?(*args)
- !match(*args).nil?
- gems/backports-3.15.0/lib/backports/1.9.2/array/product.rb
- def product_with_block(*arg, &block)
- return product_without_block(*arg) unless block_given?
- gems/backports-3.15.0/lib/backports/1.9.2/enumerable/each_entry.rb
- def each_entry(*pass)
- return to_enum(:each_entry, *pass) unless block_given?
- gems/backports-3.15.0/lib/backports/1.9.2/stdlib/matrix.rb
- def index(*args)
- return to_enum(:find_index, which, *args) unless block_given? || args.size == 1
- gems/backports-3.15.0/lib/backports/2.3.0/array/dig.rb
- def dig(index, *rest)
- val.dig(*rest)
- gems/backports-3.15.0/lib/backports/2.3.0/struct/dig.rb
- def dig(key, *rest)
- val.dig(*rest)
- gems/backports-3.15.0/lib/backports/2.3.0/hash/dig.rb
- def dig(key, *rest)
- val.dig(*rest)
- gems/backports-3.15.0/lib/backports/1.8.7/regexp/union.rb
- def union_with_array_argument(*arg)
- return union_without_array_argument(*arg) unless arg.size == 1
- gems/backports-3.15.0/lib/backports/1.8.7/array/rindex.rb
- def rindex_with_block(*arg)
- return rindex_without_block(*arg) unless block_given? && arg.empty?
- gems/backports-3.15.0/lib/backports/1.8.7/array/index.rb
- def index_with_block(*arg)
- return index_without_block(*arg) unless block_given? && arg.empty?
- gems/backports-3.15.0/lib/backports/1.8.7/kernel/instance_exec.rb
- def instance_exec(*arg, &block)
- send(:"temporary method for instance_exec", *arg)
- gems/backports-3.15.0/lib/backports/1.8.7/enumerable/to_a.rb
- def to_a_with_optional_arguments(*args)
- to_enum(:each, *args).to_a
- gems/backports-3.15.0/lib/backports/1.8.7/enumerable/entries.rb
- def entries_with_optional_arguments(*args)
- to_enum(:each, *args).entries
- gems/backports-3.15.0/lib/backports/1.8.7/enumerable/inject.rb
- def inject_with_symbol(*args, &block)
- return inject_without_symbol(*args, &block) if block_given? && args.size <= 1
- gems/backports-3.15.0/lib/backports/1.8.7/module/module_exec.rb
- def module_exec(*arg, &block)
- instance_exec(*arg, &block)
- gems/backports-3.15.0/lib/backports/1.8.7/binding/eval.rb
- def eval(expr, *arg)
- Kernel.eval(expr, self, *arg)
- gems/backports-3.15.0/lib/backports/2.6.0/array/union.rb
- def union(*arrays)
- [self, *arrays].inject([], :|)
- gems/backports-3.15.0/lib/backports/2.6.0/enumerable/to_h.rb
- def to_h_with_block(*args, &block)
- return to_h_without_block(*args) unless block
- gems/backports-3.15.0/lib/backports/2.6.0/enumerable/chain.rb
- def chain(*enums)
- Enumerator::Chain.new(self, *enums)
- gems/backports-3.15.0/lib/backports/2.6.0/enumerable/chain.rb
- def each(*args, &block)
- enum.each(*args, &block)
- gems/backports-3.15.0/lib/backports/2.6.0/hash/merge.rb
- def merge_with_backports(first = {}, *others, &block)
- merge!(*others, &block)
- gems/backports-3.15.0/lib/backports/1.9.1/kernel/define_singleton_method.rb
- def define_singleton_method(*args, &block)
- end.send(:define_method, *args, &block)
- gems/backports-3.15.0/lib/backports/1.9.1/kernel/public_send.rb
- def public_send(method, *args, &block)
- send(method, *args, &block)
- gems/backports-3.15.0/lib/backports/1.9.1/enumerable/each_with_index.rb
- def each_with_index_with_optional_args_and_block(*args)
- return to_enum(:each_with_index, *args) unless block_given?
- gems/backports-3.15.0/lib/backports/1.9.1/enumerator/new.rb
- def yield(*arg)
- @final_block.call(*arg)
- gems/backports-3.15.0/lib/backports/1.9.1/enumerator/new.rb
- def initialize_with_optional_block(*arg, &block)
- return initialize_without_optional_block(*arg, &nil) unless arg.empty? # Ruby 1.9 apparently ignores the block if any argument is present
- gems/backports-3.15.0/lib/backports/1.9.1/io/open.rb
- def open_with_options_hash(*args)
- open_without_options_hash(*args){|f| yield f}
- gems/backports-3.15.0/lib/backports/2.5.0/struct/new.rb
- def new_with_keyword_init(*members, keyword_init: false, &block)
- klass = new_without_keyword_init(*members)
- gems/backports-3.15.0/lib/backports/2.5.0/dir/each_child.rb
- def self.each_child(*args)
- return to_enum(__method__, *args) unless block_given?
- gems/backports-3.15.0/lib/backports/2.5.0/dir/children.rb
- def self.children(*args)
- entries(*args) - Backports::EXCLUDED_CHILDREN
- gems/backports-3.15.0/lib/backports/rails/kernel.rb
- def try(*a, &b)
- public_send(*a, &b)
- gems/backports-3.15.0/lib/backports/2.1.0/enumerable/to_h.rb
- def to_h(*args)
- each_entry(*args) do |key_value|
- gems/rubyzip-1.2.4/lib/zip/file.rb
- def glob(*args, &block)
- @entry_set.glob(*args, &block)
- gems/rubyzip-1.2.4/lib/zip/filesystem.rb
- def umask(*args)
- ::File.umask(*args)
- gems/rubyzip-1.2.4/lib/zip/filesystem.rb
- def join(*fragments)
- ::File.join(*fragments)
- gems/rubyzip-1.2.4/lib/zip/filesystem.rb
- def popen(*args, &aProc)
- ::File.popen(*args, &aProc)
- gems/rubyzip-1.2.4/lib/zip/filesystem.rb
- def glob(*args, &block)
- @mappedZip.glob(*args, &block)
- gems/rubyzip-1.2.4/lib/zip/filesystem.rb
- def glob(pattern, *flags, &block)
- @zipFile.glob(expand_to_entry(pattern), *flags, &block)
- gems/rubyzip-1.2.4/lib/zip/ioextras/abstract_output_stream.rb
- def printf(a_format_string, *params)
- self << format(a_format_string, *params)
- gems/factory_bot-5.0.2/lib/factory_bot/evaluator.rb
- def method_missing(method_name, *args, &block) # rubocop:disable Style/MethodMissing
- @instance.send(method_name, *args, &block)
- gems/factory_bot-5.0.2/lib/factory_bot/definition_proxy.rb
- def method_missing(name, *args, &block) # rubocop:disable Style/MethodMissing
- association(name, *args)
- gems/factory_bot-5.0.2/lib/factory_bot/definition_proxy.rb
- def sequence(name, *args, &block)
- sequence = Sequence.new(name, *args, &block)
- gems/factory_bot-5.0.2/lib/factory_bot/definition_proxy.rb
- def association(name, *options)
- declaration = Declaration::Association.new(name, *options)
- gems/factory_bot-5.0.2/lib/factory_bot/definition.rb
- def before(*names, &block)
- callback(*names.map { |name| "before_#{name}" }, &block)
- gems/factory_bot-5.0.2/lib/factory_bot/definition.rb
- def after(*names, &block)
- callback(*names.map { |name| "after_#{name}" }, &block)
- gems/factory_bot-5.0.2/lib/factory_bot/syntax/default.rb
- def sequence(name, *args, &block)
- FactoryBot.register_sequence(Sequence.new(name, *args, &block))
- gems/factory_bot-5.0.2/lib/factory_bot/decorator.rb
- def method_missing(name, *args, &block) # rubocop:disable Style/MethodMissing
- @component.send(name, *args, &block)
- gems/factory_bot-5.0.2/lib/factory_bot/decorator.rb
- def send(symbol, *args, &block)
- __send__(symbol, *args, &block)
- gems/raabro-1.1.6/lib/raabro.rb
- def altg(name, input, *parsers)
- alt(name, input, *parsers, true)
- gems/redis-namespace-1.6.0/lib/redis/namespace.rb
- def eval(*args)
- call_with_namespace(:eval, *args)
- gems/redis-namespace-1.6.0/lib/redis/namespace.rb
- def method_missing(command, *args, &block)
- call_with_namespace(command, *args, &block)
- gems/redis-namespace-1.6.0/lib/redis/namespace.rb
- def call_with_namespace(command, *args, &block)
- # Modify the local *args array in-place, no need to copy it.
- gems/specinfra-2.81.0/lib/specinfra/command_factory.rb
- def get(meth, *args)
- command_class.send(method, *args)
- gems/specinfra-2.81.0/lib/specinfra/runner.rb
- def self.method_missing(meth, *args)
- processor.send(meth, *args)
- gems/specinfra-2.81.0/lib/specinfra/runner.rb
- def self.run(meth, *args)
- cmd = Specinfra.command.get(meth, *args)
- gems/specinfra-2.81.0/lib/specinfra/helper/set.rb
- def set(param, *value)
- Specinfra.configuration.send(param, *value)
- gems/safe_yaml-1.0.5/lib/safe_yaml.rb
- def self.safe_load(*args)
- SafeYAML.load(*args)
- gems/safe_yaml-1.0.5/lib/safe_yaml.rb
- def self.safe_load_file(*args)
- SafeYAML.load_file(*args)
- gems/actiontext-6.0.0/lib/action_text/attachments/caching.rb
- def cache_key(*args)
- [self.class.name, cache_digest, *attachable.cache_key(*args)].join("/")
- gems/faraday-0.15.4/lib/faraday/connection.rb
- def set_authorization_header(header_type, *args)
- header(*args)
- gems/faraday-0.15.4/lib/faraday/utils.rb
- def fetch(k, *args, &block)
- super(key, *args, &block)
- gems/faraday-0.15.4/lib/faraday/rack_builder.rb
- def use(klass, *args, &block)
- use_symbol(Faraday::Middleware, klass, *args, &block)
- gems/faraday-0.15.4/lib/faraday/rack_builder.rb
- def request(key, *args, &block)
- use_symbol(Faraday::Request, key, *args, &block)
- gems/faraday-0.15.4/lib/faraday/rack_builder.rb
- def response(key, *args, &block)
- use_symbol(Faraday::Response, key, *args, &block)
- gems/faraday-0.15.4/lib/faraday/rack_builder.rb
- def adapter(key, *args, &block)
- use_symbol(Faraday::Adapter, key, *args, &block)
- gems/faraday-0.15.4/lib/faraday/rack_builder.rb
- def insert(index, *args, &block)
- handler = self.class::Handler.new(*args, &block)
- gems/faraday-0.15.4/lib/faraday/rack_builder.rb
- def insert_after(index, *args, &block)
- insert(index + 1, *args, &block)
- gems/faraday-0.15.4/lib/faraday/rack_builder.rb
- def swap(index, *args, &block)
- insert(index, *args, &block)
- gems/faraday-0.15.4/lib/faraday/rack_builder.rb
- def use_symbol(mod, key, *args, &block)
- use(mod.lookup_middleware(key), *args, &block)
- gems/faraday-0.15.4/lib/faraday.rb
- def method_missing(name, *args, &block)
- default_connection.send(name, *args, &block)
- gems/uber-0.1.0/lib/uber/options.rb
- def evaluate(context, *args)
- evaluated[k] = v.(context, *args)
- gems/uber-0.1.0/lib/uber/options.rb
- def eval(key, *args)
- self[key].(*args)
- gems/uber-0.1.0/lib/uber/options.rb
- def call(context, *args)
- evaluate_for(context, *args)
- gems/uber-0.1.0/lib/uber/options.rb
- def evaluate_for(*args)
- return proc!(*args) if @proc
- gems/uber-0.1.0/lib/uber/options.rb
- def method!(context, *args)
- context.send(@value, *args)
- gems/uber-0.1.0/lib/uber/options.rb
- def proc!(context, *args)
- @value.call(*args)
- gems/uber-0.1.0/lib/uber/options.rb
- def callable!(context, *args)
- @value.call(context, *args)
- gems/uber-0.1.0/lib/uber/delegates.rb
- def delegates(model, *names)
- def_delegators model, *names
- gems/uber-0.1.0/lib/uber/builder.rb
- def call(context, *args)
- klass = block.(context, *args) and return klass # Uber::Value#call()
- gems/uber-0.1.0/lib/uber/builder.rb
- def build!(context, *args)
- builders.(context, *args)
- gems/redis-4.1.2/lib/redis/distributed.rb
- def mget(*keys)
- mapped_mget(*keys).values_at(*keys)
- gems/redis-4.1.2/lib/redis/distributed.rb
- def bitop(operation, destkey, *keys)
- node.bitop(operation, destkey, *keys)
- gems/redis-4.1.2/lib/redis/distributed.rb
- def sdiff(*keys)
- node.sdiff(*keys)
- gems/redis-4.1.2/lib/redis/distributed.rb
- def sdiffstore(destination, *keys)
- node.sdiffstore(destination, *keys)
- gems/redis-4.1.2/lib/redis/distributed.rb
- def sinter(*keys)
- node.sinter(*keys)
- gems/redis-4.1.2/lib/redis/distributed.rb
- def sinterstore(destination, *keys)
- node.sinterstore(destination, *keys)
- gems/redis-4.1.2/lib/redis/distributed.rb
- def sunion(*keys)
- node.sunion(*keys)
- gems/redis-4.1.2/lib/redis/distributed.rb
- def sunionstore(destination, *keys)
- node.sunionstore(destination, *keys)
- gems/redis-4.1.2/lib/redis/distributed.rb
- def zadd(key, *args)
- node_for(key).zadd(key, *args)
- gems/redis-4.1.2/lib/redis/distributed.rb
- def hmset(key, *attrs)
- node_for(key).hmset(key, *attrs)
- gems/redis-4.1.2/lib/redis/distributed.rb
- def hmget(key, *fields)
- node_for(key).hmget(key, *fields)
- gems/redis-4.1.2/lib/redis/distributed.rb
- def mapped_hmget(key, *fields)
- Hash[*fields.zip(hmget(key, *fields)).flatten]
- gems/redis-4.1.2/lib/redis/distributed.rb
- def hdel(key, *fields)
- node_for(key).hdel(key, *fields)
- gems/redis-4.1.2/lib/redis/distributed.rb
- def subscribe(channel, *channels, &block)
- node.subscribe(channel, *channels, &block)
- gems/redis-4.1.2/lib/redis/distributed.rb
- def unsubscribe(*channels)
- @subscribed_node.unsubscribe(*channels)
- gems/redis-4.1.2/lib/redis/distributed.rb
- def script(subcommand, *args)
- on_each_node(:script, subcommand, *args)
- gems/redis-4.1.2/lib/redis/distributed.rb
- def pfmerge(dest_key, *source_key)
- ensure_same_node(:pfmerge, [dest_key, *source_key]) do |node|
- gems/redis-4.1.2/lib/redis/distributed.rb
- def on_each_node(command, *args)
- node.send(command, *args)
- gems/redis-4.1.2/lib/redis/cluster.rb
- def try_send(node, method_name, *args, retry_count: 3, &block)
- node.public_send(method_name, *args, &block)
- gems/redis-4.1.2/lib/redis/connection/ruby.rb
- def initialize(*args)
- super(*args)
- gems/redis-4.1.2/lib/redis/subscribe.rb
- def unsubscribe(*channels)
- call([:unsubscribe, *channels])
- gems/redis-4.1.2/lib/redis/subscribe.rb
- def punsubscribe(*channels)
- call([:punsubscribe, *channels])
- gems/redis-4.1.2/lib/redis.rb
- def mapped_mget(*keys)
- mget(*keys) do |reply|
- gems/redis-4.1.2/lib/redis.rb
- def mapped_hmget(key, *fields)
- hmget(key, *fields) do |reply|
- gems/redis-4.1.2/lib/redis.rb
- def hdel(key, *fields)
- client.call([:hdel, key, *fields])
- gems/redis-4.1.2/lib/redis.rb
- def unsubscribe(*channels)
- client.unsubscribe(*channels)
- gems/redis-4.1.2/lib/redis.rb
- def punsubscribe(*channels)
- client.punsubscribe(*channels)
- gems/redis-4.1.2/lib/redis.rb
- def pfmerge(dest_key, *source_key)
- client.call([:pfmerge, dest_key, *source_key], &BoolifySet)
- gems/redis-4.1.2/lib/redis.rb
- def geoadd(key, *member)
- client.call([:geoadd, key, *member])
- gems/oauth-0.5.4/lib/oauth/consumer.rb
- def get_access_token(request_token, request_options = {}, *arguments, &block)
- response = token_request(http_method, (access_token_url? ? access_token_url : access_token_path), request_token, request_options, *arguments, &block)
- gems/oauth-0.5.4/lib/oauth/consumer.rb
- def get_request_token(request_options = {}, *arguments, &block)
- *arguments, &block)
- gems/oauth-0.5.4/lib/oauth/consumer.rb
- def request(http_method, path, token = nil, request_options = {}, *arguments)
- req = create_signed_request(http_method, path, token, request_options, *arguments)
- gems/oauth-0.5.4/lib/oauth/consumer.rb
- def create_signed_request(http_method, path, token = nil, request_options = {}, *arguments)
- request = create_http_request(http_method, path, *arguments)
- gems/oauth-0.5.4/lib/oauth/consumer.rb
- def token_request(http_method, path, token = nil, request_options = {}, *arguments)
- response = request(http_method, path, token, request_options, *arguments)
- gems/oauth-0.5.4/lib/oauth/tokens/access_token.rb
- def request(http_method, path, *arguments)
- @response = super(http_method, path, *arguments)
- gems/oauth-0.5.4/lib/oauth/tokens/request_token.rb
- def get_access_token(options = {}, *arguments)
- response = consumer.token_request(consumer.http_method, (consumer.access_token_url? ? consumer.access_token_url : consumer.access_token_path), self, options, *arguments)
- gems/oauth-0.5.4/lib/oauth/tokens/consumer_token.rb
- def request(http_method, path, *arguments)
- @response = consumer.request(http_method, path, self, {}, *arguments)
- gems/term-ansicolor-1.7.1/lib/term/ansicolor/rgb_triple.rb
- def method_missing(name, *args, &block)
- to_hsl_triple.send(name, *args, &block)
- gems/term-ansicolor-1.7.1/lib/term/ansicolor/hsl_triple.rb
- def method_missing(name, *args, &block)
- to_rgb_triple.send(name, *args, &block)
- gems/compass-1.0.3/lib/compass/sass_extensions/sprites/sprite_methods.rb
- def log(action, filename, *extra)
- options[:compass][:logger].record(action, relativize(filename), *extra)
- gems/compass-1.0.3/lib/compass/sass_extensions/sprites/sprite_map.rb
- def method_missing(meth, *args, &block)
- @evaluation_context.send(meth, *args, &block)
- gems/compass-1.0.3/lib/compass/sass_extensions/functions.rb
- def declare(*args)
- Sass::Script::Functions.declare(*args)
- gems/compass-1.0.3/lib/compass/configuration/helpers.rb
- def sass_compiler(*args)
- Compass::SassCompiler.new(*args)
- gems/compass-1.0.3/lib/compass/app_integration/stand_alone.rb
- def installer(*args)
- Installer.new(*args)
- gems/compass-1.0.3/lib/compass/installers/template_context.rb
- def self.ctx(*arguments)
- new(*arguments).send(:get_binding)
- gems/ruby_parser-3.13.1/lib/ruby_parser_extras.rb
- def s(*args)
- result = Sexp.new(*args)
- gems/kaminari-core-1.1.1/lib/kaminari/helpers/paginator.rb
- def method_missing(name, *args, &block)
- @template.respond_to?(name) ? @template.send(name, *args, &block) : super
- gems/spring-2.1.0/lib/spring/watcher.rb
- def self.watch(*items)
- watcher.add(*items)
- gems/addressable-2.7.0/lib/addressable/uri.rb
- def omit!(*components)
- replace_self(self.omit(*components))
- gems/amq-protocol-2.3.0/lib/amq/protocol/frame.rb
- def self.new(original_type, *args)
- klass.new(*args)
- gems/amq-protocol-2.3.0/lib/amq/protocol/client.rb
- def self.instantiate(*args, &block)
- self.new(*args, &block)
- gems/multipart-post-2.1.1/lib/composite_io.rb
- def method_missing(*args)
- @io.send(*args)
- gems/polyglot-0.3.5/lib/polyglot.rb
- def self.load(*a, &b)
- source_file, loader = Polyglot.find(file, *a[1..-1], &b)
- gems/polyglot-0.3.5/lib/polyglot.rb
- def require(*a, &b)
- polyglot_original_require(*a, &b)
- gems/connection_pool-2.2.2/lib/connection_pool.rb
- def respond_to?(id, *args)
- METHODS.include?(id) || with { |c| c.respond_to?(id, *args) }
- gems/connection_pool-2.2.2/lib/connection_pool.rb
- def method_missing(name, *args, &block)
- connection.send(name, *args, &block)
- gems/poltergeist-1.18.1/lib/capybara/poltergeist/node.rb
- def command(name, *args)
- browser.send(name, page_id, id, *args)
- gems/poltergeist-1.18.1/lib/capybara/poltergeist/client.rb
- def self.start(*args)
- client = new(*args)
- gems/poltergeist-1.18.1/lib/capybara/poltergeist/driver.rb
- def evaluate_script(script, *args)
- result = browser.evaluate(script, *args.map { |arg| arg.is_a?(Capybara::Poltergeist::Node) ? arg.native : arg})
- gems/poltergeist-1.18.1/lib/capybara/poltergeist/driver.rb
- def evaluate_async_script(script, *args)
- result = browser.evaluate_async(script, session_wait_time, *args.map { |arg| arg.is_a?(Capybara::Poltergeist::Node) ? arg.native : arg})
- gems/poltergeist-1.18.1/lib/capybara/poltergeist/driver.rb
- def execute_script(script, *args)
- browser.execute(script, *args.map { |arg| arg.is_a?(Capybara::Poltergeist::Node) ? arg.native : arg})
- gems/poltergeist-1.18.1/lib/capybara/poltergeist/browser.rb
- def evaluate(script, *args)
- command 'evaluate', script, *args
- gems/poltergeist-1.18.1/lib/capybara/poltergeist/browser.rb
- def evaluate_async(script, wait_time, *args)
- command 'evaluate_async', script, wait_time, *args
- gems/poltergeist-1.18.1/lib/capybara/poltergeist/browser.rb
- def execute(script, *args)
- command 'execute', script, *args
- gems/poltergeist-1.18.1/lib/capybara/poltergeist/browser.rb
- def command(name, *args)
- cmd = Command.new(name, *args)
- gems/treetop-1.6.10/lib/treetop/runtime/compiled_parser.rb
- def instantiate_node(node_type,*args)
- node_type.new(*args)
- gems/temple-0.8.1/lib/temple/mixins/dispatcher.rb
- def on_if(condition, *cases)
- [:if, condition, *cases.compact.map {|e| compile(e) }]
- gems/temple-0.8.1/lib/temple/mixins/dispatcher.rb
- def on_case(arg, *cases)
- [:case, arg, *cases.map {|condition, exp| [condition, compile(exp)] }]
- gems/temple-0.8.1/lib/temple/mixins/dispatcher.rb
- def on_cond(*cases)
- [:cond, *cases.map {|condition, exp| [condition, compile(exp)] }]
- gems/temple-0.8.1/lib/temple/map.rb
- def initialize(*map)
- super({}, *map)
- gems/temple-0.8.1/lib/temple/map.rb
- def initialize(*map, &block)
- super(*map)
- gems/temple-0.8.1/lib/temple/filters/control_flow.rb
- def on_cond(*cases)
- on_case(nil, *cases)
- gems/temple-0.8.1/lib/temple/erb/trimming.rb
- def on_multi(*exps)
- [:multi, *exps]
- gems/temple-0.8.1/lib/temple/templates/tilt.rb
- def self.register_as(*names)
- ::Tilt.register(self, *names.map(&:to_s))
- gems/temple-0.8.1/lib/temple/html/attribute_merger.rb
- def on_html_attrs(*attrs)
- [:html, :attrs, *attrs]
- gems/temple-0.8.1/lib/temple/html/dispatcher.rb
- def on_html_attrs(*attrs)
- [:html, :attrs, *attrs.map {|a| compile(a) }]
- gems/temple-0.8.1/lib/temple/html/attribute_remover.rb
- def on_html_attrs(*attrs)
- [:multi, *attrs.map {|attr| compile(attr) }]
- gems/temple-0.8.1/lib/temple/html/attribute_sorter.rb
- def on_html_attrs(*attrs)
- [:html, :attrs, *attrs.sort_by do |attr|
- gems/temple-0.8.1/lib/temple/html/fast.rb
- def on_html_attrs(*attrs)
- [:multi, *attrs.map {|attr| compile(attr) }]
- gems/shoulda-matchers-4.1.2/lib/shoulda/matchers/active_record/association_matcher.rb
- def add_submatcher(matcher_class, *args)
- submatchers << matcher_class.new(*args)
- gems/shoulda-matchers-4.1.2/lib/shoulda/matchers/active_record/validate_uniqueness_of_matcher.rb
- def scoped_to(*scopes)
- @options[:scopes] = [*scopes].flatten.map(&:to_sym)
- gems/shoulda-matchers-4.1.2/lib/shoulda/matchers/active_model/allow_value_matcher.rb
- def allow_value(*values)
- AllowValueMatcher.new(*values)
- gems/celluloid-pool-0.20.5/lib/celluloid/supervision/container/pool.rb
- def _send_(method, *args, &block)
- actor._send_ method, *args, &block
- gems/celluloid-pool-0.20.5/lib/celluloid/supervision/container/pool.rb
- def method_missing(method, *args, &block)
- _send_ method, *args, &block
- gems/guard-2.15.1/lib/guard/plugin.rb
- def self.notify(guard_plugin, event, *args)
- listener.call(guard_plugin, event, *args)
- gems/guard-2.15.1/lib/guard/plugin.rb
- def hook(event, *args)
- self.class.notify(self, hook_name.to_sym, *args)
- gems/guard-2.15.1/lib/guard/guardfile/generator.rb
- def binwrite(*args)
- IO.binwrite(to_s, *args)
- gems/guard-2.15.1/lib/guard/guardfile/generator.rb
- def _ui(*args)
- UI.send(*args)
- gems/guard-2.15.1/lib/guard/deprecated/guard.rb
- def add_guard(*args)
- add_plugin(*args)
- gems/guard-2.15.1/lib/guard/runner.rb
- def _supervise(plugin, task, *args)
- plugin.hook("#{ task }_begin", *args)
- gems/tzinfo-1.2.5/lib/tzinfo/data_source.rb
- def self.set(data_source_or_type, *args)
- @@instance = ZoneinfoDataSource.new(*args)
- gems/tzinfo-1.2.5/lib/tzinfo/ruby_data_source.rb
- def require_data(*file)
- self.class.require_data(*file)
- gems/tzinfo-1.2.5/lib/tzinfo/ruby_data_source.rb
- def self.require_data(*file)
- require File.join('tzinfo', 'data', *file)
- gems/formatador-0.2.5/lib/formatador.rb
- def self.#{method}(*args, &block)
- Thread.current[:formatador].#{method}(*args, &block)
- gems/bindex-0.8.1/lib/skiptrace/binding_locations.rb
- def method_missing(name, *args, &block)
- case maybe_location = @locations.public_send(name, *args, &block)
- gems/celluloid-0.17.4/lib/celluloid.rb
- def new(*args, &block)
- proxy._send_(:initialize, *args, &block)
- gems/celluloid-0.17.4/lib/celluloid.rb
- def new_link(*args, &block)
- proxy._send_(:initialize, *args, &block)
- gems/celluloid-0.17.4/lib/celluloid.rb
- def run(*args, &block)
- Actor.join(new(*args, &block))
- gems/celluloid-0.17.4/lib/celluloid.rb
- def async(meth = nil, *args, &block)
- Thread.current[:celluloid_actor].behavior_proxy.async meth, *args, &block
- gems/celluloid-0.17.4/lib/celluloid.rb
- def future(meth = nil, *args, &block)
- Thread.current[:celluloid_actor].behavior_proxy.future meth, *args, &block
- gems/celluloid-0.17.4/lib/celluloid/actor.rb
- def call(mailbox, meth, *args, &block)
- proxy.method_missing(meth, *args, &block)
- gems/celluloid-0.17.4/lib/celluloid/actor.rb
- def async(mailbox, meth, *args, &block)
- proxy.method_missing(meth, *args, &block)
- gems/celluloid-0.17.4/lib/celluloid/actor.rb
- def future(mailbox, meth, *args, &block)
- proxy.method_missing(meth, *args, &block)
- gems/celluloid-0.17.4/lib/celluloid/actor.rb
- def handle(*patterns, &block)
- @handlers.handle(*patterns, &block)
- gems/celluloid-0.17.4/lib/celluloid/proxy/cell.rb
- def _send_(meth, *args, &block)
- method_missing :__send__, meth, *args, &block
- gems/celluloid-0.17.4/lib/celluloid/proxy/cell.rb
- def async(method_name = nil, *args, &block)
- @async_proxy.method_missing method_name, *args, &block
- gems/celluloid-0.17.4/lib/celluloid/proxy/cell.rb
- def future(method_name = nil, *args, &block)
- @future_proxy.method_missing method_name, *args, &block
- gems/celluloid-0.17.4/lib/celluloid/proxy/sync.rb
- def method_missing(meth, *args, &block)
- # return actor.__send__(*args, &block)
- gems/money-6.13.4/lib/money/money/formatter.rb
- def initialize(money, *rules)
- @rules = FormattingRules.new(@currency, *rules)
- gems/money-6.13.4/lib/money/money.rb
- def format(*rules)
- Money::Formatter.new(self, *rules).to_s
- gems/sprockets-3.7.2/lib/sprockets/processing.rb
- def register_preprocessor(*args, &block)
- register_config_processor(:preprocessors, *args, &block)
- gems/sprockets-3.7.2/lib/sprockets/processing.rb
- def register_postprocessor(*args, &block)
- register_config_processor(:postprocessors, *args, &block)
- gems/sprockets-3.7.2/lib/sprockets/processing.rb
- def unregister_preprocessor(*args)
- unregister_config_processor(:preprocessors, *args)
- gems/sprockets-3.7.2/lib/sprockets/processing.rb
- def unregister_postprocessor(*args)
- unregister_config_processor(:postprocessors, *args)
- gems/sprockets-3.7.2/lib/sprockets/processing.rb
- def register_bundle_processor(*args, &block)
- register_config_processor(:bundle_processors, *args, &block)
- gems/sprockets-3.7.2/lib/sprockets/processing.rb
- def unregister_bundle_processor(*args)
- unregister_config_processor(:bundle_processors, *args)
- gems/sprockets-3.7.2/lib/sprockets/utils.rb
- def hash_reassoc(hash, *keys, &block)
- hash_reassoc(value, *keys[1..-1], &block)
- gems/sprockets-3.7.2/lib/sprockets/eco_template.rb
- def self.call(*args)
- EcoProcessor.call(*args)
- gems/sprockets-3.7.2/lib/sprockets/manifest.rb
- def find(*args)
- return to_enum(__method__, *args) unless block_given?
- gems/sprockets-3.7.2/lib/sprockets/manifest.rb
- def find_sources(*args)
- return to_enum(__method__, *args) unless block_given?
- gems/sprockets-3.7.2/lib/sprockets/manifest.rb
- def compile(*args)
- find(*args) do |asset|
- gems/sprockets-3.7.2/lib/sprockets/legacy.rb
- def each_logical_path(*args, &block)
- return to_enum(__method__, *args) unless block_given?
- gems/sprockets-3.7.2/lib/sprockets/coffee_script_template.rb
- def self.call(*args)
- CoffeeScriptProcessor.call(*args)
- gems/sprockets-3.7.2/lib/sprockets/ejs_template.rb
- def self.call(*args)
- EjsProcessor.call(*args)
- gems/sprockets-3.7.2/lib/sprockets/environment.rb
- def find_asset(*args)
- cached.find_asset(*args)
- gems/sprockets-3.7.2/lib/sprockets/environment.rb
- def find_all_linked_assets(*args, &block)
- cached.find_all_linked_assets(*args, &block)
- gems/sprockets-3.7.2/lib/sprockets/environment.rb
- def load(*args)
- cached.load(*args)
- gems/sexp_processor-4.12.1/lib/sexp.rb
- def s *args, &blk
- Sexp.new(*args)
- gems/sexp_processor-4.12.1/lib/sexp.rb
- def self.s *args
- Matcher.new(*args)
- gems/sexp_processor-4.12.1/lib/sexp.rb
- def self.any *args
- Any.new(*args)
- gems/sexp_processor-4.12.1/lib/sexp.rb
- def self.all *args
- All.new(*args)
- gems/redis-store-1.6.0/lib/redis/store/serialization.rb
- def mget(*keys, &blk)
- super(*keys) do |reply|
- gems/redis-store-1.6.0/lib/redis/store/namespace.rb
- def del(*keys)
- super(*keys.map { |key| interpolate(key) }) if keys.any?
- gems/redis-store-1.6.0/lib/redis/store/namespace.rb
- def watch(*keys)
- super(*keys.map { |key| interpolate(key) }) if keys.any?
- gems/redis-store-1.6.0/lib/redis/store/namespace.rb
- def mget(*keys, &blk)
- super(*keys.map { |key| interpolate(key) }, options, &blk)
- gems/hitimes-1.3.1/lib/hitimes/stats.rb
- def to_json( *args )
- h = to_hash( *args )
- gems/hitimes-1.3.1/lib/hitimes/paths.rb
- def self.lib_path(*args)
- self.sub_path("lib", *args)
- gems/hitimes-1.3.1/lib/hitimes/paths.rb
- def self.sub_path(sub,*args)
- sp = ::File.join(sp, *args) if args
- gems/mixlib-cli-2.1.1/lib/mixlib/cli.rb
- def initialize(*args)
- super(*args)
- gems/devise-4.7.1/lib/devise/omniauth/url_helpers.rb
- def omniauth_authorize_path(resource_or_scope, provider, *args)
- _devise_route_context.send("#{scope}_#{provider}_omniauth_authorize_path", *args)
- gems/devise-4.7.1/lib/devise/omniauth/url_helpers.rb
- def omniauth_authorize_url(resource_or_scope, provider, *args)
- _devise_route_context.send("#{scope}_#{provider}_omniauth_authorize_url", *args)
- gems/devise-4.7.1/lib/devise/omniauth/url_helpers.rb
- def omniauth_callback_path(resource_or_scope, provider, *args)
- _devise_route_context.send("#{scope}_#{provider}_omniauth_callback_path", *args)
- gems/devise-4.7.1/lib/devise/omniauth/url_helpers.rb
- def omniauth_callback_url(resource_or_scope, provider, *args)
- _devise_route_context.send("#{scope}_#{provider}_omniauth_callback_url", *args)
- gems/devise-4.7.1/lib/devise/models/authenticatable.rb
- def send_devise_notification(notification, *args)
- message = devise_mailer.send(notification, self, *args)
- gems/devise-4.7.1/lib/devise/models/database_authenticatable.rb
- def update_with_password(params, *options)
- update(params, *options)
- gems/devise-4.7.1/lib/devise/models/database_authenticatable.rb
- def update_without_password(params, *options)
- result = update(params, *options)
- gems/devise-4.7.1/lib/devise/models/rememberable.rb
- def serialize_from_cookie(*args)
- id, token, generated_at = *args
- gems/parser-2.6.4.0/lib/parser/lexer.rb
- def push_literal(*args)
- new_literal = Literal.new(self, *args)
- gems/sass-listen-4.0.0/lib/sass-listen.rb
- def to(*args, &block)
- Listener.new(*args, &block).tap do |listener|
- gems/sass-listen-4.0.0/lib/sass-listen/event/loop.rb
- def _sleep(*args)
- Kernel.sleep(*args)
- gems/sass-listen-4.0.0/lib/sass-listen/event/processor.rb
- def _sleep(_local_reason, *args)
- sleep_duration = config.sleep(*args)
- gems/sass-listen-4.0.0/lib/sass-listen/event/config.rb
- def sleep(*args)
- Kernel.sleep(*args)
- gems/sass-listen-4.0.0/lib/sass-listen/event/config.rb
- def call(*args)
- @block.call(*args) if @block
- gems/sass-listen-4.0.0/lib/sass-listen/queue_optimizer.rb
- def debug(*args, &block)
- SassListen.logger.debug(*args, &block)
- gems/sass-listen-4.0.0/lib/sass-listen/adapter/base.rb
- def _log(*args, &block)
- self.class.send(:_log, *args, &block)
- gems/sass-listen-4.0.0/lib/sass-listen/adapter/base.rb
- def self._log(*args, &block)
- SassListen::Logger.send(*args, &block)
- gems/sass-listen-4.0.0/lib/sass-listen/adapter/bsd.rb
- def _find(*paths, &block)
- Find.send(:find, *paths, &block)
- gems/highline-2.0.2/lib/highline.rb
- def choose(*items, &details)
- menu.choices(*items) unless items.empty?
- gems/highline-2.0.2/lib/highline.rb
- def color(string, *colors)
- HighLine.Style(*colors).color(string)
- gems/highline-2.0.2/lib/highline.rb
- def color_code(*colors)
- HighLine.Style(*colors).code
- gems/highline-2.0.2/lib/highline.rb
- def puts(*args)
- @output.puts(*args)
- gems/highline-2.0.2/lib/highline/menu.rb
- def build_item(*args)
- Menu::Item.new(*args)
- gems/highline-2.0.2/lib/highline/style.rb
- def self.Style(*args)
- find_or_create_style_list(*args)
- gems/highline-2.0.2/lib/highline/style.rb
- def self.rgb(*colors)
- hex = rgb_hex(*colors)
- gems/highline-2.0.2/lib/highline/import.rb
- def or_ask(*args, &details)
- ask(*args) do |question|
- gems/mysql2-0.5.2/lib/mysql2/em.rb
- def close(*args)
- super(*args)
- gems/activestorage-6.0.0/lib/active_storage/previewer.rb
- def draw(*argv) #:doc:
- capture(*argv, to: file)
- gems/activestorage-6.0.0/lib/active_storage/service/mirror_service.rb
- def perform_across_services(method, *args)
- service.public_send method, *args
- gems/activestorage-6.0.0/lib/active_storage/service.rb
- def open(*args, &block)
- ActiveStorage::Downloader.new(self).open(*args, &block)
- gems/execjs-2.7.0/lib/execjs/ruby_racer_runtime.rb
- def call(properties, *args)
- unbox @v8_context.eval(properties).call(*args)
- gems/execjs-2.7.0/lib/execjs/ruby_rhino_runtime.rb
- def call(properties, *args)
- unbox @rhino_context.eval(properties).call(*args)
- gems/execjs-2.7.0/lib/execjs/duktape_runtime.rb
- def call(identifier, *args)
- @ctx.call_prop(identifier.split("."), *args)
- gems/minitest-5.11.3/lib/minitest/pride_plugin.rb
- def puts *o # :nodoc:
- io.puts(*o)
- gems/minitest-5.11.3/lib/minitest/pride_plugin.rb
- def method_missing msg, *args # :nodoc:
- io.send(msg, *args)
- gems/minitest-5.11.3/lib/minitest/assertions.rb
- def assert_raises *exp
- rescue *exp => e
- gems/minitest-5.11.3/lib/minitest/spec.rb
- def describe desc, *additional_desc, &block # :doc:
- name = [stack.last, desc, *additional_desc].compact.join("::")
- gems/minitest-5.11.3/lib/minitest/spec.rb
- def register_spec_type *args, &block
- matcher, klass = *args
- gems/minitest-5.11.3/lib/minitest/spec.rb
- def spec_type desc, *additional
- matcher.call desc, *additional
- gems/minitest-5.11.3/lib/minitest/mock.rb
- def method_missing sym, *args, &block # :nodoc:
- return @delegator.public_send(sym, *args, &block)
- gems/minitest-5.11.3/lib/minitest/mock.rb
- def stub name, val_or_callable, *block_args
- blk.call(*block_args) if blk
- gems/activesupport-6.0.0/lib/active_support/multibyte/chars.rb
- def method_missing(method, *args, &block)
- result = @wrapped_string.__send__(method, *args, &block)
- gems/activesupport-6.0.0/lib/active_support/multibyte/chars.rb
- def split(*args)
- @wrapped_string.split(*args).map { |i| self.class.new(i) }
- gems/activesupport-6.0.0/lib/active_support/multibyte/chars.rb
- def slice!(*args)
- string_sliced = @wrapped_string.slice!(*args)
- gems/activesupport-6.0.0/lib/active_support/reloader.rb
- def self.to_prepare(*args, &block)
- set_callback(:prepare, *args, &block)
- gems/activesupport-6.0.0/lib/active_support/reloader.rb
- def self.before_class_unload(*args, &block)
- set_callback(:class_unload, *args, &block)
- gems/activesupport-6.0.0/lib/active_support/reloader.rb
- def self.after_class_unload(*args, &block)
- set_callback(:class_unload, :after, *args, &block)
- gems/activesupport-6.0.0/lib/active_support/current_attributes.rb
- def method_missing(name, *args, &block)
- send(name, *args, &block)
- gems/activesupport-6.0.0/lib/active_support/proxy_object.rb
- def raise(*args)
- ::Object.send(:raise, *args)
- gems/activesupport-6.0.0/lib/active_support/ordered_hash.rb
- def select(*args, &block)
- dup.tap { |hash| hash.select!(*args, &block) }
- gems/activesupport-6.0.0/lib/active_support/ordered_hash.rb
- def reject(*args, &block)
- dup.tap { |hash| hash.reject!(*args, &block) }
- gems/activesupport-6.0.0/lib/active_support/per_thread_registry.rb
- def method_missing(name, *args, &block)
- send(name, *args, &block)
- gems/activesupport-6.0.0/lib/active_support/key_generator.rb
- def generate_key(*args)
- @cache_keys[args.join] ||= @key_generator.generate_key(*args)
- gems/activesupport-6.0.0/lib/active_support/cache/redis_cache_store.rb
- def read_multi(*names)
- read_multi_mget(*names).tap do |results|
- gems/activesupport-6.0.0/lib/active_support/option_merger.rb
- def method_missing(method, *arguments, &block)
- @context.__send__(method, *arguments, &block)
- gems/activesupport-6.0.0/lib/active_support/notifications.rb
- def publish(name, *args)
- notifier.publish(name, *args)
- gems/activesupport-6.0.0/lib/active_support/notifications.rb
- def subscribe(*args, &block)
- notifier.subscribe(*args, &block)
- gems/activesupport-6.0.0/lib/active_support/notifications.rb
- def subscribed(callback, *args, &block)
- subscriber = subscribe(*args, &callback)
- gems/activesupport-6.0.0/lib/active_support/hash_with_indifferent_access.rb
- def self.[](*args)
- new.merge!(Hash[*args])
- gems/activesupport-6.0.0/lib/active_support/hash_with_indifferent_access.rb
- def fetch(key, *extras)
- super(convert_key(key), *extras)
- gems/activesupport-6.0.0/lib/active_support/hash_with_indifferent_access.rb
- def dig(*args)
- super(*args)
- gems/activesupport-6.0.0/lib/active_support/hash_with_indifferent_access.rb
- def default(*args)
- super(*args.map { |arg| convert_key(arg) })
- gems/activesupport-6.0.0/lib/active_support/hash_with_indifferent_access.rb
- def values_at(*keys)
- super(*keys.map { |key| convert_key(key) })
- gems/activesupport-6.0.0/lib/active_support/hash_with_indifferent_access.rb
- def fetch_values(*indices, &block)
- super(*indices.map { |key| convert_key(key) }, &block)
- gems/activesupport-6.0.0/lib/active_support/hash_with_indifferent_access.rb
- def select(*args, &block)
- dup.tap { |hash| hash.select!(*args, &block) }
- gems/activesupport-6.0.0/lib/active_support/hash_with_indifferent_access.rb
- def reject(*args, &block)
- dup.tap { |hash| hash.reject!(*args, &block) }
- gems/activesupport-6.0.0/lib/active_support/hash_with_indifferent_access.rb
- def transform_values(*args, &block)
- dup.tap { |hash| hash.transform_values!(*args, &block) }
- gems/activesupport-6.0.0/lib/active_support/hash_with_indifferent_access.rb
- def transform_keys(*args, &block)
- dup.tap { |hash| hash.transform_keys!(*args, &block) }
- gems/activesupport-6.0.0/lib/active_support/message_verifier.rb
- def verify(*args)
- verified(*args) || raise(InvalidSignature)
- gems/activesupport-6.0.0/lib/active_support/values/time_zone.rb
- def local(*args)
- time = Time.utc(*args)
- gems/activesupport-6.0.0/lib/active_support/values/time_zone.rb
- def at(*args)
- Time.at(*args).utc.in_time_zone(self)
- gems/activesupport-6.0.0/lib/active_support/testing/setup_and_teardown.rb
- def setup(*args, &block)
- set_callback(:setup, :before, *args, &block)
- gems/activesupport-6.0.0/lib/active_support/testing/setup_and_teardown.rb
- def teardown(*args, &block)
- set_callback(:teardown, :after, *args, &block)
- gems/activesupport-6.0.0/lib/active_support/core_ext/time/calculations.rb
- def at_with_coercion(*args)
- return at_without_coercion(*args) if args.size != 1
- gems/activesupport-6.0.0/lib/active_support/core_ext/enumerable.rb
- def including(*elements)
- to_a.including(*elements)
- gems/activesupport-6.0.0/lib/active_support/core_ext/enumerable.rb
- def without(*elements)
- excluding(*elements)
- gems/activesupport-6.0.0/lib/active_support/core_ext/array/access.rb
- def without(*elements)
- excluding(*elements)
- gems/activesupport-6.0.0/lib/active_support/core_ext/kernel/reporting.rb
- def suppress(*exception_classes)
- rescue *exception_classes
- gems/activesupport-6.0.0/lib/active_support/core_ext/kernel/singleton_class.rb
- def class_eval(*args, &block)
- singleton_class.class_eval(*args, &block)
- gems/activesupport-6.0.0/lib/active_support/core_ext/object/try.rb
- def try(method_name = nil, *args, &b)
- public_send(method_name, *args, &b)
- gems/activesupport-6.0.0/lib/active_support/core_ext/object/try.rb
- def try!(method_name = nil, *args, &b)
- public_send(method_name, *args, &b)
- gems/activesupport-6.0.0/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb
- def thread_mattr_accessor(*syms, instance_reader: true, instance_writer: true, instance_accessor: true)
- thread_mattr_reader(*syms, instance_reader: instance_reader, instance_accessor: instance_accessor)
- gems/activesupport-6.0.0/lib/active_support/core_ext/module/deprecation.rb
- def deprecate(*method_names)
- ActiveSupport::Deprecation.deprecate_methods(self, *method_names)
- gems/activesupport-6.0.0/lib/active_support/core_ext/module/attr_internal.rb
- def attr_internal_accessor(*attrs)
- attr_internal_reader(*attrs)
- gems/activesupport-6.0.0/lib/active_support/core_ext/module/attribute_accessors.rb
- def mattr_accessor(*syms, instance_reader: true, instance_writer: true, instance_accessor: true, default: nil, &blk)
- mattr_reader(*syms, instance_reader: instance_reader, instance_accessor: instance_accessor, default: default, &blk)
- gems/activesupport-6.0.0/lib/active_support/core_ext/hash/slice.rb
- def slice!(*keys)
- hash = slice(*keys)
- gems/activesupport-6.0.0/lib/active_support/core_ext/string/filters.rb
- def remove(*patterns)
- dup.remove!(*patterns)
- gems/activesupport-6.0.0/lib/active_support/deprecation/proxy_wrappers.rb
- def method_missing(called, *args, &block)
- target.__send__(called, *args, &block)
- gems/activesupport-6.0.0/lib/active_support/deprecation/proxy_wrappers.rb
- def method_missing(called, *args, &block)
- target.__send__(called, *args, &block)
- gems/activesupport-6.0.0/lib/active_support/execution_wrapper.rb
- def self.to_run(*args, &block)
- set_callback(:run, *args, &block)
- gems/activesupport-6.0.0/lib/active_support/execution_wrapper.rb
- def self.to_complete(*args, &block)
- set_callback(:complete, *args, &block)
- gems/activesupport-6.0.0/lib/active_support/notifications/fanout.rb
- def publish(name, *args)
- listeners_for(name).each { |s| s.publish(name, *args) }
- gems/activesupport-6.0.0/lib/active_support/notifications/fanout.rb
- def publish(name, *args)
- @delegate.publish name, *args
- gems/activesupport-6.0.0/lib/active_support/notifications/fanout.rb
- def publish(name, *args)
- @delegate.call name, *args
- gems/activesupport-6.0.0/lib/active_support/notifications/fanout.rb
- def publish(name, *args)
- @delegate.publish name, *args
- gems/activesupport-6.0.0/lib/active_support/tagged_logging.rb
- def tagged(*tags)
- new_tags = push_tags(*tags)
- gems/activesupport-6.0.0/lib/active_support/tagged_logging.rb
- def tagged(*tags)
- formatter.tagged(*tags) { yield self }
- gems/activesupport-6.0.0/lib/active_support/time_with_zone.rb
- def method_missing(sym, *args, &block)
- wrap_with_time_zone time.__send__(sym, *args, &block)
- gems/activesupport-6.0.0/lib/active_support/duration.rb
- def method_missing(method, *args, &block)
- value.public_send(method, *args, &block)
- gems/webmock-3.7.2/lib/webmock/api.rb
- def assert_requested(*args, &block)
- assert_request_requested(*args)
- gems/webmock-3.7.2/lib/webmock/api.rb
- def assert_not_requested(*args, &block)
- assert_request_not_requested(*args)
- gems/webmock-3.7.2/lib/webmock/api.rb
- def hash_including(*args)
- WebMock::Matchers::HashIncludingMatcher.new(anythingize_lonely_keys(*args))
- gems/webmock-3.7.2/lib/webmock/api.rb
- def hash_excluding(*args)
- WebMock::Matchers::HashExcludingMatcher.new(anythingize_lonely_keys(*args))
- gems/webmock-3.7.2/lib/webmock/http_lib_adapters/net_http.rb
- def read_nonblock(size, *args)
- orig_read_nonblock(size, *args)
- gems/webmock-3.7.2/lib/webmock/request_stub.rb
- def to_return(*response_hashes, &block)
- @responses_sequences << ResponsesSequence.new([*response_hashes].flatten.map {|r| ResponseFactory.response_for(r)})
- gems/webmock-3.7.2/lib/webmock/request_stub.rb
- def to_raise(*exceptions)
- @responses_sequences << ResponsesSequence.new([*exceptions].flatten.map {|e|
- gems/bunny-2.14.2/lib/bunny/delivery_info.rb
- def each(*args, &block)
- @hash.each(*args, &block)
- gems/bunny-2.14.2/lib/bunny/consumer.rb
- def call(*args)
- @on_delivery.call(*args) if @on_delivery
- gems/bunny-2.14.2/lib/bunny/message_properties.rb
- def each(*args, &block)
- @properties.each(*args, &block)
- gems/bunny-2.14.2/lib/bunny/get_response.rb
- def each(*args, &block)
- @hash.each(*args, &block)
- gems/bunny-2.14.2/lib/bunny/concurrent/linked_continuation_queue.rb
- def method_missing(selector, *args, &block)
- @q.__send__(selector, *args, &block)
- gems/bunny-2.14.2/lib/bunny/return_info.rb
- def each(*args, &block)
- @hash.each(*args, &block)
- gems/net-scp-2.0.0/lib/uri/scp.rb
- def initialize(*args)
- super(*args)
- gems/json-2.2.0/lib/json/add/date.rb
- def to_json(*args)
- as_json.to_json(*args)
- gems/json-2.2.0/lib/json/add/date_time.rb
- def to_json(*args)
- as_json.to_json(*args)
- gems/json-2.2.0/lib/json/add/ostruct.rb
- def to_json(*args)
- as_json.to_json(*args)
- gems/json-2.2.0/lib/json/add/struct.rb
- def to_json(*args)
- as_json.to_json(*args)
- gems/json-2.2.0/lib/json/add/set.rb
- def to_json(*args)
- as_json.to_json(*args)
- gems/json-2.2.0/lib/json/add/symbol.rb
- def to_json(*a)
- as_json.to_json(*a)
- gems/json-2.2.0/lib/json/add/exception.rb
- def to_json(*args)
- as_json.to_json(*args)
- gems/json-2.2.0/lib/json/add/range.rb
- def to_json(*args)
- as_json.to_json(*args)
- gems/json-2.2.0/lib/json/add/time.rb
- def to_json(*args)
- as_json.to_json(*args)
- gems/json-2.2.0/lib/json/generic_object.rb
- def dump(obj, *args)
- ::JSON.dump(obj, *args)
- gems/json-2.2.0/lib/json/generic_object.rb
- def to_json(*a)
- as_json.to_json(*a)
- gems/json-2.2.0/lib/json/pure/generator.rb
- def to_json_raw(*args)
- to_json_raw_object.to_json(*args)
- gems/json_pure-2.2.0/lib/json/add/date.rb
- def to_json(*args)
- as_json.to_json(*args)
- gems/json_pure-2.2.0/lib/json/add/date_time.rb
- def to_json(*args)
- as_json.to_json(*args)
- gems/json_pure-2.2.0/lib/json/add/ostruct.rb
- def to_json(*args)
- as_json.to_json(*args)
- gems/json_pure-2.2.0/lib/json/add/struct.rb
- def to_json(*args)
- as_json.to_json(*args)
- gems/json_pure-2.2.0/lib/json/add/set.rb
- def to_json(*args)
- as_json.to_json(*args)
- gems/json_pure-2.2.0/lib/json/add/symbol.rb
- def to_json(*a)
- as_json.to_json(*a)
- gems/json_pure-2.2.0/lib/json/add/exception.rb
- def to_json(*args)
- as_json.to_json(*args)
- gems/json_pure-2.2.0/lib/json/add/range.rb
- def to_json(*args)
- as_json.to_json(*args)
- gems/json_pure-2.2.0/lib/json/add/time.rb
- def to_json(*args)
- as_json.to_json(*args)
- gems/json_pure-2.2.0/lib/json/generic_object.rb
- def dump(obj, *args)
- ::JSON.dump(obj, *args)
- gems/json_pure-2.2.0/lib/json/generic_object.rb
- def to_json(*a)
- as_json.to_json(*a)
- gems/json_pure-2.2.0/lib/json/pure/generator.rb
- def to_json_raw(*args)
- to_json_raw_object.to_json(*args)
- gems/rouge-3.10.0/lib/rouge/formatter.rb
- def self.format(tokens, *a, &b)
- new(*a).format(tokens, &b)
- gems/rouge-3.10.0/lib/rouge/theme.rb
- def palette(*a)
- self.class.palette(*a) end
- gems/rouge-3.10.0/lib/rouge/lexer.rb
- def continue_lex(*a, &b)
- lex(*a, &b)
- gems/rouge-3.10.0/lib/rouge/cli.rb
- def error!(*a)
- self.class.error!(*a)
- gems/celluloid-supervision-0.20.6/lib/celluloid/supervision/deprecate/supervise.rb
- def supervise(*args, &block)
- supervisor = Supervision.router(*args)
- gems/celluloid-supervision-0.20.6/lib/celluloid/supervision/deprecate/supervise.rb
- def supervise_as(name, *args, &block)
- supervisor = Supervision.router(*args)
- gems/celluloid-supervision-0.20.6/lib/celluloid/supervision/deprecate/supervise.rb
- def supervise(*args, &block)
- Celluloid.supervise(*args, &block)
- gems/celluloid-supervision-0.20.6/lib/celluloid/supervision/deprecate/supervise.rb
- def supervise_as(name, *args, &block)
- Celluloid.supervise_as(name, *args, &block)
- gems/celluloid-supervision-0.20.6/lib/celluloid/supervision/deprecate/supervise.rb
- def supervise(klass, *args, &block)
- Celluloid.supervise(*args, &block)
- gems/celluloid-supervision-0.20.6/lib/celluloid/supervision/deprecate/supervise.rb
- def supervise_as(name, klass, *args, &block)
- Celluloid.supervise_as(name, *args, &block)
- gems/celluloid-supervision-0.20.6/lib/celluloid/supervision/deprecate/supervise.rb
- def run!(*args)
- container = new(*args) do |g|
- gems/celluloid-supervision-0.20.6/lib/celluloid/supervision/deprecate/supervise.rb
- def run(*args)
- supervisor = run!(*args)
- gems/celluloid-supervision-0.20.6/lib/celluloid/supervision/deprecate/supervise.rb
- def supervise(*args, &block)
- container.supervise(*args, &block)
- gems/celluloid-supervision-0.20.6/lib/celluloid/supervision/deprecate/supervise.rb
- def supervise_as(name, *args, &block)
- container.supervise_as(name, *args, &block)
- gems/sqlite3-1.4.1/lib/sqlite3/resultset.rb
- def reset( *bind_params )
- @stmt.bind_params( *bind_params )
- gems/sqlite3-1.4.1/lib/sqlite3/statement.rb
- def execute( *bind_vars )
- bind_params(*bind_vars) unless bind_vars.empty?
- gems/sqlite3-1.4.1/lib/sqlite3/statement.rb
- def execute!( *bind_vars, &block )
- execute(*bind_vars)
- gems/sqlite3-1.4.1/lib/sqlite3/database.rb
- def execute sql, bind_vars = [], *args, &block
- Support for bind parameters as *args will be removed in 2.0.0.
- gems/sqlite3-1.4.1/lib/sqlite3/database.rb
- def execute2( sql, *bind_vars )
- result = stmt.execute( *bind_vars )
- gems/sqlite3-1.4.1/lib/sqlite3/database.rb
- def get_first_row( sql, *bind_vars )
- execute( sql, *bind_vars ).first
- gems/sqlite3-1.4.1/lib/sqlite3/pragmas.rb
- def foreign_key_check( *table, &block ) # :yields: row
- get_query_pragma "foreign_key_check", *table, &block
- gems/sqlite3-1.4.1/lib/sqlite3/pragmas.rb
- def integrity_check( *num_errors, &block ) # :yields: row
- get_query_pragma "integrity_check", *num_errors, &block
- gems/sqlite3-1.4.1/lib/sqlite3/pragmas.rb
- def quick_check( *num_errors, &block ) # :yields: row
- get_query_pragma "quick_check", *num_errors, &block
- gems/eventmachine-1.2.7/lib/eventmachine.rb
- def self.schedule(*a, &b)
- cb = Callback(*a, &b)
- gems/eventmachine-1.2.7/lib/eventmachine.rb
- def self.start_server server, port=nil, handler=nil, *args, &block
- klass = klass_from_handler(Connection, handler, *args)
- gems/eventmachine-1.2.7/lib/eventmachine.rb
- def self.attach_server sock, handler=nil, *args, &block
- klass = klass_from_handler(Connection, handler, *args)
- gems/eventmachine-1.2.7/lib/eventmachine.rb
- def self.start_unix_domain_server filename, *args, &block
- start_server filename, *args, &block
- gems/eventmachine-1.2.7/lib/eventmachine.rb
- def self.connect server, port=nil, handler=nil, *args, &blk
- bind_connect nil, nil, server, port, handler, *args, &blk
- gems/eventmachine-1.2.7/lib/eventmachine.rb
- def self.bind_connect bind_addr, bind_port, server, port=nil, handler=nil, *args
- klass = klass_from_handler(Connection, handler, *args)
- gems/eventmachine-1.2.7/lib/eventmachine.rb
- def EventMachine::watch io, handler=nil, *args, &blk
- attach_io io, true, handler, *args, &blk
- gems/eventmachine-1.2.7/lib/eventmachine.rb
- def EventMachine::attach io, handler=nil, *args, &blk
- attach_io io, false, handler, *args, &blk
- gems/eventmachine-1.2.7/lib/eventmachine.rb
- def EventMachine::attach_io io, watch_mode, handler=nil, *args
- klass = klass_from_handler(Connection, handler, *args)
- gems/eventmachine-1.2.7/lib/eventmachine.rb
- def self.connect_unix_domain socketname, *args, &blk
- connect socketname, *args, &blk
- gems/eventmachine-1.2.7/lib/eventmachine.rb
- def self.open_datagram_socket address, port, handler=nil, *args
- klass = klass_from_handler(Connection, handler, *args)
- gems/eventmachine-1.2.7/lib/eventmachine.rb
- def self.popen cmd, handler=nil, *args
- klass = klass_from_handler(Connection, handler, *args)
- gems/eventmachine-1.2.7/lib/eventmachine.rb
- def self.open_keyboard handler=nil, *args
- klass = klass_from_handler(Connection, handler, *args)
- gems/eventmachine-1.2.7/lib/eventmachine.rb
- def self.watch_file(filename, handler=nil, *args)
- klass = klass_from_handler(FileWatch, handler, *args)
- gems/eventmachine-1.2.7/lib/eventmachine.rb
- def self.watch_process(pid, handler=nil, *args)
- klass = klass_from_handler(ProcessWatch, handler, *args)
- gems/eventmachine-1.2.7/lib/em/processes.rb
- def EventMachine::system cmd, *args, &cb
- cmd = [cmd, *args] if args.any?
- gems/eventmachine-1.2.7/lib/em/queue.rb
- def pop(*a, &b)
- cb = EM::Callback(*a, &b)
- gems/eventmachine-1.2.7/lib/em/queue.rb
- def push(*items)
- @sink.push(*items)
- gems/eventmachine-1.2.7/lib/em/spawnable.rb
- def notify *x
- y = me.call(*x)
- gems/eventmachine-1.2.7/lib/em/protocols/memcache.rb
- def get *keys
- yield *keys.map{ |k| values[k] }
- gems/eventmachine-1.2.7/lib/em/protocols/memcache.rb
- def get_hash *keys
- get *keys do |*values|
- gems/eventmachine-1.2.7/lib/em/tick_loop.rb
- def self.tick_loop(*a, &b)
- TickLoop.new(*a, &b).start
- gems/eventmachine-1.2.7/lib/em/tick_loop.rb
- def initialize(*a, &b)
- @work = EM::Callback(*a, &b)
- gems/eventmachine-1.2.7/lib/em/tick_loop.rb
- def on_stop(*a, &b)
- EM::Callback(*a, &b).call
- gems/eventmachine-1.2.7/lib/em/connection.rb
- def self.new(sig, *args)
- initialize(*args)
- gems/eventmachine-1.2.7/lib/em/deferrable.rb
- def timeout seconds, *args
- @deferred_timeout = EventMachine::Timer.new(seconds) {me.fail(*args)}
- gems/eventmachine-1.2.7/lib/em/deferrable.rb
- def succeed *args
- set_deferred_status :succeeded, *args
- gems/eventmachine-1.2.7/lib/em/deferrable.rb
- def fail *args
- set_deferred_status :failed, *args
- gems/eventmachine-1.2.7/lib/em/completion.rb
- def succeed(*args)
- change_state(:succeeded, *args)
- gems/eventmachine-1.2.7/lib/em/completion.rb
- def fail(*args)
- change_state(:failed, *args)
- gems/eventmachine-1.2.7/lib/em/completion.rb
- def stateback(state, *a, &b)
- @callbacks[state] << EM::Callback(*a, &b)
- gems/eventmachine-1.2.7/lib/em/completion.rb
- def callback(*a, &b)
- stateback(:succeeded, *a, &b)
- gems/eventmachine-1.2.7/lib/em/completion.rb
- def errback(*a, &b)
- stateback(:failed, *a, &b)
- gems/eventmachine-1.2.7/lib/em/completion.rb
- def completion(*a, &b)
- stateback(:completed, *a, &b)
- gems/eventmachine-1.2.7/lib/em/completion.rb
- def timeout(time, *args)
- fail(*args) unless completed?
- gems/eventmachine-1.2.7/lib/em/completion.rb
- def cancel_errback(*a, &b)
- @callbacks[:failed].delete(EM::Callback(*a, &b))
- gems/eventmachine-1.2.7/lib/em/completion.rb
- def cancel_callback(*a, &b)
- @callbacks[:succeeded].delete(EM::Callback(*a, &b))
- gems/eventmachine-1.2.7/lib/em/pool.rb
- def on_error *a, &b
- @on_error = EM::Callback(*a, &b)
- gems/eventmachine-1.2.7/lib/em/pool.rb
- def perform(*a, &b)
- work = EM::Callback(*a, &b)
- gems/eventmachine-1.2.7/lib/em/channel.rb
- def subscribe(*a, &b)
- EM.schedule { @subs[name] = EM::Callback(*a, &b) }
- gems/eventmachine-1.2.7/lib/em/channel.rb
- def pop(*a, &b)
- EM::Callback(*a, &b).call(*args)
- gems/fog-openstack-1.0.9/lib/fog/openstack/compute/models/server_groups.rb
- def create(*args)
- new(service.create_server_group(*args).body['server_group'])
- gems/railties-6.0.0/lib/rails/generators/actions.rb
- def log(*args) # :doc:
- say_status(*args)
- gems/railties-6.0.0/lib/rails/generators/base.rb
- def self.remove_hook_for(*names)
- remove_invocation(*names)
- gems/railties-6.0.0/lib/rails/generators/testing/assertions.rb
- def assert_migration(relative, *contents, &block)
- assert_file file_name, *contents, &block
- gems/railties-6.0.0/lib/rails/generators/rails/app/app_generator.rb
- def method_missing(meth, *args, &block)
- @generator.send(meth, *args, &block)
- gems/railties-6.0.0/lib/rails/generators/rails/app/app_generator.rb
- def file(*args, &block)
- create_file(*args, &block)
- gems/railties-6.0.0/lib/rails/generators/app_base.rb
- def build(meth, *args) # :doc:
- builder.send(meth, *args) if builder.respond_to?(meth)
- gems/railties-6.0.0/lib/rails/engine/railties.rb
- def each(*args, &block)
- _all.each(*args, &block)
- gems/railties-6.0.0/lib/rails/railtie/configurable.rb
- def respond_to?(*args)
- super || instance.respond_to?(*args)
- gems/railties-6.0.0/lib/rails/railtie/configurable.rb
- def method_missing(*args, &block)
- instance.send(*args, &block)
- gems/railties-6.0.0/lib/rails/railtie.rb
- def method_missing(name, *args, &block)
- instance.public_send(name, *args, &block)
- gems/railties-6.0.0/lib/rails/paths.rb
- def values_at(*list)
- @root.values_at(*list)
- gems/railties-6.0.0/lib/rails/paths.rb
- def unshift(*paths)
- @paths.unshift(*paths)
- gems/railties-6.0.0/lib/rails/commands/console/console_command.rb
- def self.start(*args)
- new(*args).start
- gems/railties-6.0.0/lib/rails/commands/dbconsole/dbconsole_command.rb
- def self.start(*args)
- new(*args).start
- gems/railties-6.0.0/lib/rails/commands/dbconsole/dbconsole_command.rb
- def find_cmd_and_exec(commands, *args) # :doc:
- exec full_path_command, *args
- gems/railties-6.0.0/lib/rails/initializable.rb
- def run(*args)
- @context.instance_exec(*args, &block)
- gems/railties-6.0.0/lib/rails/initializable.rb
- def run_initializers(group = :default, *args)
- initializer.run(*args) if initializer.belongs_to?(group)
- gems/railties-6.0.0/lib/rails/source_annotation_extractor.rb
- def self.register_directories(*dirs)
- directories.push(*dirs)
- gems/railties-6.0.0/lib/rails/source_annotation_extractor.rb
- def self.register_tags(*additional_tags)
- tags.push(*additional_tags)
- gems/activeresource-5.1.0/lib/active_resource/connection.rb
- def request(method, path, *arguments)
- payload[:result] = http.send(method, path, *arguments)
- gems/activeresource-5.1.0/lib/active_resource/base.rb
- def first(*args)
- find(:first, *args)
- gems/activeresource-5.1.0/lib/active_resource/base.rb
- def last(*args)
- find(:last, *args)
- gems/activeresource-5.1.0/lib/active_resource/base.rb
- def all(*args)
- find(:all, *args)
- gems/activeresource-5.1.0/lib/active_resource/base.rb
- def const_valid?(*const_args)
- self.class.const_defined?(*const_args)
- 1949 matches in 1095 files of 225 gems
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement