-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
31 lines (24 loc) · 864 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Gemfile for your RubyNEAT RubyneatExamples project.
source 'https://rubygems.org'
gem 'rubyneat', '~> 0.4'
# For demo purposes, we include the gosu library, but if you don't
# need this, then comment it out or remove it.
#gem 'gosu', require: false
# So you can create pretty charts and graphs of
# your RubyNEAT progress, etc. Feel free to remove
# this if you don't need it.
#gem 'rubyvis', require: false
group :development do
# If this fails, comment this out as the
# dashboard is still under development.
#gem 'rubyneat_dashboard'
# If you are using an IDE, you may wish to remove
# or replace with the IDE's debugger gem
# gem 'debugger'
end
#FIXME this should not be necessary here.
gem 'semver2'
# So we can have a dashboard to monitor and control the
# progress of RubyNEAT
# TODO: Uncomment the following
#gem 'rubyneat_dashboard'