-
Notifications
You must be signed in to change notification settings - Fork 7
Code walkthrough
steveklabnik edited this page Oct 5, 2010
·
1 revision
Here's what's in all of the various files in the source:
- Gemfile and Gemfile.lock: Used by bundler to handle gem dependancies
- LICENSE: BSD goodness.
- README.md: The Blue Shoes README.
- Rakefile: various tasks to help with shoes development
- blue_shoes.gemspec: this gemspec is used to build the blue_shoes gem.
- lib: the meat of the project. This is where all the code is. ** blue_shoes.rb: the main file of the project, includes everything else ** blue_shoes: all of the individual files that make up blue_shoes *** app.rb the main source file, this is where it all goes down. *** various others
- samples: A few example programs that work with blue shoes. Right now, hello.rb is the only one that works, simple-anim.rb doesn't.
- static: any static assets needed for the project.