saasagi 0.1.4 → 0.1.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/saasagi.rb +48 -0
- data/lib/saasagi/version.rb +1 -1
- data/saasagi.gemspec +3 -3
- metadata +10 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 899cb361e1b9390c8f60b22f0568643da9d28d1f56c62ad385a9b324795b81e4
|
4
|
+
data.tar.gz: 910ba2e918fe1d1a2082b3bec6a34b8bd041bea2ebea2973fa3e45369d2b4691
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef42b99a77e832fe6780797b73e4aef3e56d35ccc7399d64ed0b655cc320ae713b04e61dde27552a25b352bb0e20ace38fe2eeeac0329e95aba75dc10ee755c7
|
7
|
+
data.tar.gz: 12dca9ceb0182760b41b2c91037ae7d7fb45182cf6590df3f54d106026c06c00720b7f179d765d90b91d980b94bf413ca2ebddc31f2758e6ba03a324b8e068e2
|
data/lib/saasagi.rb
CHANGED
@@ -84,6 +84,54 @@ module Saasagi
|
|
84
84
|
f.puts prewrite
|
85
85
|
}
|
86
86
|
end
|
87
|
+
|
88
|
+
def self.assemble_cloner
|
89
|
+
prewrite = File.read(".prewrite/tree_clone_engine.txt")
|
90
|
+
|
91
|
+
open("data/input/clone_ratio.txt", "w") { |f|
|
92
|
+
f.puts "0"
|
93
|
+
}
|
94
|
+
|
95
|
+
open("tree_clone_engine.rb", "w") { |f|
|
96
|
+
f.puts prewrite
|
97
|
+
}
|
98
|
+
|
99
|
+
open(".backup/tree_clone_engine.rb", "w") { |f|
|
100
|
+
f.puts prewrite
|
101
|
+
}
|
102
|
+
end
|
103
|
+
|
104
|
+
def self.assemble_space_calculator
|
105
|
+
prewrite = File.read(".prewrite/tree_calculate_space.txt")
|
106
|
+
|
107
|
+
open("data/input/calculator_ratio.txt", "w") { |f|
|
108
|
+
f.puts "0"
|
109
|
+
}
|
110
|
+
|
111
|
+
open("tree_calculate_space.rb", "w") { |f|
|
112
|
+
f.puts prewrite
|
113
|
+
}
|
114
|
+
|
115
|
+
open(".backup/tree_calculate_space.rb", "w") { |f|
|
116
|
+
f.puts prewrite
|
117
|
+
}
|
118
|
+
end
|
119
|
+
|
120
|
+
def self.assemble_equality_tester
|
121
|
+
prewrite = File.read(".prewrite/tree_equality.txt")
|
122
|
+
|
123
|
+
open("data/input/equality_test_ratio.txt", "w") { |f|
|
124
|
+
f.puts "0"
|
125
|
+
}
|
126
|
+
|
127
|
+
open("tree_test_equality.rb", "w") { |f|
|
128
|
+
f.puts prewrite
|
129
|
+
}
|
130
|
+
|
131
|
+
open(".backup/tree_test_equality.rb", "w") { |f|
|
132
|
+
f.puts prewrite
|
133
|
+
}
|
134
|
+
end
|
87
135
|
|
88
136
|
end
|
89
137
|
|
data/lib/saasagi/version.rb
CHANGED
data/saasagi.gemspec
CHANGED
@@ -8,9 +8,9 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.authors = ["LWFlouisa"]
|
9
9
|
spec.email = ["gitea@fake.local"]
|
10
10
|
|
11
|
-
spec.summary = %q{
|
12
|
-
spec.description = %q{
|
13
|
-
spec.homepage = "
|
11
|
+
spec.summary = %q{Saasagi Single Cell is a reproductive version of Saasagi, and behaves similarly to a single-celled organism.}
|
12
|
+
spec.description = %q{The eventual goal for this project, is the ability to have certain cellular processes automated; assembling core subroutines, restoring missing subroutines from backup, and the ability for the machine to program itself, with a few simple instructions. Clone a group of them together, and you can eventually build more complex systems at the artificial cellular level.}
|
13
|
+
spec.homepage = ""
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
16
|
# Specify which files should be added to the gem when it is released.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: saasagi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- LWFlouisa
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-01-
|
11
|
+
date: 2020-01-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -52,8 +52,11 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '3.0'
|
55
|
-
description:
|
56
|
-
|
55
|
+
description: The eventual goal for this project, is the ability to have certain cellular
|
56
|
+
processes automated; assembling core subroutines, restoring missing subroutines
|
57
|
+
from backup, and the ability for the machine to program itself, with a few simple
|
58
|
+
instructions. Clone a group of them together, and you can eventually build more
|
59
|
+
complex systems at the artificial cellular level.
|
57
60
|
email:
|
58
61
|
- gitea@fake.local
|
59
62
|
executables: []
|
@@ -73,7 +76,7 @@ files:
|
|
73
76
|
- lib/saasagi.rb
|
74
77
|
- lib/saasagi/version.rb
|
75
78
|
- saasagi.gemspec
|
76
|
-
homepage:
|
79
|
+
homepage: ''
|
77
80
|
licenses:
|
78
81
|
- MIT
|
79
82
|
metadata: {}
|
@@ -96,5 +99,6 @@ rubyforge_project:
|
|
96
99
|
rubygems_version: 2.7.6
|
97
100
|
signing_key:
|
98
101
|
specification_version: 4
|
99
|
-
summary:
|
102
|
+
summary: Saasagi Single Cell is a reproductive version of Saasagi, and behaves similarly
|
103
|
+
to a single-celled organism.
|
100
104
|
test_files: []
|