- https://rubyinstaller.org/downloads/
- https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-2.5.3-1/rubyinstaller-devkit-2.5.3-1-x64.exe
- Install with DevKit (will run ridk)
- Select option 3
ridk exec pacman -S mingw-w64-x86_64-sqlite3 mingw-w64-x86_64-libxslt mingw-w64-x86_64-libxml2
gem install rails --no-ri --no-rdoc
rails new APP
. The installation will fail. So...- Edit Gemfile
- Change
gem sqlite
togem 'sqlite3', git: "https://github.com/larskanis/sqlite3-ruby", branch: "add-gemspec"
cd APP
rails s
Last active
March 22, 2019 23:44
-
-
Save gastonambrogi/e9bd27fd0321fa3c404ab8b315a0113f to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Works in Win 10 Pro, Just a small comment:
After step 9) I think a
bundle install
is needed, otherwise, the following message will appear:The git source https://github.com/larskanis/sqlite3-ruby is not yet checked out. Please run
bundle installbefore trying to start your application