Top Level Namespace

Defined Under Namespace

Modules: RbNaCl

Constant Summary collapse

LIBSODIUM_VERSION =
"0.7.0"
LIBSODIUM_DIGEST =
"4ccaffd1a15be67786e28a61b602492a97eb5bcb83455ed53c02fa038b8e9168"

Instance Method Summary collapse

Instance Method Details

#sh_hidden(command) ⇒ Object



9
10
11
12
13
14
15
16
17
18
# File 'lib/rbnacl/rake_tasks.rb', line 9

def sh_hidden(command)
  STDERR.puts("*** Executing: #{command}")
  output = `#{command}`

  if !$?.success?
    STDERR.puts "!!! Error executing: #{command}"
    STDERR.puts output
    exit 1
  end
end