mirror of
https://github.com/colby-swandale/waterfoul
synced 2024-11-15 19:47:58 +01:00
Merge pull request #5 from artkirienko/bump-ruby-and-gem-versions
This commit is contained in:
commit
518520e9e1
4 changed files with 8 additions and 5 deletions
|
@ -1 +1 @@
|
||||||
2.3.0
|
2.7.1
|
||||||
|
|
|
@ -11,6 +11,9 @@ Make sure to `bundle install` first and install required libraries.
|
||||||
|
|
||||||
By default the emulator will run the boot rom, if you wish to skip it then add `--skip-boot` as an option.
|
By default the emulator will run the boot rom, if you wish to skip it then add `--skip-boot` as an option.
|
||||||
|
|
||||||
|
## Try turning on the --jit and --enable-frozen-string-literal to get max fps
|
||||||
|
`RUBYOPT="--enable-frozen-string-literal --jit --jit-max-cache=100000 --jit-min-calls=3" bundle exec exe/waterfoul start <path to rom>`
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
The [sdl2](https://www.libsdl.org/download-2.0.php) library is currenty used to render pixels. Most platforms have packages avaliable, else see [here](https://wiki.libsdl.org/Installation). This library is required and needs to be installed before you can run the emulator.
|
The [sdl2](https://www.libsdl.org/download-2.0.php) library is currenty used to render pixels. Most platforms have packages avaliable, else see [here](https://wiki.libsdl.org/Installation). This library is required and needs to be installed before you can run the emulator.
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
module Waterfoul
|
module Waterfoul
|
||||||
VERSION = "0.1.0"
|
VERSION = "0.1.1"
|
||||||
end
|
end
|
||||||
|
|
|
@ -26,13 +26,13 @@ Gem::Specification.new do |spec|
|
||||||
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
||||||
spec.require_paths = ["lib"]
|
spec.require_paths = ["lib"]
|
||||||
|
|
||||||
spec.add_development_dependency "bundler", "~> 1.10"
|
spec.add_development_dependency "bundler", "~> 2.1"
|
||||||
spec.add_development_dependency "rake", "~> 10.0"
|
spec.add_development_dependency "rake", "~> 13.0"
|
||||||
spec.add_development_dependency "rspec"
|
spec.add_development_dependency "rspec"
|
||||||
spec.add_development_dependency "byebug"
|
spec.add_development_dependency "byebug"
|
||||||
spec.add_development_dependency "guard"
|
spec.add_development_dependency "guard"
|
||||||
spec.add_development_dependency "guard-rspec"
|
spec.add_development_dependency "guard-rspec"
|
||||||
|
|
||||||
spec.add_dependency "thor"
|
spec.add_dependency "thor"
|
||||||
spec.add_dependency "ffi", "~> 1.9.14"
|
spec.add_dependency "ffi", "~> 1.12.2"
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue