This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <title>{% if page.title %}{{ page.title }} - {{ site.title }}{% else %}{{ site.title }}{% endif %}</title> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Twitter cards metadatas --> | |
| <meta name="twitter:card" content="summary"> | |
| <meta name="twitter:site" content="@vdaubry"> | |
| <meta name="twitter:creator" content="@vdaubry"> | |
| {% if page.title %} | |
| <meta name="twitter:title" content="{{ page.title }}"> | |
| {% else %} | |
| <meta name="twitter:title" content="{{ site.title }}"> | |
| {% endif %} | |
| {% if page.url %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- facebook Open Graph Metadatas --> | |
| <meta content="your_facebook_app_id" property="fb:app_id"> | |
| <meta content="{{ site.title }}" property="og:site_name"> | |
| {% if page.title %} | |
| <meta content="{{ page.title }}" property="og:title"> | |
| {% else %} | |
| <meta content="{{ site.title }}" property="og:title"> | |
| {% endif %} | |
| {% if page.title %} | |
| <meta content="article" property="og:type"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "_id":{ | |
| "$oid":"54033bf96d627008c6000000" | |
| }, | |
| "websites":[ | |
| { | |
| "_id":{ | |
| "$oid":"54033bf96d627008c6010000" | |
| }, | |
| "created_at":"2014-08-31T15:15:05.278Z", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "_id":{ | |
| "$oid":"54033bf96d627008c6000000" | |
| }, | |
| "websites":[ | |
| { | |
| "_id":{ | |
| "$oid":"54033bf96d627008c6010000" | |
| }, | |
| "created_at":"2014-08-31T15:15:05.278Z", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export PATH=$PATH:~/bin | |
| [[ -s "/Users/vincentdaubry/.rvm/scripts/rvm" ]] && source "/Users/vincentdaubry/.rvm/scripts/rvm" # Load RVM into a shell session *as a function* | |
| # MacPorts Installer addition on 2012-02-03_at_16:06:34: adding an appropriate PATH variable for use with MacPorts. | |
| export PATH=/opt/local/bin:/opt/local/sbin:$PATH | |
| # Finished adapting your PATH environment variable for use with MacPorts. | |
| # MacPorts Installer addition on 2012-02-18_at_08:57:12: adding an appropriate PATH variable for use with MacPorts. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting | |
| [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # config valid only for Capistrano 3.1 | |
| lock '3.1.0' | |
| set :application, 'my-app' | |
| set :repo_url, '[email protected]:my-app.git' | |
| # Default deploy_to directory is /var/www/my_app | |
| set :deploy_to, '/srv/www/my-app' | |
| set :rvm_ruby_string, :local # use the same ruby as used locally for deployment |
NewerOlder