mirror of
https://github.com/bumi/openalias-ruby
synced 2025-06-16 15:05:35 +00:00
Openalias.org is great! There is openalias.rs (written in Rust) to lookup and parse OpenAlias data. This is a ruby wrapper around that rust library. I don't know what I am doing so use at your own risk..and with care.
12 lines
206 B
Ruby
12 lines
206 B
Ruby
require "spec_helper"
|
|
|
|
RSpec.describe Openalias do
|
|
it "has a version number" do
|
|
expect(Openalias::VERSION).not_to be nil
|
|
end
|
|
|
|
it "does something useful" do
|
|
expect(false).to eq(true)
|
|
end
|
|
end
|