novimus 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/lib/novimus.rb +9 -0
- data/novimus.gemspec +26 -0
- metadata +48 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 88032102d55b08df880be4b4d288974aa0b99afd31a28ccfcad83bb21a9a7a93
|
|
4
|
+
data.tar.gz: 623ba19dcd67a98ec96b5386b95f6c4bc2854431969e0e6acd29c68e521604a6
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 39d9cc146f8c004cc0e8485962fe110055601177c84121b9efc6a3dc492db432dd812607065bfa86284bc12884c051f0ef6a5c6401aae329263b15372d4b9db8
|
|
7
|
+
data.tar.gz: 897c70827c3b427334bdbd405977d46ea7040ab21275b7296e85a58597e06f970f4b4d4c14db165b20952a4920902aed9f9d07087a49d83a763e1b4d8637f99d
|
data/lib/novimus.rb
ADDED
data/novimus.gemspec
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative "lib/novimus"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |spec|
|
|
6
|
+
spec.name = "novimus"
|
|
7
|
+
spec.version = Novimus::VERSION
|
|
8
|
+
spec.authors = ["Martins"]
|
|
9
|
+
spec.email = ["novimushq@gmail.com"]
|
|
10
|
+
|
|
11
|
+
spec.summary = "A surface for driving and comprehending the work of coding agents."
|
|
12
|
+
spec.description = "Novimus is Latin for \"we have come to know\". " \
|
|
13
|
+
"This release holds the name while the Ruby interface " \
|
|
14
|
+
"is written; see https://novimus.dev."
|
|
15
|
+
spec.homepage = Novimus::HOMEPAGE
|
|
16
|
+
spec.license = "MIT"
|
|
17
|
+
spec.required_ruby_version = ">= 2.6.0"
|
|
18
|
+
|
|
19
|
+
spec.metadata = {
|
|
20
|
+
"homepage_uri" => spec.homepage,
|
|
21
|
+
"source_code_uri" => "https://github.com/novimushq/novimus"
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
spec.files = ["lib/novimus.rb", "novimus.gemspec"]
|
|
25
|
+
spec.require_paths = ["lib"]
|
|
26
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: novimus
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Martins
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-09-14 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: Novimus is Latin for "we have come to know". This release holds the name
|
|
14
|
+
while the Ruby interface is written; see https://novimus.dev.
|
|
15
|
+
email:
|
|
16
|
+
- novimushq@gmail.com
|
|
17
|
+
executables: []
|
|
18
|
+
extensions: []
|
|
19
|
+
extra_rdoc_files: []
|
|
20
|
+
files:
|
|
21
|
+
- lib/novimus.rb
|
|
22
|
+
- novimus.gemspec
|
|
23
|
+
homepage: https://novimus.dev
|
|
24
|
+
licenses:
|
|
25
|
+
- MIT
|
|
26
|
+
metadata:
|
|
27
|
+
homepage_uri: https://novimus.dev
|
|
28
|
+
source_code_uri: https://github.com/novimushq/novimus
|
|
29
|
+
post_install_message:
|
|
30
|
+
rdoc_options: []
|
|
31
|
+
require_paths:
|
|
32
|
+
- lib
|
|
33
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
34
|
+
requirements:
|
|
35
|
+
- - ">="
|
|
36
|
+
- !ruby/object:Gem::Version
|
|
37
|
+
version: 2.6.0
|
|
38
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
39
|
+
requirements:
|
|
40
|
+
- - ">="
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
version: '0'
|
|
43
|
+
requirements: []
|
|
44
|
+
rubygems_version: 3.0.3.1
|
|
45
|
+
signing_key:
|
|
46
|
+
specification_version: 4
|
|
47
|
+
summary: A surface for driving and comprehending the work of coding agents.
|
|
48
|
+
test_files: []
|