├── .gitignore ├── README ├── asset_pipeline ├── README ├── src │ └── 0_0_example.rb ├── static │ └── images │ │ └── rails.png └── txt │ ├── 0_introduction.mdown │ ├── 1_what_is_the_asset_pipeline.mdown │ ├── 2_upgrading_rails_apps.mdown │ └── 3_sprockets_and_sinatra.mdown ├── clean ├── README ├── src │ └── 0_0_example.rb ├── static │ └── images │ │ └── rails.png └── txt │ └── 0_introduction.mdown ├── coffeescript ├── 01_introduction.html ├── 02_syntax.html ├── 03_classes.html ├── 04_idioms.html ├── 05_compiling.html ├── 06_applications.html ├── 07_the_bad_parts.html ├── Gemfile ├── LICENSE ├── README ├── Rakefile ├── all.html ├── chapters │ ├── 01_introduction.md │ ├── 02_syntax.md │ ├── 03_classes.md │ ├── 04_idioms.md │ ├── 05_compiling.md │ ├── 06_applications.md │ └── 07_the_bad_parts.md ├── index.html └── site │ ├── coffee-script.js │ ├── covers.gif │ ├── highlight.css │ ├── highlight.js │ ├── index.ms │ ├── jquery.js │ ├── lrg.jpg │ ├── page.ms │ ├── preview.js │ └── site.css ├── hlrb ├── README ├── src │ └── 0_0_example.rb ├── static │ └── images │ │ ├── howrubyworks.jpg │ │ ├── rails.png │ │ ├── scite.png │ │ ├── textmate.png │ │ └── threads.jpg └── txt │ ├── 0_introduction.mdown │ ├── 1_welcome_to_ruby.mdown │ ├── 2_break_it_down.mdown │ ├── 3_hustle_and_flow_control.mdown │ ├── 4_the_system_beneath.mdown │ ├── 5_looking_beyond_home.mdown │ └── 6_its_a_library.mdown └── mongo_design ├── README ├── src └── 0_0_example.rb ├── static └── images │ └── rails.png └── txt └── 0_introduction.mdown /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | Our eBook library. More coming soon... -------------------------------------------------------------------------------- /asset_pipeline/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/asset_pipeline/README -------------------------------------------------------------------------------- /asset_pipeline/src/0_0_example.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /asset_pipeline/static/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/asset_pipeline/static/images/rails.png -------------------------------------------------------------------------------- /asset_pipeline/txt/0_introduction.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/asset_pipeline/txt/0_introduction.mdown -------------------------------------------------------------------------------- /asset_pipeline/txt/1_what_is_the_asset_pipeline.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/asset_pipeline/txt/1_what_is_the_asset_pipeline.mdown -------------------------------------------------------------------------------- /asset_pipeline/txt/2_upgrading_rails_apps.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/asset_pipeline/txt/2_upgrading_rails_apps.mdown -------------------------------------------------------------------------------- /asset_pipeline/txt/3_sprockets_and_sinatra.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/asset_pipeline/txt/3_sprockets_and_sinatra.mdown -------------------------------------------------------------------------------- /clean/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/clean/README -------------------------------------------------------------------------------- /clean/src/0_0_example.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clean/static/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/clean/static/images/rails.png -------------------------------------------------------------------------------- /clean/txt/0_introduction.mdown: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coffeescript/01_introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/01_introduction.html -------------------------------------------------------------------------------- /coffeescript/02_syntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/02_syntax.html -------------------------------------------------------------------------------- /coffeescript/03_classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/03_classes.html -------------------------------------------------------------------------------- /coffeescript/04_idioms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/04_idioms.html -------------------------------------------------------------------------------- /coffeescript/05_compiling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/05_compiling.html -------------------------------------------------------------------------------- /coffeescript/06_applications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/06_applications.html -------------------------------------------------------------------------------- /coffeescript/07_the_bad_parts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/07_the_bad_parts.html -------------------------------------------------------------------------------- /coffeescript/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/Gemfile -------------------------------------------------------------------------------- /coffeescript/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/LICENSE -------------------------------------------------------------------------------- /coffeescript/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/README -------------------------------------------------------------------------------- /coffeescript/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/Rakefile -------------------------------------------------------------------------------- /coffeescript/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/all.html -------------------------------------------------------------------------------- /coffeescript/chapters/01_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/chapters/01_introduction.md -------------------------------------------------------------------------------- /coffeescript/chapters/02_syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/chapters/02_syntax.md -------------------------------------------------------------------------------- /coffeescript/chapters/03_classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/chapters/03_classes.md -------------------------------------------------------------------------------- /coffeescript/chapters/04_idioms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/chapters/04_idioms.md -------------------------------------------------------------------------------- /coffeescript/chapters/05_compiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/chapters/05_compiling.md -------------------------------------------------------------------------------- /coffeescript/chapters/06_applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/chapters/06_applications.md -------------------------------------------------------------------------------- /coffeescript/chapters/07_the_bad_parts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/chapters/07_the_bad_parts.md -------------------------------------------------------------------------------- /coffeescript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/index.html -------------------------------------------------------------------------------- /coffeescript/site/coffee-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/site/coffee-script.js -------------------------------------------------------------------------------- /coffeescript/site/covers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/site/covers.gif -------------------------------------------------------------------------------- /coffeescript/site/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/site/highlight.css -------------------------------------------------------------------------------- /coffeescript/site/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/site/highlight.js -------------------------------------------------------------------------------- /coffeescript/site/index.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/site/index.ms -------------------------------------------------------------------------------- /coffeescript/site/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/site/jquery.js -------------------------------------------------------------------------------- /coffeescript/site/lrg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/site/lrg.jpg -------------------------------------------------------------------------------- /coffeescript/site/page.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/site/page.ms -------------------------------------------------------------------------------- /coffeescript/site/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/site/preview.js -------------------------------------------------------------------------------- /coffeescript/site/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/coffeescript/site/site.css -------------------------------------------------------------------------------- /hlrb/README: -------------------------------------------------------------------------------- 1 | # Mr. Neighborly's Humble Little Ruby Book 2 | 3 | Updating for 1.9 currently... 4 | -------------------------------------------------------------------------------- /hlrb/src/0_0_example.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hlrb/static/images/howrubyworks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/hlrb/static/images/howrubyworks.jpg -------------------------------------------------------------------------------- /hlrb/static/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/hlrb/static/images/rails.png -------------------------------------------------------------------------------- /hlrb/static/images/scite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/hlrb/static/images/scite.png -------------------------------------------------------------------------------- /hlrb/static/images/textmate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/hlrb/static/images/textmate.png -------------------------------------------------------------------------------- /hlrb/static/images/threads.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/hlrb/static/images/threads.jpg -------------------------------------------------------------------------------- /hlrb/txt/0_introduction.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/hlrb/txt/0_introduction.mdown -------------------------------------------------------------------------------- /hlrb/txt/1_welcome_to_ruby.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/hlrb/txt/1_welcome_to_ruby.mdown -------------------------------------------------------------------------------- /hlrb/txt/2_break_it_down.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/hlrb/txt/2_break_it_down.mdown -------------------------------------------------------------------------------- /hlrb/txt/3_hustle_and_flow_control.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/hlrb/txt/3_hustle_and_flow_control.mdown -------------------------------------------------------------------------------- /hlrb/txt/4_the_system_beneath.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/hlrb/txt/4_the_system_beneath.mdown -------------------------------------------------------------------------------- /hlrb/txt/5_looking_beyond_home.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/hlrb/txt/5_looking_beyond_home.mdown -------------------------------------------------------------------------------- /hlrb/txt/6_its_a_library.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/hlrb/txt/6_its_a_library.mdown -------------------------------------------------------------------------------- /mongo_design/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/mongo_design/README -------------------------------------------------------------------------------- /mongo_design/src/0_0_example.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mongo_design/static/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcturo/library/HEAD/mongo_design/static/images/rails.png -------------------------------------------------------------------------------- /mongo_design/txt/0_introduction.mdown: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------