Matthias Beyer
45880b5b12
The ruby build infrastructure PR caused our CI to get really sad, so I revert it here. This reverts commit 5eaddbc6f2a4b05ac59d9e8b29d0d2226d3f2015..44e02ff8185c5ad3da6448b6caff9d2a3a9b332f
27 lines
526 B
Ruby
27 lines
526 B
Ruby
#!/usr/bin/env ruby
|
|
|
|
require "../target/debug/liblibimagruby.so"
|
|
|
|
color = true
|
|
verbose = true
|
|
debug = false
|
|
|
|
RImag.init_logger debug, verbose, color
|
|
|
|
store_handle = RStoreHandle::new(false, "/tmp/store")
|
|
id = RStoreId::new_baseless("test")
|
|
test_handle = store_handle.retrieve(id)
|
|
puts "Header: #{test_handle.header.to_s}"
|
|
puts "Content: '#{test_handle.content}'"
|
|
|
|
test_handle.content = "Foo"
|
|
test_handle.header = {
|
|
"imag" => {
|
|
"links" => [],
|
|
"version" => "0.2.0"
|
|
},
|
|
"example" => {
|
|
"test" => "foo"
|
|
}
|
|
}
|
|
|