Skip to content

Commit

Permalink
Bump Ruby and dependencies versions ⚡
Browse files Browse the repository at this point in the history
  • Loading branch information
artkirienko committed May 8, 2020
1 parent 7b6e69b commit c405b41
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.3.0
2.7.1
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

## 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
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.

Expand Down
2 changes: 1 addition & 1 deletion lib/waterfoul/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Waterfoul
VERSION = "0.1.0"
VERSION = "0.1.1"
end
6 changes: 3 additions & 3 deletions waterfoul.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_development_dependency "bundler", "~> 1.10"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "bundler", "~> 2.1"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec"
spec.add_development_dependency "byebug"
spec.add_development_dependency "guard"
spec.add_development_dependency "guard-rspec"

spec.add_dependency "thor"
spec.add_dependency "ffi", "~> 1.9.14"
spec.add_dependency "ffi", "~> 1.12.2"
end

0 comments on commit c405b41

Please sign in to comment.