Skip to content

Instantly share code, notes, and snippets.

@randomecho
Last active December 17, 2015 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save randomecho/5625064 to your computer and use it in GitHub Desktop.
Save randomecho/5625064 to your computer and use it in GitHub Desktop.
Workarounds and reminders for Ruby development on Windows (Vista at least)

Bloody hell is Ruby on Rails development on Windows an exercise in chasing through search engines.

database configuration does not specify adapter

"database configuration does not specify adapter" error with PG gem in Rails 3.2

kgio stops Bundler in its tracks

You may see this when you cannot bundle install all the way:

An error occurred while installing kgio (2.8.0), and Bundler cannot continue. Make sure that gem install kgio -v '2.8.0' succeeds before bundling

This may be because your Gemfile is trying to use Unicorn:

gem 'unicorn', group: :production

Drop that sack of horse horns and just do with the WEBrick server instead. Thin may also give you problems.

gem 'thin'

Disable that as well if you get the same kind of trouble as running on Unicorn.

Sass is not where it thinks you should be

Loading up a page nets you nothing because you get an error like this:

different prefix: "c:/" and "s:/dev/fry/app/assets/stylesheets" (in s:/dev/fry/app/assets/stylesheets/application.css.scss)

Make sure project is on the same drive as where you've installed Ruby

License: Creative Commons Attribution-ShareAlike 3.0 Unported

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment