rubyneat 0.4.0.alpha.4 → 0.4.0.alpha.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,245 @@
1
+ * {
2
+ box-sizing: border-box; }
3
+
4
+ body {
5
+ padding: 0;
6
+ margin: 0;
7
+ font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
8
+ font-size: 16px;
9
+ line-height: 1.5;
10
+ color: #606c71; }
11
+
12
+ a {
13
+ color: #1e6bb8;
14
+ text-decoration: none; }
15
+ a:hover {
16
+ text-decoration: underline; }
17
+
18
+ .btn {
19
+ display: inline-block;
20
+ margin-bottom: 1rem;
21
+ color: rgba(255, 255, 255, 0.7);
22
+ background-color: rgba(255, 255, 255, 0.08);
23
+ border-color: rgba(255, 255, 255, 0.2);
24
+ border-style: solid;
25
+ border-width: 1px;
26
+ border-radius: 0.3rem;
27
+ transition: color 0.2s, background-color 0.2s, border-color 0.2s; }
28
+ .btn + .btn {
29
+ margin-left: 1rem; }
30
+
31
+ .btn:hover {
32
+ color: rgba(255, 255, 255, 0.8);
33
+ text-decoration: none;
34
+ background-color: rgba(255, 255, 255, 0.2);
35
+ border-color: rgba(255, 255, 255, 0.3); }
36
+
37
+ @media screen and (min-width: 64em) {
38
+ .btn {
39
+ padding: 0.75rem 1rem; } }
40
+
41
+ @media screen and (min-width: 42em) and (max-width: 64em) {
42
+ .btn {
43
+ padding: 0.6rem 0.9rem;
44
+ font-size: 0.9rem; } }
45
+
46
+ @media screen and (max-width: 42em) {
47
+ .btn {
48
+ display: block;
49
+ width: 100%;
50
+ padding: 0.75rem;
51
+ font-size: 0.9rem; }
52
+ .btn + .btn {
53
+ margin-top: 1rem;
54
+ margin-left: 0; } }
55
+
56
+ .page-header {
57
+ color: #fff;
58
+ text-align: center;
59
+ background-color: #159957;
60
+ background-image: linear-gradient(120deg, #155799, #159957); }
61
+
62
+ @media screen and (min-width: 64em) {
63
+ .page-header {
64
+ padding: 5rem 6rem; } }
65
+
66
+ @media screen and (min-width: 42em) and (max-width: 64em) {
67
+ .page-header {
68
+ padding: 3rem 4rem; } }
69
+
70
+ @media screen and (max-width: 42em) {
71
+ .page-header {
72
+ padding: 2rem 1rem; } }
73
+
74
+ .project-name {
75
+ margin-top: 0;
76
+ margin-bottom: 0.1rem; }
77
+
78
+ @media screen and (min-width: 64em) {
79
+ .project-name {
80
+ font-size: 3.25rem; } }
81
+
82
+ @media screen and (min-width: 42em) and (max-width: 64em) {
83
+ .project-name {
84
+ font-size: 2.25rem; } }
85
+
86
+ @media screen and (max-width: 42em) {
87
+ .project-name {
88
+ font-size: 1.75rem; } }
89
+
90
+ .project-tagline {
91
+ margin-bottom: 2rem;
92
+ font-weight: normal;
93
+ opacity: 0.7; }
94
+
95
+ @media screen and (min-width: 64em) {
96
+ .project-tagline {
97
+ font-size: 1.25rem; } }
98
+
99
+ @media screen and (min-width: 42em) and (max-width: 64em) {
100
+ .project-tagline {
101
+ font-size: 1.15rem; } }
102
+
103
+ @media screen and (max-width: 42em) {
104
+ .project-tagline {
105
+ font-size: 1rem; } }
106
+
107
+ .main-content :first-child {
108
+ margin-top: 0; }
109
+ .main-content img {
110
+ max-width: 100%; }
111
+ .main-content h1, .main-content h2, .main-content h3, .main-content h4, .main-content h5, .main-content h6 {
112
+ margin-top: 2rem;
113
+ margin-bottom: 1rem;
114
+ font-weight: normal;
115
+ color: #159957; }
116
+ .main-content p {
117
+ margin-bottom: 1em; }
118
+ .main-content code {
119
+ padding: 2px 4px;
120
+ font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
121
+ font-size: 0.9rem;
122
+ color: #383e41;
123
+ background-color: #f3f6fa;
124
+ border-radius: 0.3rem; }
125
+ .main-content pre {
126
+ padding: 0.8rem;
127
+ margin-top: 0;
128
+ margin-bottom: 1rem;
129
+ font: 1rem Consolas, "Liberation Mono", Menlo, Courier, monospace;
130
+ color: #567482;
131
+ word-wrap: normal;
132
+ background-color: #f3f6fa;
133
+ border: solid 1px #dce6f0;
134
+ border-radius: 0.3rem; }
135
+ .main-content pre > code {
136
+ padding: 0;
137
+ margin: 0;
138
+ font-size: 0.9rem;
139
+ color: #567482;
140
+ word-break: normal;
141
+ white-space: pre;
142
+ background: transparent;
143
+ border: 0; }
144
+ .main-content .highlight {
145
+ margin-bottom: 1rem; }
146
+ .main-content .highlight pre {
147
+ margin-bottom: 0;
148
+ word-break: normal; }
149
+ .main-content .highlight pre, .main-content pre {
150
+ padding: 0.8rem;
151
+ overflow: auto;
152
+ font-size: 0.9rem;
153
+ line-height: 1.45;
154
+ border-radius: 0.3rem; }
155
+ .main-content pre code, .main-content pre tt {
156
+ display: inline;
157
+ max-width: initial;
158
+ padding: 0;
159
+ margin: 0;
160
+ overflow: initial;
161
+ line-height: inherit;
162
+ word-wrap: normal;
163
+ background-color: transparent;
164
+ border: 0; }
165
+ .main-content pre code:before, .main-content pre code:after, .main-content pre tt:before, .main-content pre tt:after {
166
+ content: normal; }
167
+ .main-content ul, .main-content ol {
168
+ margin-top: 0; }
169
+ .main-content blockquote {
170
+ padding: 0 1rem;
171
+ margin-left: 0;
172
+ color: #819198;
173
+ border-left: 0.3rem solid #dce6f0; }
174
+ .main-content blockquote > :first-child {
175
+ margin-top: 0; }
176
+ .main-content blockquote > :last-child {
177
+ margin-bottom: 0; }
178
+ .main-content table {
179
+ display: block;
180
+ width: 100%;
181
+ overflow: auto;
182
+ word-break: normal;
183
+ word-break: keep-all; }
184
+ .main-content table th {
185
+ font-weight: bold; }
186
+ .main-content table th, .main-content table td {
187
+ padding: 0.5rem 1rem;
188
+ border: 1px solid #e9ebec; }
189
+ .main-content dl {
190
+ padding: 0; }
191
+ .main-content dl dt {
192
+ padding: 0;
193
+ margin-top: 1rem;
194
+ font-size: 1rem;
195
+ font-weight: bold; }
196
+ .main-content dl dd {
197
+ padding: 0;
198
+ margin-bottom: 1rem; }
199
+ .main-content hr {
200
+ height: 2px;
201
+ padding: 0;
202
+ margin: 1rem 0;
203
+ background-color: #eff0f1;
204
+ border: 0; }
205
+
206
+ @media screen and (min-width: 64em) {
207
+ .main-content {
208
+ max-width: 64rem;
209
+ padding: 2rem 6rem;
210
+ margin: 0 auto;
211
+ font-size: 1.1rem; } }
212
+
213
+ @media screen and (min-width: 42em) and (max-width: 64em) {
214
+ .main-content {
215
+ padding: 2rem 4rem;
216
+ font-size: 1.1rem; } }
217
+
218
+ @media screen and (max-width: 42em) {
219
+ .main-content {
220
+ padding: 2rem 1rem;
221
+ font-size: 1rem; } }
222
+
223
+ .site-footer {
224
+ padding-top: 2rem;
225
+ margin-top: 2rem;
226
+ border-top: solid 1px #eff0f1; }
227
+
228
+ .site-footer-owner {
229
+ display: block;
230
+ font-weight: bold; }
231
+
232
+ .site-footer-credits {
233
+ color: #819198; }
234
+
235
+ @media screen and (min-width: 64em) {
236
+ .site-footer {
237
+ font-size: 1rem; } }
238
+
239
+ @media screen and (min-width: 42em) and (max-width: 64em) {
240
+ .site-footer {
241
+ font-size: 1rem; } }
242
+
243
+ @media screen and (max-width: 42em) {
244
+ .site-footer {
245
+ font-size: 0.9rem; } }
@@ -1,17 +1,17 @@
1
- # Generated by jeweler
1
+ # Generated by juwelier
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
3
+ # Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: rubyneat 0.4.0.alpha.4 ruby lib
5
+ # stub: rubyneat 0.4.0.alpha.5 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "rubyneat"
9
- s.version = "0.4.0.alpha.4"
9
+ s.version = "0.4.0.alpha.5"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
13
13
  s.authors = ["Fred Mitchell"]
14
- s.date = "2014-08-03"
14
+ s.date = "2016-03-26"
15
15
  s.description = "\n RubyNEAT -- Neural Evolution of Augmenting Topologies for Ruby.\n By way of an enhanced form of Genetic Algorithms -- the NEAT algorithm,\n populations of neural nets are evolved to handle pre-defined goals.\n\n RubyNEAT is the first implementation of the NEAT algorithm for Ruby, and\n it leverages Ruby's power to implement the NEAT algorithm in a way that would\n be difficult to do in other languages. The 'activation function' is largely\n standalone. Basically, activation is achieved by functional programming.\n\n Meaning, once your network is evolved, you can extract it as source code you\n can then utilize without the RubyNEAT engine.\n\n RubyNEAT can be used for nearly any Machine Learning task you can dream of,\n because it's also extensible and modular. See http://rubyneat.com for the\n details.\n "
16
16
  s.email = "lordalveric@yahoo.com"
17
17
  s.executables = ["neat"]
@@ -22,6 +22,9 @@ Gem::Specification.new do |s|
22
22
  ".directory",
23
23
  ".irbrc",
24
24
  ".ruby-version",
25
+ ".sass-cache/bc401a9774cbf72f4f089136a23a587fd10c0a99/_base.scssc",
26
+ ".sass-cache/bc401a9774cbf72f4f089136a23a587fd10c0a99/_layout.scssc",
27
+ ".sass-cache/bc401a9774cbf72f4f089136a23a587fd10c0a99/_syntax-highlighting.scssc",
25
28
  ".semver",
26
29
  "Gemfile",
27
30
  "Gemfile.lock",
@@ -29,6 +32,18 @@ Gem::Specification.new do |s|
29
32
  "Gemfile.orig",
30
33
  "README.md",
31
34
  "Rakefile",
35
+ "_site/about/index.html",
36
+ "_site/css/main.css",
37
+ "_site/docs.md",
38
+ "_site/feed.xml",
39
+ "_site/index.html",
40
+ "_site/index.md",
41
+ "_site/index.org",
42
+ "_site/jekyll/update/2016/03/25/welcome-to-jekyll.html",
43
+ "_site/params.json",
44
+ "_site/stylesheets/github-light.css",
45
+ "_site/stylesheets/normalize.css",
46
+ "_site/stylesheets/stylesheet.css",
32
47
  "bin/neat",
33
48
  "config/application.rb",
34
49
  "lib/rubyneat.rb",
@@ -59,7 +74,7 @@ Gem::Specification.new do |s|
59
74
  s.homepage = "http://rubyneat.com"
60
75
  s.licenses = ["MIT"]
61
76
  s.required_ruby_version = Gem::Requirement.new(">= 2.0")
62
- s.rubygems_version = "2.2.2"
77
+ s.rubygems_version = "2.5.1"
63
78
  s.summary = "RubyNEAT NeuralEvolution of Augmenting Topologies"
64
79
 
65
80
  if s.respond_to? :specification_version then
@@ -73,17 +88,15 @@ Gem::Specification.new do |s|
73
88
  s.add_runtime_dependency(%q<thor>, ["~> 0"])
74
89
  s.add_runtime_dependency(%q<awesome_print>, ["~> 1"])
75
90
  s.add_runtime_dependency(%q<deep_dive>, ["~> 0"])
76
- s.add_runtime_dependency(%q<bond>, ["~> 0.5"])
77
- s.add_runtime_dependency(%q<rb-readline>, ["~> 0.5"])
91
+ s.add_runtime_dependency(%q<bond>, ["~> 0"])
92
+ s.add_runtime_dependency(%q<rb-readline>, ["~> 0"])
78
93
  s.add_runtime_dependency(%q<queue_ding>, [">= 0"])
79
- s.add_runtime_dependency(%q<gosu>, ["~> 0"])
80
- s.add_runtime_dependency(%q<rubyvis>, ["~> 0"])
94
+ s.add_runtime_dependency(%q<semver>, ["~> 1"])
81
95
  s.add_development_dependency(%q<rspec>, ["~> 2"])
82
96
  s.add_development_dependency(%q<yard>, ["~> 0"])
83
97
  s.add_development_dependency(%q<guard>, ["~> 2"])
84
98
  s.add_development_dependency(%q<guard-rspec>, ["~> 4"])
85
- s.add_development_dependency(%q<semver>, ["~> 1"])
86
- s.add_development_dependency(%q<jeweler>, ["~> 2"])
99
+ s.add_development_dependency(%q<juwelier>, [">= 0"])
87
100
  s.add_development_dependency(%q<simplecov>, ["~> 0"])
88
101
  else
89
102
  s.add_dependency(%q<distribution>, ["~> 0"])
@@ -93,17 +106,15 @@ Gem::Specification.new do |s|
93
106
  s.add_dependency(%q<thor>, ["~> 0"])
94
107
  s.add_dependency(%q<awesome_print>, ["~> 1"])
95
108
  s.add_dependency(%q<deep_dive>, ["~> 0"])
96
- s.add_dependency(%q<bond>, ["~> 0.5"])
97
- s.add_dependency(%q<rb-readline>, ["~> 0.5"])
109
+ s.add_dependency(%q<bond>, ["~> 0"])
110
+ s.add_dependency(%q<rb-readline>, ["~> 0"])
98
111
  s.add_dependency(%q<queue_ding>, [">= 0"])
99
- s.add_dependency(%q<gosu>, ["~> 0"])
100
- s.add_dependency(%q<rubyvis>, ["~> 0"])
112
+ s.add_dependency(%q<semver>, ["~> 1"])
101
113
  s.add_dependency(%q<rspec>, ["~> 2"])
102
114
  s.add_dependency(%q<yard>, ["~> 0"])
103
115
  s.add_dependency(%q<guard>, ["~> 2"])
104
116
  s.add_dependency(%q<guard-rspec>, ["~> 4"])
105
- s.add_dependency(%q<semver>, ["~> 1"])
106
- s.add_dependency(%q<jeweler>, ["~> 2"])
117
+ s.add_dependency(%q<juwelier>, [">= 0"])
107
118
  s.add_dependency(%q<simplecov>, ["~> 0"])
108
119
  end
109
120
  else
@@ -114,17 +125,15 @@ Gem::Specification.new do |s|
114
125
  s.add_dependency(%q<thor>, ["~> 0"])
115
126
  s.add_dependency(%q<awesome_print>, ["~> 1"])
116
127
  s.add_dependency(%q<deep_dive>, ["~> 0"])
117
- s.add_dependency(%q<bond>, ["~> 0.5"])
118
- s.add_dependency(%q<rb-readline>, ["~> 0.5"])
128
+ s.add_dependency(%q<bond>, ["~> 0"])
129
+ s.add_dependency(%q<rb-readline>, ["~> 0"])
119
130
  s.add_dependency(%q<queue_ding>, [">= 0"])
120
- s.add_dependency(%q<gosu>, ["~> 0"])
121
- s.add_dependency(%q<rubyvis>, ["~> 0"])
131
+ s.add_dependency(%q<semver>, ["~> 1"])
122
132
  s.add_dependency(%q<rspec>, ["~> 2"])
123
133
  s.add_dependency(%q<yard>, ["~> 0"])
124
134
  s.add_dependency(%q<guard>, ["~> 2"])
125
135
  s.add_dependency(%q<guard-rspec>, ["~> 4"])
126
- s.add_dependency(%q<semver>, ["~> 1"])
127
- s.add_dependency(%q<jeweler>, ["~> 2"])
136
+ s.add_dependency(%q<juwelier>, [">= 0"])
128
137
  s.add_dependency(%q<simplecov>, ["~> 0"])
129
138
  end
130
139
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubyneat
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0.alpha.4
4
+ version: 0.4.0.alpha.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fred Mitchell
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-03 00:00:00.000000000 Z
11
+ date: 2016-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: distribution
@@ -114,28 +114,28 @@ dependencies:
114
114
  requirements:
115
115
  - - "~>"
116
116
  - !ruby/object:Gem::Version
117
- version: '0.5'
117
+ version: '0'
118
118
  type: :runtime
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
122
  - - "~>"
123
123
  - !ruby/object:Gem::Version
124
- version: '0.5'
124
+ version: '0'
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: rb-readline
127
127
  requirement: !ruby/object:Gem::Requirement
128
128
  requirements:
129
129
  - - "~>"
130
130
  - !ruby/object:Gem::Version
131
- version: '0.5'
131
+ version: '0'
132
132
  type: :runtime
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
136
  - - "~>"
137
137
  - !ruby/object:Gem::Version
138
- version: '0.5'
138
+ version: '0'
139
139
  - !ruby/object:Gem::Dependency
140
140
  name: queue_ding
141
141
  requirement: !ruby/object:Gem::Requirement
@@ -151,33 +151,19 @@ dependencies:
151
151
  - !ruby/object:Gem::Version
152
152
  version: '0'
153
153
  - !ruby/object:Gem::Dependency
154
- name: gosu
155
- requirement: !ruby/object:Gem::Requirement
156
- requirements:
157
- - - "~>"
158
- - !ruby/object:Gem::Version
159
- version: '0'
160
- type: :runtime
161
- prerelease: false
162
- version_requirements: !ruby/object:Gem::Requirement
163
- requirements:
164
- - - "~>"
165
- - !ruby/object:Gem::Version
166
- version: '0'
167
- - !ruby/object:Gem::Dependency
168
- name: rubyvis
154
+ name: semver
169
155
  requirement: !ruby/object:Gem::Requirement
170
156
  requirements:
171
157
  - - "~>"
172
158
  - !ruby/object:Gem::Version
173
- version: '0'
159
+ version: '1'
174
160
  type: :runtime
175
161
  prerelease: false
176
162
  version_requirements: !ruby/object:Gem::Requirement
177
163
  requirements:
178
164
  - - "~>"
179
165
  - !ruby/object:Gem::Version
180
- version: '0'
166
+ version: '1'
181
167
  - !ruby/object:Gem::Dependency
182
168
  name: rspec
183
169
  requirement: !ruby/object:Gem::Requirement
@@ -235,33 +221,19 @@ dependencies:
235
221
  - !ruby/object:Gem::Version
236
222
  version: '4'
237
223
  - !ruby/object:Gem::Dependency
238
- name: semver
239
- requirement: !ruby/object:Gem::Requirement
240
- requirements:
241
- - - "~>"
242
- - !ruby/object:Gem::Version
243
- version: '1'
244
- type: :development
245
- prerelease: false
246
- version_requirements: !ruby/object:Gem::Requirement
247
- requirements:
248
- - - "~>"
249
- - !ruby/object:Gem::Version
250
- version: '1'
251
- - !ruby/object:Gem::Dependency
252
- name: jeweler
224
+ name: juwelier
253
225
  requirement: !ruby/object:Gem::Requirement
254
226
  requirements:
255
- - - "~>"
227
+ - - ">="
256
228
  - !ruby/object:Gem::Version
257
- version: '2'
229
+ version: '0'
258
230
  type: :development
259
231
  prerelease: false
260
232
  version_requirements: !ruby/object:Gem::Requirement
261
233
  requirements:
262
- - - "~>"
234
+ - - ">="
263
235
  - !ruby/object:Gem::Version
264
- version: '2'
236
+ version: '0'
265
237
  - !ruby/object:Gem::Dependency
266
238
  name: simplecov
267
239
  requirement: !ruby/object:Gem::Requirement
@@ -297,6 +269,9 @@ files:
297
269
  - ".directory"
298
270
  - ".irbrc"
299
271
  - ".ruby-version"
272
+ - ".sass-cache/bc401a9774cbf72f4f089136a23a587fd10c0a99/_base.scssc"
273
+ - ".sass-cache/bc401a9774cbf72f4f089136a23a587fd10c0a99/_layout.scssc"
274
+ - ".sass-cache/bc401a9774cbf72f4f089136a23a587fd10c0a99/_syntax-highlighting.scssc"
300
275
  - ".semver"
301
276
  - Gemfile
302
277
  - Gemfile.lock
@@ -304,6 +279,18 @@ files:
304
279
  - Gemfile.orig
305
280
  - README.md
306
281
  - Rakefile
282
+ - _site/about/index.html
283
+ - _site/css/main.css
284
+ - _site/docs.md
285
+ - _site/feed.xml
286
+ - _site/index.html
287
+ - _site/index.md
288
+ - _site/index.org
289
+ - _site/jekyll/update/2016/03/25/welcome-to-jekyll.html
290
+ - _site/params.json
291
+ - _site/stylesheets/github-light.css
292
+ - _site/stylesheets/normalize.css
293
+ - _site/stylesheets/stylesheet.css
307
294
  - bin/neat
308
295
  - config/application.rb
309
296
  - lib/rubyneat.rb
@@ -350,7 +337,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
350
337
  version: 1.3.1
351
338
  requirements: []
352
339
  rubyforge_project:
353
- rubygems_version: 2.2.2
340
+ rubygems_version: 2.5.1
354
341
  signing_key:
355
342
  specification_version: 4
356
343
  summary: RubyNEAT NeuralEvolution of Augmenting Topologies