Skip to content

Instantly share code, notes, and snippets.

@mikecmpbll
Created October 2, 2015 15:33
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 mikecmpbll/096c0912096be52d6b51 to your computer and use it in GitHub Desktop.
Save mikecmpbll/096c0912096be52d6b51 to your computer and use it in GitHub Desktop.
mbp4:my_app mike.campbell$ grep libv8 Gemfile.lock
libv8 (3.16.14.11)
libv8 (~> 3.16.14.0)
mbp4:my_app mike.campbell$ git status
# On branch ruby2-2
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: Gemfile.lock
# modified: config/environments/development.rb
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# clear_db.sql
# config/environments/swap.rb
# lib/attachment_fixer.rb
# lib/capistrano/
# lib/clean_up_doc_mess.rb
# lib/clean_up_doc_mess2.rb
# lib/micro_proxy.rb
# lib/pdf/
# lib/timeout_to_bg.rb
no changes added to commit (use "git add" and/or "git commit -a")
mbp4:my_app mike.campbell$ git commit -am "Update libv8 version in Gemfile.lock"
[ruby2-2 f09d2f8] Update libv8 version in Gemfile.lock
2 files changed, 8 insertions(+), 1 deletion(-)
mbp4:my_app mike.campbell$ grep libv8 Gemfile.lock
libv8 (3.16.14.7)
libv8 (~> 3.16.14.0)
mbp4:my_app mike.campbell$ git status
# On branch ruby2-2
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: Gemfile.lock
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# clear_db.sql
# config/environments/swap.rb
# lib/attachment_fixer.rb
# lib/capistrano/
# lib/clean_up_doc_mess.rb
# lib/clean_up_doc_mess2.rb
# lib/micro_proxy.rb
# lib/pdf/
# lib/timeout_to_bg.rb
no changes added to commit (use "git add" and/or "git commit -a")
mbp4:my_app mike.campbell$ git diff
diff --git a/Gemfile.lock b/Gemfile.lock
index 24dcea5..74174b7 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -175,7 +175,7 @@ GEM
jwt (1.5.0)
launchy (2.4.3)
addressable (~> 2.3)
- libv8 (3.16.14.11)
+ libv8 (3.16.14.7)
little-plugger (1.1.3)
logging (2.0.0)
little-plugger (~> 1.1)
@@ -427,6 +427,3 @@ DEPENDENCIES
therubyracer
uglifier (>= 1.3.0)
will_paginate-bootstrap
-
-BUNDLED WITH
- 1.10.6
mbp4:my_app mike.campbell$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment