codelation-cli 0.0.11 → 0.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 45829fe7d3c931eef9c0faa5ca5998c8c0f6a20f
|
|
4
|
+
data.tar.gz: 9252f0b455554abf4ca0e543335f5b5dad1b2cf5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5917e2aca28fc81f4f5777bee73e7146d0e338873268684d132fc2a368ca5895e39446f78a94b37772daf913a38d7fb7b8791b5ca57ce0af7c3c5fb94aae8ab4
|
|
7
|
+
data.tar.gz: 42b413d5e8299f08065ba56f80316de5a27e9876b96c87ea4d89b1c45f4edb5bc1839924bb4b129ea0ff12af9b2824de98d39b4cf0330fc6222b2f98ae363890
|
|
@@ -22,7 +22,7 @@ module Codelation
|
|
|
22
22
|
print_command("Installing Ruby #{RUBY_VERSION} to ~/.codelation/ruby")
|
|
23
23
|
`ruby-install -i ~/.codelation/ruby ruby #{RUBY_VERSION}`
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
print_heading("Installing Ruby Gems")
|
|
26
26
|
install_gems
|
|
27
27
|
|
|
28
28
|
ruby_install_cleanup
|
data/lib/codelation/version.rb
CHANGED
|
@@ -3,10 +3,10 @@ alias desktop="cd ~/Desktop"
|
|
|
3
3
|
alias downloads="cd ~/Downloads"
|
|
4
4
|
alias fixopenwith="/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -kill -r -domain local -domain user"
|
|
5
5
|
alias gg="git status -s"
|
|
6
|
-
alias gitclean=
|
|
6
|
+
alias gitclean='git branch --merged | grep -v "\*" | xargs -n 1 git branch -d'
|
|
7
7
|
alias ll="ls -lah"
|
|
8
8
|
alias railsclean="RAILS_ENV=development rake assets:clean; RAILS_ENV=development rake tmp:clear; RAILS_ENV=test rake assets:clean; RAILS_ENV=test rake tmp:clear"
|
|
9
|
-
alias ss="rake start"
|
|
9
|
+
alias ss="bundle exec rake start"
|
|
10
10
|
alias sshdogids="ssh -R 52698:localhost:52698 -p 22711 root@dogids.com"
|
|
11
11
|
|
|
12
12
|
# Add Postgres commands from Postgres.app
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: codelation-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brian Pattison
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-02-
|
|
11
|
+
date: 2015-02-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: open_uri_redirections
|