Searched refs:Subprocess (Results 1 - 11 of 11) sorted by relevance
/ontohub/spec/lib/ |
H A D | subprocess_spec.rb | 3 describe Subprocess do 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 | subprocess.rb | 3 module Subprocess module 8 super "Subprocess #{args.inspect} exited with status #{status}:\n#{output}"
|
/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 32 rescue Subprocess::Error => e
|
/ontohub/lib/git_repository/ |
H A D | cloning.rb | 75 rescue Subprocess::Error => e 90 rescue Subprocess::Error 95 Subprocess.run *args 108 Subprocess.run *args
|
/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/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/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?
|
Completed in 10 milliseconds