diff options
| author | realtradam <[email protected]> | 2021-08-08 21:25:44 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2021-08-08 21:25:44 -0400 |
| commit | 4401e68464d1d5932daec84e41aeb7b4a88c831e (patch) | |
| tree | b4e610785be4c561708486365ebb4811000f0d9c | |
| download | ruboids-4401e68464d1d5932daec84e41aeb7b4a88c831e.tar.gz ruboids-4401e68464d1d5932daec84e41aeb7b4a88c831e.zip | |
.
| -rw-r--r-- | Gemfile | 11 | ||||
| -rw-r--r-- | Gemfile.lock | 15 | ||||
| -rw-r--r-- | README.mdown | 3 | ||||
| -rw-r--r-- | run.rb | 0 |
4 files changed, 29 insertions, 0 deletions
@@ -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. |
