public
Description: The full source code for projects used in Railscasts episodes.
Homepage: http://railscasts.com
Clone URL: git://github.com/ryanb/railscasts-episodes.git
100644 21 lines (17 sloc) 0.4 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Railscasts Episode #135: Making a Gem
 
http://railscasts.com/episodes/135
 
Commands
 
  sudo gem install echoe
  mkdir -p uniquify/lib
  touch README.rdoc Rakefile lib/uniquify.rb
  rake -T
  rake manifest
  rake install
  rake build_gemspec
  git init
  git add .
  git commit -m "initial commit"
  git remote add origin git@github.com:ryanb/uniquify.git
  git push
  touch CHANGELOG
  touch init.rb