Something like Datalog in Ruby. Aries a placeholder name, can't think of something clever right now.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
206B

  1. # frozen_string_literal: true
  2. RSpec.describe Aries do
  3. it "has a version number" do
  4. expect(Aries::VERSION).not_to be nil
  5. end
  6. it "does something useful" do
  7. expect(false).to eq(true)
  8. end
  9. end