Skip to content

Instantly share code, notes, and snippets.

@danopia
Created May 8, 2009 23:35
Show Gist options
  • Save danopia/109059 to your computer and use it in GitHub Desktop.
Save danopia/109059 to your computer and use it in GitHub Desktop.
app/:
controllers
helpers
models
views
app/controllers:
application_controller.rb
home_controller.rb
posts_controller.rb
user_controller.rb
users_controller.rb
app/helpers:
application_helper.rb
home_helper.rb
posts_helper.rb
user_helper.rb
users_helper.rb
app/models:
post.rb
user.rb
users.rb
app/views:
home
layouts
posts
user
users
app/views/home:
index.html.erb
app/views/layouts:
application.html.erb
scaffold.rhtml
app/views/posts:
edit.html.erb
index.html.erb
new.html.erb
show.html.erb
app/views/user:
change_password.html.erb
delete.html.erb
edit.html.erb
forgot_password.html.erb
login.html.erb
logout.html.erb
signup.html.erb
welcome.html.erb
app/views/users:
index.html.erb
show.html.erb
config/:
boot.rb
database.yml
environment.rb
environments
initializers
locales
routes.rb
config/environments:
development.rb
production.rb
test.rb
config/initializers:
backtrace_silencers.rb
inflections.rb
mime_types.rb
new_rails_defaults.rb
session_store.rb
config/locales:
en.yml
db:
migrate
schema.rb
db/migrate:
001_create_users.rb
20090430211644_create_posts.rb
doc:
README_FOR_APP
lib/:
login_system.rb
tasks
lib/tasks:
log/:
development.log
production.log
server.log
test.log
script/:
about
console
dbconsole
destroy
generate
performance
plugin
runner
server
script/performance:
benchmarker
profiler
test/:
fixtures
functional
integration
performance
test_helper.rb
unit
test/fixtures:
posts.yml
users.yml
test/functional:
home_controller_test.rb
posts_controller_test.rb
user_controller_test.rb
test/integration:
test/performance:
browsing_test.rb
test/unit:
helpers
post_test.rb
users_test.rb
user_test.rb
test/unit/helpers:
application_helper_test.rb
home_helper_test.rb
posts_helper_test.rb
tmp/:
cache
pids
sessions
sockets
tmp/cache:
tmp/pids:
tmp/sessions:
tmp/sockets:
vendor/:
plugins
vendor/plugins:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment