Skip to content

Commit 6dae178

Browse files
committed
adding Ruby Resources
1 parent 1d98da1 commit 6dae178

4 files changed

Lines changed: 27 additions & 1 deletion

File tree

Gemfile.lock

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,4 +99,3 @@ DEPENDENCIES
9999
rspec
100100
sinatra
101101
webrat
102-

controllers/help.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,7 @@
22
get "/help" do
33
haml :"help/index"
44
end
5+
6+
get "/help/ruby_resources" do
7+
haml :"help/ruby_resources"
8+
end

views/help/index.haml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
%h1 Hackety Help!
22
%p.help This page is intended to be used by people who need help with using Hackety Hack. If you'd like to help develop Hackety Hack itself, please check out our <a href="http://wiki.github.com/hacketyhack/hacketyhack/">GitHub</a>.
33

4+
%h2 Ruby Resources
5+
6+
%p Check out the <a href="/help/ruby_resources">Ruby Resources</a> page for a list of great links for learning Ruby.
7+
8+
%h2 FAQ
9+
410
%ol
511
%li
612
.question What is Hackety Hack?

views/help/ruby_resources.haml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
%h1 Ruby Resources
2+
3+
%p Here are some different ways to learn about Ruby programming. If I'm missing something great that should be on this list, please let me know!
4+
5+
%ul
6+
%li
7+
%a{:href => "http://hackety-hack.com/forums/learning_ruby"} Hackety Hack Forums: Learning Ruby
8+
%li
9+
%a{:href => "http://mislav.uniqpath.com/poignant-guide/"} _why's (Poignant) Guide to Ruby
10+
%li
11+
%a{:href => "http://tryruby.org"} Try Ruby!
12+
13+
%p Here are some reference materials:
14+
15+
%ul
16+
%li
17+
%a{:href => "http://ruby-lang.org"} Official Ruby Website

0 commit comments

Comments
 (0)