⌘T | go to file |
⌘⌃P | go to project |
⌘R | go to methods |
⌃G | go to line |
⌘KB | toggle side bar |
⌘⇧P | command prompt |
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
# Rake task to copy local files to remote server via FTP | |
# required credentials.yml file, that contains keys: | |
# server, username, password | |
require "net/ftp" | |
require "yaml" | |
class FTPClient | |
attr_reader :remote_path |
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
source :rubygems | |
gem "rails", ">= 3.0" | |
gem "rack" | |
gem "clearance", "0.9.0.rc9" | |
gem "haml" | |
gem "high_voltage" | |
gem "hoptoad_notifier" | |
gem "RedCloth", :require => "redcloth" | |
gem "paperclip" |
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
" | |
".vimrc File | |
"Written by Jack Franklin | |
"A lot of this came from Jeffrey Way's video tutorials & his .vimrc file | |
"(jeffrey-way.com, net.tutsplus.com) | |
" | |
"Tabs | |
set tabstop=4 | |
set shiftwidth=4 |
(a gist based on the old toolmantim article on setting up remote repos)
To collaborate in a distributed development process you’ll need to push code to remotely accessible repositories.
This is somewhat of a follow-up to the previous article setting up a new rails app with git.
Set up the new bare repo on the server:
NewerOlder