Skip to content

Instantly share code, notes, and snippets.

View ccelestial's full-sized avatar

Tophs Celestial ccelestial

View GitHub Profile

Keybase proof

I hereby claim:

  • I am ccelestial on github.
  • I am ccelestial (https://keybase.io/ccelestial) on keybase.
  • I have a public key ASDwkYYF2z3528FGLw3Llqbq7U7jzIVJ-GLo9nfjJLGHrgo

To claim this, I am signing this object:

@ccelestial
ccelestial / Upgrading rails 5.0 to 5.1
Created September 20, 2018 08:20 — forked from kirankarki/Upgrading rails 5.0 to 5.1
Notes on upgrading rails 5.0 to 5.1
1. Change rails version in Gemfile
> gem 'rails', '~> 5.1', '>= 5.1.4'
2. Remove Gemfile.lock
> git rm Gemfile.lock
3. Run bundle install command
> bundle install --jobs=5
4. Run rails' app update to apply changes to app