activemind 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 365c18b481fda238b96d6fdf810360e72f409ba9918bfcab944c090e21711217
4
+ data.tar.gz: 2fd20d3c81d19f55e67fa28de7b76f6c7c58c439c8cc70380f637775dfa65c07
5
+ SHA512:
6
+ metadata.gz: 74be69a04eed92ec310ddddfe7f17d0db617a3058bd7b0a524044cd55f412f994d7024b632f799cb7365d27422610788dd58aad7f914017e24b35a3003a22929
7
+ data.tar.gz: 29f8a132ce4f33d2de576e2b33388750c4f3ac57dfd53b1db598adf2b6da5af8985db17de7ffce980fac6a1bd36bfefcb14cbd61a70fd45924394378a9284bba
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ # MIT LICENSE
2
+
3
+ Copyright (c) 2025 Nami W <1160688+namiwang@users.noreply.github.com>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/TODO ADDED
@@ -0,0 +1,2 @@
1
+ static files like funding, etc.
2
+ (use the ones created by gemsmith)
@@ -0,0 +1,19 @@
1
+ # encoding: utf-8
2
+
3
+ $:.unshift File.expand_path('../lib', __FILE__)
4
+ require 'activemind/version'
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = 'activemind'
8
+ s.version = Activemind::VERSION
9
+ s.authors = ['Nami W']
10
+ s.email = ['me@nami.land']
11
+ s.homepage = 'https://github.com/namiwang/activemind'
12
+ s.licenses = ['MIT']
13
+ s.summary = '[TODO summary]'
14
+ s.description = '[TODO description]'
15
+
16
+ s.files = Dir.glob('{bin/*,lib/**/*,[A-Z]*}')
17
+ s.platform = Gem::Platform::RUBY
18
+ s.require_paths = ['lib']
19
+ end
@@ -0,0 +1,3 @@
1
+ module Activemind
2
+ VERSION = '0.0.1'
3
+ end
data/lib/activemind.rb ADDED
@@ -0,0 +1,2 @@
1
+ module Activemind
2
+ end
metadata ADDED
@@ -0,0 +1,46 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: activemind
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Nami W
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 2025-02-04 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: "[TODO description]"
13
+ email:
14
+ - me@nami.land
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - Gemfile
20
+ - LICENSE.md
21
+ - TODO
22
+ - activemind.gemspec
23
+ - lib/activemind.rb
24
+ - lib/activemind/version.rb
25
+ homepage: https://github.com/namiwang/activemind
26
+ licenses:
27
+ - MIT
28
+ metadata: {}
29
+ rdoc_options: []
30
+ require_paths:
31
+ - lib
32
+ required_ruby_version: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: '0'
37
+ required_rubygems_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ requirements: []
43
+ rubygems_version: 3.6.3
44
+ specification_version: 4
45
+ summary: "[TODO summary]"
46
+ test_files: []