/ontohub/spec/lib/ |
H A D | subprocess_spec.rb | 5 it{ Subprocess.run("echo", "what's", "up").should == "what's up\n" } 6 it{ ->{ Subprocess.run 'false' }.should raise_error Subprocess::Error }
|
/ontohub/lib/ |
H A D | data_migration_worker.rb | 5 Subprocess.run('bundle', 'exec', 'rake', 'data:migrate',
|
H A D | oops_request_worker.rb | 5 OopsRequest.find(oops_request_id).run
|
H A D | subprocess.rb | 16 def self.run(*args) singleton method in class:Subprocess
|
/ontohub/app/models/oops_request/ |
H A D | states.rb | 17 def run method in class:OopsRequest
|
/ontohub/app/models/key/ |
H A D | fingerprint.rb | 18 output = Subprocess.run 'ssh-keygen', '-lf', file.path 25 output = Subprocess.run 'ssh-keygen', '-l', '-E', 'md5', '-f', file.path
|
/ontohub/features/support/ |
H A D | env.rb | 99 Test::Unit.run = true if defined?(Test::Unit) && Test::Unit.respond_to?(:run=)
|
/ontohub/spec/factories/ |
H A D | svn_repository_factory.rb | 14 exec_silently = ->(cmd) { Subprocess.run('bash', '-c', cmd) }
|
H A D | git_repository_factory.rb | 16 exec_silently = ->(cmd) { Subprocess.run('bash', '-c', cmd) } 48 exec_silently = ->(cmd) { Subprocess.run('bash', '-c', cmd) } 87 exec_silently = ->(cmd) { Subprocess.run('bash', '-c', cmd) } 113 exec_silently = ->(cmd) { Subprocess.run('bash', '-c', cmd) } 154 exec_silently = ->(cmd) { Subprocess.run('bash', '-c', cmd) }
|
/ontohub/lib/git_repository/ |
H A D | cloning.rb | 95 Subprocess.run *args 108 Subprocess.run *args
|
/ontohub/git/lib/ |
H A D | git_update.rb | 8 Subprocess.run 'redis-cli', 'rpush',
|
/ontohub/lib/dsl/ |
H A D | repo.rb | 54 Subprocess.run 'git', 'init', @path
|
/ontohub/spec/lib/repository/import/ |
H A D | svn_spec.rb | 4 Subprocess.run('bash', '-c', cmd)
|
/ontohub/script/ |
H A D | rename_refactor.rb | 45 def run method in class:RenameRefactor.RenameRefactorProvider 130 def run method in class:MigrationProvider 378 def run method in class:MigrationProvider.FactoryFilesRenameProvider 407 RenameRefactor::MigrationProvider.new(verbose: false, dry_run: false).run 408 RenameRefactor::RenameRefactorProvider.new(verbose: true, dry_run: false).run 409 RenameRefactor::FactoryFilesRenameProvider.new(verbose: false, dry_run: false).run
|
/ontohub/spec/controllers/ |
H A D | oops_request_controller_spec.rb | 12 OopsRequest.any_instance.stubs(:run)
|
/ontohub/app/helpers/ |
H A D | application_helper.rb | 65 Subprocess.run(*%w(git rev-parse --short HEAD), GIT_DIR: path.to_s).strip if path.exist?
|