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
| set clipboard=unnamedplus " use the clipboards of vim and win | |
| set paste " Paste from a windows or from vim | |
| set go+=a " Visual selection automatically copied to the clipboard | |
| set guioptions+=a |
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
| alias compose="docker-compose" | |
| alias agi='sudo apt-get install' | |
| alias agr='sudo apt-get remove' | |
| alias agu='sudo apt-get update' | |
| alias acs='apt-cache search' | |
| alias cp='cp -iv' | |
| alias mv='mv -iv' | |
| alias rm='rm -i' |
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
| git config --global alias.s status | |
| git config --global rerere.enabled true | |
| git config --global alias.lg "log --oneline --decorate --all --graph" | |
| git config --global merge.ff false | |
| git config branch.master.mergeoptions "--no-ff" |
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
| module Config | |
| class Boolean < Object | |
| ALLOWED_VALUES = ['true','1','yes','false','0','no'] | |
| def self.=== val | |
| ALLOWED_VALUES.member? val | |
| end | |
| def self.convert val |
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
| module Config | |
| class Boolean < Object | |
| ALLOWED_VALUES = ['true','1','yes','false','0','no'] | |
| def self.=== val | |
| ALLOWED_VALUES.member? val | |
| end | |
| def self.convert val |
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
| GIT | |
| remote: git://github.com/spree/spree.git | |
| revision: eaaea6cd21fb5dfbf06a00c871b12934d62ec67e | |
| branch: 2-4-stable | |
| specs: | |
| spree (2.4.0.rc4) | |
| spree_api (= 2.4.0.rc4) | |
| spree_backend (= 2.4.0.rc4) | |
| spree_cmd (= 2.4.0.rc4) | |
| spree_core (= 2.4.0.rc4) |
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
| ruby '2.1.4' | |
| source 'https://rubygems.org' | |
| # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | |
| gem 'rails', '4.1.6' | |
| # Use sqlite3 as the database for Active Record | |
| gem 'sqlite3', group: :development | |
| gem 'mysql2', group: :production, platform: :ruby |
NewerOlder