├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.md ├── TODO.md ├── VERSION ├── adventure_time.gif ├── bootstrap ├── bootstrap.rb ├── public │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js └── views │ └── index.erb ├── config.ru ├── csv_uploader ├── csv_uploader.rb ├── public │ └── example.csv └── views │ ├── display_csv.erb │ └── index.erb ├── dictionary ├── dictionary.rb └── views │ ├── add.erb │ ├── index.erb │ └── lookup.erb ├── form ├── form.rb └── views │ ├── index.erb │ └── say_hello.erb ├── friday └── friday.rb ├── gallery ├── gallery.rb └── views │ └── index.erb ├── hello_heroku └── hello_heroku.rb ├── hello_world └── hello_world.rb ├── pokemon ├── pokemon.rb └── views │ ├── index.erb │ └── pokemon.erb ├── sentence_diff ├── sentence_diff.rb └── views │ ├── compare.erb │ └── form.erb ├── templates ├── templates.rb └── views │ └── index.erb └── url_shortener └── url_shortener.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/TODO.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.2.0 2 | -------------------------------------------------------------------------------- /adventure_time.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/adventure_time.gif -------------------------------------------------------------------------------- /bootstrap/bootstrap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/bootstrap/bootstrap.rb -------------------------------------------------------------------------------- /bootstrap/public/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/bootstrap/public/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /bootstrap/public/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/bootstrap/public/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /bootstrap/public/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/bootstrap/public/css/bootstrap.css -------------------------------------------------------------------------------- /bootstrap/public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/bootstrap/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /bootstrap/public/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/bootstrap/public/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /bootstrap/public/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/bootstrap/public/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /bootstrap/public/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/bootstrap/public/js/bootstrap.js -------------------------------------------------------------------------------- /bootstrap/public/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/bootstrap/public/js/bootstrap.min.js -------------------------------------------------------------------------------- /bootstrap/views/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/bootstrap/views/index.erb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/config.ru -------------------------------------------------------------------------------- /csv_uploader/csv_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/csv_uploader/csv_uploader.rb -------------------------------------------------------------------------------- /csv_uploader/public/example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/csv_uploader/public/example.csv -------------------------------------------------------------------------------- /csv_uploader/views/display_csv.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/csv_uploader/views/display_csv.erb -------------------------------------------------------------------------------- /csv_uploader/views/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/csv_uploader/views/index.erb -------------------------------------------------------------------------------- /dictionary/dictionary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/dictionary/dictionary.rb -------------------------------------------------------------------------------- /dictionary/views/add.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/dictionary/views/add.erb -------------------------------------------------------------------------------- /dictionary/views/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/dictionary/views/index.erb -------------------------------------------------------------------------------- /dictionary/views/lookup.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/dictionary/views/lookup.erb -------------------------------------------------------------------------------- /form/form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/form/form.rb -------------------------------------------------------------------------------- /form/views/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/form/views/index.erb -------------------------------------------------------------------------------- /form/views/say_hello.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/form/views/say_hello.erb -------------------------------------------------------------------------------- /friday/friday.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/friday/friday.rb -------------------------------------------------------------------------------- /gallery/gallery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/gallery/gallery.rb -------------------------------------------------------------------------------- /gallery/views/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/gallery/views/index.erb -------------------------------------------------------------------------------- /hello_heroku/hello_heroku.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/hello_heroku/hello_heroku.rb -------------------------------------------------------------------------------- /hello_world/hello_world.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/hello_world/hello_world.rb -------------------------------------------------------------------------------- /pokemon/pokemon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/pokemon/pokemon.rb -------------------------------------------------------------------------------- /pokemon/views/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/pokemon/views/index.erb -------------------------------------------------------------------------------- /pokemon/views/pokemon.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/pokemon/views/pokemon.erb -------------------------------------------------------------------------------- /sentence_diff/sentence_diff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/sentence_diff/sentence_diff.rb -------------------------------------------------------------------------------- /sentence_diff/views/compare.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/sentence_diff/views/compare.erb -------------------------------------------------------------------------------- /sentence_diff/views/form.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/sentence_diff/views/form.erb -------------------------------------------------------------------------------- /templates/templates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/templates/templates.rb -------------------------------------------------------------------------------- /templates/views/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/templates/views/index.erb -------------------------------------------------------------------------------- /url_shortener/url_shortener.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachBeta/ruby-newbie/HEAD/url_shortener/url_shortener.rb --------------------------------------------------------------------------------