summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2021-08-08 21:25:44 -0400
committerrealtradam <[email protected]>2021-08-08 21:25:44 -0400
commit4401e68464d1d5932daec84e41aeb7b4a88c831e (patch)
treeb4e610785be4c561708486365ebb4811000f0d9c
downloadruboids-4401e68464d1d5932daec84e41aeb7b4a88c831e.tar.gz
ruboids-4401e68464d1d5932daec84e41aeb7b4a88c831e.zip
.
-rw-r--r--Gemfile11
-rw-r--r--Gemfile.lock15
-rw-r--r--README.mdown3
-rw-r--r--run.rb0
4 files changed, 29 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 0000000..3bdf259
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,11 @@
+# frozen_string_literal: true
+
+source "https://rubygems.org"
+
+git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
+
+# gem "rails"
+
+gem "ruby2d", "~> 0.10.0"
+
+gem "felflame", "~> 3.0"
diff --git a/Gemfile.lock b/Gemfile.lock
new file mode 100644
index 0000000..218d8de
--- /dev/null
+++ b/Gemfile.lock
@@ -0,0 +1,15 @@
+GEM
+ remote: https://rubygems.org/
+ specs:
+ felflame (3.0.0)
+ ruby2d (0.10.0)
+
+PLATFORMS
+ x86_64-linux
+
+DEPENDENCIES
+ felflame (~> 3.0)
+ ruby2d (~> 0.10.0)
+
+BUNDLED WITH
+ 2.2.22
diff --git a/README.mdown b/README.mdown
new file mode 100644
index 0000000..82ebbca
--- /dev/null
+++ b/README.mdown
@@ -0,0 +1,3 @@
+## Boids simulation made using [Ruby2D](http://www.ruby2d.com) and [FelFlame](https://github.com/realtradam/FelFlame)
+
+Making this mostly as a test of using FelFlame in a real project, to try out and see if I can find bugs of flaws in it.
diff --git a/run.rb b/run.rb
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/run.rb