├── .gitignore ├── README.md ├── steps.json └── steps ├── about-course-01 └── content.md ├── about-course ├── content.md ├── files │ ├── 10.jpg │ ├── 13.gif │ └── 4.jpg └── links.json ├── argv-test-01 ├── content.md └── solution │ └── nightingales.rb ├── argv-test ├── content.md ├── files │ ├── arguments.rb │ └── jealous_test.rb └── links.json ├── arrays-thread-01 ├── content.md └── solution │ └── names.rb ├── arrays-thread-02 ├── content.md └── solution │ └── array.rb ├── arrays-thread-03 ├── content.md └── solution │ └── cars.rb ├── arrays-thread-04 ├── content.md └── solution │ └── kanobu.rb ├── arrays-thread ├── content.md ├── files │ ├── arrays.rb │ └── road.rb └── links.json ├── classes-inheritance-01 ├── content.md └── solution │ ├── child.rb │ ├── main.rb │ └── parent.rb ├── classes-inheritance-02 ├── content.md └── solution │ └── store │ ├── lib │ ├── book.rb │ ├── film.rb │ └── product.rb │ └── main.rb ├── classes-inheritance ├── content.md ├── files │ └── notepad │ │ ├── link.rb │ │ ├── memo.rb │ │ ├── post.rb │ │ └── task.rb └── links.json ├── classes-objects-01 ├── content.md └── solution │ ├── cameleo.rb │ └── main.rb ├── classes-objects-02 ├── content.md └── solution │ ├── main.rb │ └── person.rb ├── classes-objects-03 ├── content.md └── solution │ ├── main.rb │ └── person.rb ├── classes-objects-04 ├── content.md └── solution │ ├── body_builder.rb │ └── main.rb ├── classes-objects ├── content.md ├── files │ ├── bridge.rb │ └── road.rb └── links.json ├── debug-ruby-01 └── content.md ├── debug-ruby ├── content.md ├── files │ ├── equation_bad.rb │ └── equation_good.rb └── links.json ├── errors-exceptions-01 ├── content.md └── solution │ └── calculator_int.rb ├── errors-exceptions-02 ├── content.md └── solution │ └── calculator_float.rb ├── errors-exceptions-03 ├── content.md └── solution │ └── 03_viselitsa.zip ├── errors-exceptions ├── content.md ├── files │ ├── movie_advisor-01.zip │ ├── movie_advisor-02.zip │ └── send_mail.rb └── links.json ├── gets-butovo-01 ├── content.md └── solution │ └── average.rb ├── gets-butovo-02 ├── content.md └── solution │ └── currency_converter.rb ├── gets-butovo-03 ├── content.md └── solution │ └── currency_converter.rb ├── gets-butovo-04 ├── content.md └── solution │ └── quest.rb ├── gets-butovo-05 ├── content.md └── solution │ └── ugadayka.rb ├── gets-butovo ├── content.md ├── files │ ├── butovo_full.rb │ ├── butovo_simple.rb │ └── gets.rb └── links.json ├── github-01 └── content.md ├── github-02 ├── content.md └── solution │ └── pick_a_card.rb ├── github-03 ├── content.md └── solution │ └── encrypt.rb ├── github ├── content.md ├── files │ └── pick_a_card.rb └── links.json ├── hashes-symbols-01 ├── content.md └── solution │ └── passenger.rb ├── hashes-symbols-02 ├── content.md └── solution │ └── passengers.rb ├── hashes-symbols-03 ├── content.md └── solution │ └── shopping_lists.rb ├── hashes-symbols ├── content.md ├── files │ ├── hero_antihero_new.rb │ ├── hero_antihero_old.rb │ ├── mendeleev.rb │ └── send_mail.rb └── links.json ├── ide-rubymine ├── content.md ├── files │ ├── coin.rb │ └── viselitsa.zip └── links.json ├── if-variables-01 ├── content.md └── solution │ └── biggest_number.rb ├── if-variables-02 ├── content.md └── solution │ └── average.rb ├── if-variables-03 ├── content.md └── solution │ └── even.rb ├── if-variables-04 ├── content.md └── solution │ └── holiday.rb ├── if-variables-05 ├── content.md └── solution │ └── coin.rb ├── if-variables-06 ├── content.md └── solution │ └── coin_advanced.rb ├── if-variables ├── content.md ├── files │ ├── objects.rb │ └── variables.rb └── links.json ├── irb-01 ├── content.md └── solution │ └── palindrom.rb ├── irb ├── content.md ├── files │ └── palindrom.rb └── links.json ├── json-01 ├── content.md └── solution │ └── business_card │ ├── business_card.json │ ├── business_card.rb │ ├── hint.md │ └── task.md ├── json-02 ├── content.md └── solution │ ├── languages.json │ └── languages.rb ├── json-03 ├── content.md └── solution │ ├── elements.json │ └── mendeleev.rb ├── json-04 ├── content.md └── solution │ ├── elements.json │ └── mendeleev.rb ├── json ├── content.md ├── files │ ├── astro_sign │ │ ├── astro_sign.rb │ │ ├── signs.json │ │ └── signs_bad.json │ └── colors │ │ ├── colors.json │ │ └── colors.rb └── links.json ├── loops-01 ├── content.md └── solution │ └── array.rb ├── loops-02 ├── content.md └── solution │ └── max_in_array.rb ├── loops-03 ├── content.md └── solution │ └── user_choice.rb ├── loops-04 ├── content.md └── solution │ └── reverse_array.rb ├── loops ├── content.md ├── files │ ├── alice.rb │ ├── cycles.rb │ ├── eggs.rb │ ├── funny_cycle.gif │ └── time.rb └── links.json ├── magic-ball-01 ├── content.md └── solution │ └── magic_ball.rb ├── magic-ball-02 ├── content.md └── solution │ └── magic_ball.rb ├── magic-ball ├── content.md ├── files │ └── magic_ball.rb └── links.json ├── memory-usage-01 ├── content.md └── solution │ └── memory_usage.rb ├── memory-usage-02 ├── content.md └── solution │ └── defined.rb ├── memory-usage-03 ├── content.md └── solution │ └── scopes.rb ├── memory-usage-04 ├── content.md └── solution │ └── class_scope.rb ├── memory-usage ├── content.md ├── files │ ├── bear_honeypots.rb │ └── bear_honeypots_collector.rb └── links.json ├── methods-01 ├── content.md └── solution │ └── circle.rb ├── methods-02 ├── content.md └── solution │ └── slice_array.rb ├── methods-03 ├── content.md └── solution │ └── stars.rb ├── methods-04 ├── content.md └── solution │ └── guess_a_number.rb ├── methods-05 └── content.md ├── methods-06 └── content.md ├── methods ├── content.md ├── files │ ├── inclination.rb │ ├── methods.rb │ ├── parameters.rb │ ├── puts.rb │ └── return.rb └── links.json ├── network-01 ├── content.md └── solution │ └── meteoservice │ ├── lib │ └── meteoservice_forecast.rb │ ├── meteoservice.rb │ └── spec │ ├── meteoservice_forecast_spec.rb │ └── spec_helper.rb ├── network-02 ├── content.md └── solution │ └── meteoservice │ ├── lib │ └── meteoservice_forecast.rb │ ├── meteoservice.rb │ └── spec │ ├── meteoservice_forecast_spec.rb │ └── spec_helper.rb ├── network-03 ├── content.md └── solution │ └── currency.rb ├── network ├── content.md ├── files │ ├── meteoservice.rb │ ├── xpath_css_recipes_1.pdf │ └── xpath_css_recipes_2.pdf └── links.json ├── read-files-01 ├── content.md └── solution │ ├── data │ └── file.txt │ └── file_info.rb ├── read-files-02 ├── content.md └── solution │ ├── data │ ├── eyes.txt │ ├── foreheads.txt │ ├── mouths.txt │ └── noses.txt │ └── face.rb ├── read-files-03 ├── content.md └── solution │ ├── data │ ├── answers.txt │ └── questions.txt │ └── victorina.rb ├── read-files ├── content.md ├── files │ ├── aphorizmus.txt │ ├── files_read.zip │ ├── open_file.rb │ └── read_lines.rb └── links.json ├── regexp-01 ├── content.md └── solution │ └── email.rb ├── regexp-02 ├── content.md └── solution │ └── hashtag.rb ├── regexp-03 ├── content.md └── solution │ ├── data │ └── text.txt │ └── three_letters.rb ├── regexp ├── content.md ├── files │ ├── game.rb │ └── methods.rb └── links.json ├── rspec-01 ├── content.md └── solution │ └── hashtags │ ├── .rspec │ ├── lib │ └── hashtags.rb │ └── spec │ ├── hashtags_spec.rb │ └── spec_helper.rb ├── rspec-02 ├── content.md └── solution │ └── credit_request │ ├── .rspec │ ├── lib │ └── credit_request.rb │ └── spec │ ├── credit_request_spec.rb │ └── spec_helper.rb ├── rspec-03 ├── content.md └── solution │ └── viselitsa │ ├── .rspec │ ├── data │ └── words.txt │ ├── image │ ├── 0.txt │ ├── 1.txt │ ├── 2.txt │ ├── 3.txt │ ├── 4.txt │ ├── 5.txt │ ├── 6.txt │ └── 7.txt │ ├── lib │ ├── game.rb │ ├── result_printer.rb │ └── word_reader.rb │ ├── main.rb │ └── spec │ ├── game_spec.rb │ └── spec_helper.rb ├── rspec ├── content.md ├── files │ ├── sklonjator │ │ ├── sklonjator.rb │ │ └── sklonjator_spec.rb │ └── sklonjator_refactored │ │ ├── sklonjator.rb │ │ └── sklonjator_spec.rb └── links.json ├── rubygems-01 ├── content.md └── solution │ └── math.rb ├── rubygems-02 ├── content.md └── solution │ └── translit.rb ├── rubygems-03 ├── content.md └── solution │ └── send_mail.rb ├── rubygems ├── content.md ├── files │ └── send_mail.rb └── links.json ├── setup-ruby-01 ├── content.md └── solution │ └── hello.rb ├── setup-ruby-02 └── content.md ├── setup-ruby ├── content.md ├── files │ ├── hello.rb │ ├── hello_world_comic.jpg │ ├── sublime-text-3-osx.pdf │ ├── sublime_text_2_cheatsheet_ru.png │ └── sublime_text_3_cheatsheet_en.pdf └── links.json ├── showcase-cv-interview-01 └── content.md ├── showcase-cv-interview-02 └── content.md ├── showcase-cv-interview-03 └── content.md ├── showcase-cv-interview-04 └── content.md ├── showcase-cv-interview-05 └── content.md ├── showcase-cv-interview-06 └── content.md ├── showcase-cv-interview-07 └── content.md ├── showcase-cv-interview-08 └── content.md ├── showcase-cv-interview ├── content.md ├── files │ ├── good_progs_list.txt │ └── java_carrier_example.pdf └── links.json ├── sqlite-01 └── content.md ├── sqlite-02 └── content.md ├── sqlite-notepad-01 └── content.md ├── sqlite-notepad-02 └── content.md ├── sqlite-notepad-03 ├── content.md └── solution │ └── notepad │ ├── link.rb │ ├── memo.rb │ ├── new_post.rb │ ├── notepad.sqlite │ ├── post.rb │ ├── read.rb │ └── task.rb ├── sqlite-notepad-04 ├── content.md └── solution │ └── notepad │ ├── link.rb │ ├── memo.rb │ ├── new_post.rb │ ├── notepad.sqlite │ ├── post.rb │ ├── read.rb │ └── task.rb ├── sqlite-notepad ├── content.md ├── files │ ├── companies_people.sql.txt │ ├── notepad.sql.txt │ └── notepad │ │ ├── link.rb │ │ ├── memo.rb │ │ ├── new_post.rb │ │ ├── notepad.sqlite │ │ ├── post.rb │ │ ├── read.rb │ │ └── task.rb └── links.json ├── sqlite ├── content.md ├── files │ └── sqlite-autoconf-3081100.zip └── links.json ├── static-abstract-methods-01 ├── content.md └── solution │ └── 01_store.zip ├── static-abstract-methods-02 ├── content.md └── solution │ └── 02_store.zip ├── static-abstract-methods-03 ├── content.md └── solution │ └── 03_store.zip ├── static-abstract-methods-04 ├── content.md └── solution │ └── 04_store.zip ├── static-abstract-methods ├── content.md ├── files │ └── notepad.zip └── links.json ├── vcs-git-01 └── content.md ├── vcs-git-02 └── content.md ├── vcs-git-03 ├── content.md └── solution │ └── roll_some_dice.rb ├── vcs-git-04 ├── content.md └── solution │ └── roll_some_dice.rb ├── vcs-git ├── content.md ├── files │ ├── roll_a_die.rb │ └── roll_some_dice.rb └── links.json ├── viselitsa-v1-01 ├── content.md └── solution │ ├── goroda.rb │ ├── london.rb │ ├── paris.rb │ └── rome.rb ├── viselitsa-v1-02 ├── content.md └── solution │ ├── viselitsa.rb │ └── viselitsa_methods.rb ├── viselitsa-v1 ├── content.md ├── files │ ├── methods.rb │ └── viselitsa.rb └── links.json ├── viselitsa-v2-01 ├── content.md └── solution │ └── heroes.rb ├── viselitsa-v2-02 ├── content.md └── solution │ ├── film.rb │ └── main.rb ├── viselitsa-v2-03 ├── content.md └── solution │ ├── film.rb │ ├── main.rb │ └── person.rb ├── viselitsa-v2 ├── content.md ├── files │ ├── game.rb │ ├── result_printer.rb │ └── viselitsa.rb └── links.json ├── viselitsa-v3-01 ├── content.md └── solution │ ├── choose_movie.rb │ └── movies.txt ├── viselitsa-v3-02 ├── content.md └── solution │ ├── choose_movie.rb │ └── movies.txt ├── viselitsa-v3 ├── content.md ├── files │ ├── data │ │ └── words.txt │ ├── game.rb │ ├── image │ │ ├── 0.txt │ │ ├── 1.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ └── 7.txt │ ├── result_printer.rb │ ├── viselitsa.rb │ ├── viselitsa_v3.zip │ └── word_reader.rb └── links.json ├── what-to-do-next-01 └── content.md ├── what-to-do-next-02 └── content.md ├── what-to-do-next-03 └── content.md ├── what-to-do-next-04 └── content.md ├── what-to-do-next ├── content.md └── links.json ├── write-files-01 ├── content.md └── solution │ └── hello.rb ├── write-files-02 ├── content.md └── solution │ ├── eyes.txt │ ├── foreheads.txt │ ├── main.rb │ ├── mouths.txt │ └── noses.txt ├── write-files-03 ├── content.md └── solution │ ├── data │ └── holidays.txt │ └── holidays.rb ├── write-files ├── content.md ├── files │ └── my_diary.rb └── links.json ├── xml-html-01 ├── content.md └── solution │ ├── business_card.rb │ └── business_card.xml ├── xml-html-02 ├── content.md └── solution │ ├── business_card.html │ └── photo.jpg ├── xml-html-03 ├── content.md └── solution │ └── store │ ├── book.rb │ ├── data │ └── products.xml │ ├── disk.rb │ ├── main.rb │ ├── movie.rb │ └── product.rb ├── xml-html ├── content.md ├── files │ ├── expenses_tracker.zip │ ├── patsansky_kiker.docx.zip │ └── sample.xml └── links.json ├── xml-write-01 ├── content.md └── solution │ ├── data │ └── chest.xml │ └── main.rb ├── xml-write-02 ├── content.md └── solution │ ├── data │ └── chest.xml │ ├── lib │ └── wish.rb │ ├── list_wishes.rb │ └── main.rb ├── xml-write-03 ├── content.md └── solution │ └── business_card │ ├── business_card.html │ ├── business_card.rb │ └── business_card.xml ├── xml-write-04 ├── content.md └── solution │ └── store │ ├── add_a_product.rb │ ├── book.rb │ ├── data │ └── products.xml │ ├── disk.rb │ ├── main.rb │ ├── movie.rb │ └── product.rb └── xml-write ├── content.md ├── files ├── XPath_cheatshit.pdf ├── XPath_cheatshit_2.pdf └── expenses_tracker │ ├── expenses_reader.rb │ ├── expenses_writer.rb │ └── my_expenses.xml └── links.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/README.md -------------------------------------------------------------------------------- /steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps.json -------------------------------------------------------------------------------- /steps/about-course-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/about-course-01/content.md -------------------------------------------------------------------------------- /steps/about-course/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/about-course/content.md -------------------------------------------------------------------------------- /steps/about-course/files/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/about-course/files/10.jpg -------------------------------------------------------------------------------- /steps/about-course/files/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/about-course/files/13.gif -------------------------------------------------------------------------------- /steps/about-course/files/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/about-course/files/4.jpg -------------------------------------------------------------------------------- /steps/about-course/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/about-course/links.json -------------------------------------------------------------------------------- /steps/argv-test-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/argv-test-01/content.md -------------------------------------------------------------------------------- /steps/argv-test-01/solution/nightingales.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/argv-test-01/solution/nightingales.rb -------------------------------------------------------------------------------- /steps/argv-test/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/argv-test/content.md -------------------------------------------------------------------------------- /steps/argv-test/files/arguments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/argv-test/files/arguments.rb -------------------------------------------------------------------------------- /steps/argv-test/files/jealous_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/argv-test/files/jealous_test.rb -------------------------------------------------------------------------------- /steps/argv-test/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/argv-test/links.json -------------------------------------------------------------------------------- /steps/arrays-thread-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/arrays-thread-01/content.md -------------------------------------------------------------------------------- /steps/arrays-thread-01/solution/names.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/arrays-thread-01/solution/names.rb -------------------------------------------------------------------------------- /steps/arrays-thread-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/arrays-thread-02/content.md -------------------------------------------------------------------------------- /steps/arrays-thread-02/solution/array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/arrays-thread-02/solution/array.rb -------------------------------------------------------------------------------- /steps/arrays-thread-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/arrays-thread-03/content.md -------------------------------------------------------------------------------- /steps/arrays-thread-03/solution/cars.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/arrays-thread-03/solution/cars.rb -------------------------------------------------------------------------------- /steps/arrays-thread-04/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/arrays-thread-04/content.md -------------------------------------------------------------------------------- /steps/arrays-thread-04/solution/kanobu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/arrays-thread-04/solution/kanobu.rb -------------------------------------------------------------------------------- /steps/arrays-thread/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/arrays-thread/content.md -------------------------------------------------------------------------------- /steps/arrays-thread/files/arrays.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/arrays-thread/files/arrays.rb -------------------------------------------------------------------------------- /steps/arrays-thread/files/road.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/arrays-thread/files/road.rb -------------------------------------------------------------------------------- /steps/arrays-thread/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/arrays-thread/links.json -------------------------------------------------------------------------------- /steps/classes-inheritance-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-inheritance-01/content.md -------------------------------------------------------------------------------- /steps/classes-inheritance-01/solution/child.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-inheritance-01/solution/child.rb -------------------------------------------------------------------------------- /steps/classes-inheritance-01/solution/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-inheritance-01/solution/main.rb -------------------------------------------------------------------------------- /steps/classes-inheritance-01/solution/parent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-inheritance-01/solution/parent.rb -------------------------------------------------------------------------------- /steps/classes-inheritance-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-inheritance-02/content.md -------------------------------------------------------------------------------- /steps/classes-inheritance-02/solution/store/lib/book.rb: -------------------------------------------------------------------------------- 1 | # encoding: utf-8 2 | # 3 | # Класс Книга 4 | class Book < Product 5 | end 6 | -------------------------------------------------------------------------------- /steps/classes-inheritance-02/solution/store/lib/film.rb: -------------------------------------------------------------------------------- 1 | # encoding: utf-8 2 | # 3 | # Класс Фильм 4 | class Film < Product 5 | end 6 | -------------------------------------------------------------------------------- /steps/classes-inheritance-02/solution/store/lib/product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-inheritance-02/solution/store/lib/product.rb -------------------------------------------------------------------------------- /steps/classes-inheritance-02/solution/store/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-inheritance-02/solution/store/main.rb -------------------------------------------------------------------------------- /steps/classes-inheritance/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-inheritance/content.md -------------------------------------------------------------------------------- /steps/classes-inheritance/files/notepad/link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-inheritance/files/notepad/link.rb -------------------------------------------------------------------------------- /steps/classes-inheritance/files/notepad/memo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-inheritance/files/notepad/memo.rb -------------------------------------------------------------------------------- /steps/classes-inheritance/files/notepad/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-inheritance/files/notepad/post.rb -------------------------------------------------------------------------------- /steps/classes-inheritance/files/notepad/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-inheritance/files/notepad/task.rb -------------------------------------------------------------------------------- /steps/classes-inheritance/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-inheritance/links.json -------------------------------------------------------------------------------- /steps/classes-objects-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-objects-01/content.md -------------------------------------------------------------------------------- /steps/classes-objects-01/solution/cameleo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-objects-01/solution/cameleo.rb -------------------------------------------------------------------------------- /steps/classes-objects-01/solution/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-objects-01/solution/main.rb -------------------------------------------------------------------------------- /steps/classes-objects-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-objects-02/content.md -------------------------------------------------------------------------------- /steps/classes-objects-02/solution/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-objects-02/solution/main.rb -------------------------------------------------------------------------------- /steps/classes-objects-02/solution/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-objects-02/solution/person.rb -------------------------------------------------------------------------------- /steps/classes-objects-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-objects-03/content.md -------------------------------------------------------------------------------- /steps/classes-objects-03/solution/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-objects-03/solution/main.rb -------------------------------------------------------------------------------- /steps/classes-objects-03/solution/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-objects-03/solution/person.rb -------------------------------------------------------------------------------- /steps/classes-objects-04/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-objects-04/content.md -------------------------------------------------------------------------------- /steps/classes-objects-04/solution/body_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-objects-04/solution/body_builder.rb -------------------------------------------------------------------------------- /steps/classes-objects-04/solution/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-objects-04/solution/main.rb -------------------------------------------------------------------------------- /steps/classes-objects/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-objects/content.md -------------------------------------------------------------------------------- /steps/classes-objects/files/bridge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-objects/files/bridge.rb -------------------------------------------------------------------------------- /steps/classes-objects/files/road.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-objects/files/road.rb -------------------------------------------------------------------------------- /steps/classes-objects/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/classes-objects/links.json -------------------------------------------------------------------------------- /steps/debug-ruby-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/debug-ruby-01/content.md -------------------------------------------------------------------------------- /steps/debug-ruby/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/debug-ruby/content.md -------------------------------------------------------------------------------- /steps/debug-ruby/files/equation_bad.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/debug-ruby/files/equation_bad.rb -------------------------------------------------------------------------------- /steps/debug-ruby/files/equation_good.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/debug-ruby/files/equation_good.rb -------------------------------------------------------------------------------- /steps/debug-ruby/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/debug-ruby/links.json -------------------------------------------------------------------------------- /steps/errors-exceptions-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/errors-exceptions-01/content.md -------------------------------------------------------------------------------- /steps/errors-exceptions-01/solution/calculator_int.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/errors-exceptions-01/solution/calculator_int.rb -------------------------------------------------------------------------------- /steps/errors-exceptions-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/errors-exceptions-02/content.md -------------------------------------------------------------------------------- /steps/errors-exceptions-02/solution/calculator_float.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/errors-exceptions-02/solution/calculator_float.rb -------------------------------------------------------------------------------- /steps/errors-exceptions-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/errors-exceptions-03/content.md -------------------------------------------------------------------------------- /steps/errors-exceptions-03/solution/03_viselitsa.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/errors-exceptions-03/solution/03_viselitsa.zip -------------------------------------------------------------------------------- /steps/errors-exceptions/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/errors-exceptions/content.md -------------------------------------------------------------------------------- /steps/errors-exceptions/files/movie_advisor-01.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/errors-exceptions/files/movie_advisor-01.zip -------------------------------------------------------------------------------- /steps/errors-exceptions/files/movie_advisor-02.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/errors-exceptions/files/movie_advisor-02.zip -------------------------------------------------------------------------------- /steps/errors-exceptions/files/send_mail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/errors-exceptions/files/send_mail.rb -------------------------------------------------------------------------------- /steps/errors-exceptions/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/errors-exceptions/links.json -------------------------------------------------------------------------------- /steps/gets-butovo-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/gets-butovo-01/content.md -------------------------------------------------------------------------------- /steps/gets-butovo-01/solution/average.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/gets-butovo-01/solution/average.rb -------------------------------------------------------------------------------- /steps/gets-butovo-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/gets-butovo-02/content.md -------------------------------------------------------------------------------- /steps/gets-butovo-02/solution/currency_converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/gets-butovo-02/solution/currency_converter.rb -------------------------------------------------------------------------------- /steps/gets-butovo-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/gets-butovo-03/content.md -------------------------------------------------------------------------------- /steps/gets-butovo-03/solution/currency_converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/gets-butovo-03/solution/currency_converter.rb -------------------------------------------------------------------------------- /steps/gets-butovo-04/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/gets-butovo-04/content.md -------------------------------------------------------------------------------- /steps/gets-butovo-04/solution/quest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/gets-butovo-04/solution/quest.rb -------------------------------------------------------------------------------- /steps/gets-butovo-05/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/gets-butovo-05/content.md -------------------------------------------------------------------------------- /steps/gets-butovo-05/solution/ugadayka.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/gets-butovo-05/solution/ugadayka.rb -------------------------------------------------------------------------------- /steps/gets-butovo/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/gets-butovo/content.md -------------------------------------------------------------------------------- /steps/gets-butovo/files/butovo_full.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/gets-butovo/files/butovo_full.rb -------------------------------------------------------------------------------- /steps/gets-butovo/files/butovo_simple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/gets-butovo/files/butovo_simple.rb -------------------------------------------------------------------------------- /steps/gets-butovo/files/gets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/gets-butovo/files/gets.rb -------------------------------------------------------------------------------- /steps/gets-butovo/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/gets-butovo/links.json -------------------------------------------------------------------------------- /steps/github-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/github-01/content.md -------------------------------------------------------------------------------- /steps/github-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/github-02/content.md -------------------------------------------------------------------------------- /steps/github-02/solution/pick_a_card.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/github-02/solution/pick_a_card.rb -------------------------------------------------------------------------------- /steps/github-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/github-03/content.md -------------------------------------------------------------------------------- /steps/github-03/solution/encrypt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/github-03/solution/encrypt.rb -------------------------------------------------------------------------------- /steps/github/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/github/content.md -------------------------------------------------------------------------------- /steps/github/files/pick_a_card.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/github/files/pick_a_card.rb -------------------------------------------------------------------------------- /steps/github/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/github/links.json -------------------------------------------------------------------------------- /steps/hashes-symbols-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/hashes-symbols-01/content.md -------------------------------------------------------------------------------- /steps/hashes-symbols-01/solution/passenger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/hashes-symbols-01/solution/passenger.rb -------------------------------------------------------------------------------- /steps/hashes-symbols-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/hashes-symbols-02/content.md -------------------------------------------------------------------------------- /steps/hashes-symbols-02/solution/passengers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/hashes-symbols-02/solution/passengers.rb -------------------------------------------------------------------------------- /steps/hashes-symbols-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/hashes-symbols-03/content.md -------------------------------------------------------------------------------- /steps/hashes-symbols-03/solution/shopping_lists.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/hashes-symbols-03/solution/shopping_lists.rb -------------------------------------------------------------------------------- /steps/hashes-symbols/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/hashes-symbols/content.md -------------------------------------------------------------------------------- /steps/hashes-symbols/files/hero_antihero_new.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/hashes-symbols/files/hero_antihero_new.rb -------------------------------------------------------------------------------- /steps/hashes-symbols/files/hero_antihero_old.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/hashes-symbols/files/hero_antihero_old.rb -------------------------------------------------------------------------------- /steps/hashes-symbols/files/mendeleev.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/hashes-symbols/files/mendeleev.rb -------------------------------------------------------------------------------- /steps/hashes-symbols/files/send_mail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/hashes-symbols/files/send_mail.rb -------------------------------------------------------------------------------- /steps/hashes-symbols/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/hashes-symbols/links.json -------------------------------------------------------------------------------- /steps/ide-rubymine/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/ide-rubymine/content.md -------------------------------------------------------------------------------- /steps/ide-rubymine/files/coin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/ide-rubymine/files/coin.rb -------------------------------------------------------------------------------- /steps/ide-rubymine/files/viselitsa.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/ide-rubymine/files/viselitsa.zip -------------------------------------------------------------------------------- /steps/ide-rubymine/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/ide-rubymine/links.json -------------------------------------------------------------------------------- /steps/if-variables-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/if-variables-01/content.md -------------------------------------------------------------------------------- /steps/if-variables-01/solution/biggest_number.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/if-variables-01/solution/biggest_number.rb -------------------------------------------------------------------------------- /steps/if-variables-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/if-variables-02/content.md -------------------------------------------------------------------------------- /steps/if-variables-02/solution/average.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/if-variables-02/solution/average.rb -------------------------------------------------------------------------------- /steps/if-variables-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/if-variables-03/content.md -------------------------------------------------------------------------------- /steps/if-variables-03/solution/even.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/if-variables-03/solution/even.rb -------------------------------------------------------------------------------- /steps/if-variables-04/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/if-variables-04/content.md -------------------------------------------------------------------------------- /steps/if-variables-04/solution/holiday.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/if-variables-04/solution/holiday.rb -------------------------------------------------------------------------------- /steps/if-variables-05/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/if-variables-05/content.md -------------------------------------------------------------------------------- /steps/if-variables-05/solution/coin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/if-variables-05/solution/coin.rb -------------------------------------------------------------------------------- /steps/if-variables-06/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/if-variables-06/content.md -------------------------------------------------------------------------------- /steps/if-variables-06/solution/coin_advanced.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/if-variables-06/solution/coin_advanced.rb -------------------------------------------------------------------------------- /steps/if-variables/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/if-variables/content.md -------------------------------------------------------------------------------- /steps/if-variables/files/objects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/if-variables/files/objects.rb -------------------------------------------------------------------------------- /steps/if-variables/files/variables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/if-variables/files/variables.rb -------------------------------------------------------------------------------- /steps/if-variables/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/if-variables/links.json -------------------------------------------------------------------------------- /steps/irb-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/irb-01/content.md -------------------------------------------------------------------------------- /steps/irb-01/solution/palindrom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/irb-01/solution/palindrom.rb -------------------------------------------------------------------------------- /steps/irb/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/irb/content.md -------------------------------------------------------------------------------- /steps/irb/files/palindrom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/irb/files/palindrom.rb -------------------------------------------------------------------------------- /steps/irb/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/irb/links.json -------------------------------------------------------------------------------- /steps/json-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/json-01/content.md -------------------------------------------------------------------------------- /steps/json-01/solution/business_card/business_card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/json-01/solution/business_card/business_card.json -------------------------------------------------------------------------------- /steps/json-01/solution/business_card/business_card.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/json-01/solution/business_card/business_card.rb -------------------------------------------------------------------------------- /steps/json-01/solution/business_card/hint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/json-01/solution/business_card/hint.md -------------------------------------------------------------------------------- /steps/json-01/solution/business_card/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/json-01/solution/business_card/task.md -------------------------------------------------------------------------------- /steps/json-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/json-02/content.md -------------------------------------------------------------------------------- /steps/json-02/solution/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/json-02/solution/languages.json -------------------------------------------------------------------------------- /steps/json-02/solution/languages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/json-02/solution/languages.rb -------------------------------------------------------------------------------- /steps/json-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/json-03/content.md -------------------------------------------------------------------------------- /steps/json-03/solution/elements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/json-03/solution/elements.json -------------------------------------------------------------------------------- /steps/json-03/solution/mendeleev.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/json-03/solution/mendeleev.rb -------------------------------------------------------------------------------- /steps/json-04/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/json-04/content.md -------------------------------------------------------------------------------- /steps/json-04/solution/elements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/json-04/solution/elements.json -------------------------------------------------------------------------------- /steps/json-04/solution/mendeleev.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/json-04/solution/mendeleev.rb -------------------------------------------------------------------------------- /steps/json/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/json/content.md -------------------------------------------------------------------------------- /steps/json/files/astro_sign/astro_sign.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/json/files/astro_sign/astro_sign.rb -------------------------------------------------------------------------------- /steps/json/files/astro_sign/signs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/json/files/astro_sign/signs.json -------------------------------------------------------------------------------- /steps/json/files/astro_sign/signs_bad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/json/files/astro_sign/signs_bad.json -------------------------------------------------------------------------------- /steps/json/files/colors/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/json/files/colors/colors.json -------------------------------------------------------------------------------- /steps/json/files/colors/colors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/json/files/colors/colors.rb -------------------------------------------------------------------------------- /steps/json/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/json/links.json -------------------------------------------------------------------------------- /steps/loops-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/loops-01/content.md -------------------------------------------------------------------------------- /steps/loops-01/solution/array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/loops-01/solution/array.rb -------------------------------------------------------------------------------- /steps/loops-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/loops-02/content.md -------------------------------------------------------------------------------- /steps/loops-02/solution/max_in_array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/loops-02/solution/max_in_array.rb -------------------------------------------------------------------------------- /steps/loops-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/loops-03/content.md -------------------------------------------------------------------------------- /steps/loops-03/solution/user_choice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/loops-03/solution/user_choice.rb -------------------------------------------------------------------------------- /steps/loops-04/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/loops-04/content.md -------------------------------------------------------------------------------- /steps/loops-04/solution/reverse_array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/loops-04/solution/reverse_array.rb -------------------------------------------------------------------------------- /steps/loops/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/loops/content.md -------------------------------------------------------------------------------- /steps/loops/files/alice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/loops/files/alice.rb -------------------------------------------------------------------------------- /steps/loops/files/cycles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/loops/files/cycles.rb -------------------------------------------------------------------------------- /steps/loops/files/eggs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/loops/files/eggs.rb -------------------------------------------------------------------------------- /steps/loops/files/funny_cycle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/loops/files/funny_cycle.gif -------------------------------------------------------------------------------- /steps/loops/files/time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/loops/files/time.rb -------------------------------------------------------------------------------- /steps/loops/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/loops/links.json -------------------------------------------------------------------------------- /steps/magic-ball-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/magic-ball-01/content.md -------------------------------------------------------------------------------- /steps/magic-ball-01/solution/magic_ball.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/magic-ball-01/solution/magic_ball.rb -------------------------------------------------------------------------------- /steps/magic-ball-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/magic-ball-02/content.md -------------------------------------------------------------------------------- /steps/magic-ball-02/solution/magic_ball.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/magic-ball-02/solution/magic_ball.rb -------------------------------------------------------------------------------- /steps/magic-ball/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/magic-ball/content.md -------------------------------------------------------------------------------- /steps/magic-ball/files/magic_ball.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/magic-ball/files/magic_ball.rb -------------------------------------------------------------------------------- /steps/magic-ball/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/magic-ball/links.json -------------------------------------------------------------------------------- /steps/memory-usage-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/memory-usage-01/content.md -------------------------------------------------------------------------------- /steps/memory-usage-01/solution/memory_usage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/memory-usage-01/solution/memory_usage.rb -------------------------------------------------------------------------------- /steps/memory-usage-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/memory-usage-02/content.md -------------------------------------------------------------------------------- /steps/memory-usage-02/solution/defined.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/memory-usage-02/solution/defined.rb -------------------------------------------------------------------------------- /steps/memory-usage-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/memory-usage-03/content.md -------------------------------------------------------------------------------- /steps/memory-usage-03/solution/scopes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/memory-usage-03/solution/scopes.rb -------------------------------------------------------------------------------- /steps/memory-usage-04/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/memory-usage-04/content.md -------------------------------------------------------------------------------- /steps/memory-usage-04/solution/class_scope.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/memory-usage-04/solution/class_scope.rb -------------------------------------------------------------------------------- /steps/memory-usage/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/memory-usage/content.md -------------------------------------------------------------------------------- /steps/memory-usage/files/bear_honeypots.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/memory-usage/files/bear_honeypots.rb -------------------------------------------------------------------------------- /steps/memory-usage/files/bear_honeypots_collector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/memory-usage/files/bear_honeypots_collector.rb -------------------------------------------------------------------------------- /steps/memory-usage/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/memory-usage/links.json -------------------------------------------------------------------------------- /steps/methods-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/methods-01/content.md -------------------------------------------------------------------------------- /steps/methods-01/solution/circle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/methods-01/solution/circle.rb -------------------------------------------------------------------------------- /steps/methods-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/methods-02/content.md -------------------------------------------------------------------------------- /steps/methods-02/solution/slice_array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/methods-02/solution/slice_array.rb -------------------------------------------------------------------------------- /steps/methods-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/methods-03/content.md -------------------------------------------------------------------------------- /steps/methods-03/solution/stars.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/methods-03/solution/stars.rb -------------------------------------------------------------------------------- /steps/methods-04/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/methods-04/content.md -------------------------------------------------------------------------------- /steps/methods-04/solution/guess_a_number.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/methods-04/solution/guess_a_number.rb -------------------------------------------------------------------------------- /steps/methods-05/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/methods-05/content.md -------------------------------------------------------------------------------- /steps/methods-06/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/methods-06/content.md -------------------------------------------------------------------------------- /steps/methods/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/methods/content.md -------------------------------------------------------------------------------- /steps/methods/files/inclination.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/methods/files/inclination.rb -------------------------------------------------------------------------------- /steps/methods/files/methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/methods/files/methods.rb -------------------------------------------------------------------------------- /steps/methods/files/parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/methods/files/parameters.rb -------------------------------------------------------------------------------- /steps/methods/files/puts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/methods/files/puts.rb -------------------------------------------------------------------------------- /steps/methods/files/return.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/methods/files/return.rb -------------------------------------------------------------------------------- /steps/methods/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/methods/links.json -------------------------------------------------------------------------------- /steps/network-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/network-01/content.md -------------------------------------------------------------------------------- /steps/network-01/solution/meteoservice/lib/meteoservice_forecast.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/network-01/solution/meteoservice/lib/meteoservice_forecast.rb -------------------------------------------------------------------------------- /steps/network-01/solution/meteoservice/meteoservice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/network-01/solution/meteoservice/meteoservice.rb -------------------------------------------------------------------------------- /steps/network-01/solution/meteoservice/spec/meteoservice_forecast_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/network-01/solution/meteoservice/spec/meteoservice_forecast_spec.rb -------------------------------------------------------------------------------- /steps/network-01/solution/meteoservice/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/network-01/solution/meteoservice/spec/spec_helper.rb -------------------------------------------------------------------------------- /steps/network-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/network-02/content.md -------------------------------------------------------------------------------- /steps/network-02/solution/meteoservice/lib/meteoservice_forecast.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/network-02/solution/meteoservice/lib/meteoservice_forecast.rb -------------------------------------------------------------------------------- /steps/network-02/solution/meteoservice/meteoservice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/network-02/solution/meteoservice/meteoservice.rb -------------------------------------------------------------------------------- /steps/network-02/solution/meteoservice/spec/meteoservice_forecast_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/network-02/solution/meteoservice/spec/meteoservice_forecast_spec.rb -------------------------------------------------------------------------------- /steps/network-02/solution/meteoservice/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/network-02/solution/meteoservice/spec/spec_helper.rb -------------------------------------------------------------------------------- /steps/network-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/network-03/content.md -------------------------------------------------------------------------------- /steps/network-03/solution/currency.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/network-03/solution/currency.rb -------------------------------------------------------------------------------- /steps/network/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/network/content.md -------------------------------------------------------------------------------- /steps/network/files/meteoservice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/network/files/meteoservice.rb -------------------------------------------------------------------------------- /steps/network/files/xpath_css_recipes_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/network/files/xpath_css_recipes_1.pdf -------------------------------------------------------------------------------- /steps/network/files/xpath_css_recipes_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/network/files/xpath_css_recipes_2.pdf -------------------------------------------------------------------------------- /steps/network/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/network/links.json -------------------------------------------------------------------------------- /steps/read-files-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/read-files-01/content.md -------------------------------------------------------------------------------- /steps/read-files-01/solution/data/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/read-files-01/solution/data/file.txt -------------------------------------------------------------------------------- /steps/read-files-01/solution/file_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/read-files-01/solution/file_info.rb -------------------------------------------------------------------------------- /steps/read-files-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/read-files-02/content.md -------------------------------------------------------------------------------- /steps/read-files-02/solution/data/eyes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/read-files-02/solution/data/eyes.txt -------------------------------------------------------------------------------- /steps/read-files-02/solution/data/foreheads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/read-files-02/solution/data/foreheads.txt -------------------------------------------------------------------------------- /steps/read-files-02/solution/data/mouths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/read-files-02/solution/data/mouths.txt -------------------------------------------------------------------------------- /steps/read-files-02/solution/data/noses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/read-files-02/solution/data/noses.txt -------------------------------------------------------------------------------- /steps/read-files-02/solution/face.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/read-files-02/solution/face.rb -------------------------------------------------------------------------------- /steps/read-files-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/read-files-03/content.md -------------------------------------------------------------------------------- /steps/read-files-03/solution/data/answers.txt: -------------------------------------------------------------------------------- 1 | 1024 2 | 1961 3 | 366 -------------------------------------------------------------------------------- /steps/read-files-03/solution/data/questions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/read-files-03/solution/data/questions.txt -------------------------------------------------------------------------------- /steps/read-files-03/solution/victorina.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/read-files-03/solution/victorina.rb -------------------------------------------------------------------------------- /steps/read-files/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/read-files/content.md -------------------------------------------------------------------------------- /steps/read-files/files/aphorizmus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/read-files/files/aphorizmus.txt -------------------------------------------------------------------------------- /steps/read-files/files/files_read.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/read-files/files/files_read.zip -------------------------------------------------------------------------------- /steps/read-files/files/open_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/read-files/files/open_file.rb -------------------------------------------------------------------------------- /steps/read-files/files/read_lines.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/read-files/files/read_lines.rb -------------------------------------------------------------------------------- /steps/read-files/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/read-files/links.json -------------------------------------------------------------------------------- /steps/regexp-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/regexp-01/content.md -------------------------------------------------------------------------------- /steps/regexp-01/solution/email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/regexp-01/solution/email.rb -------------------------------------------------------------------------------- /steps/regexp-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/regexp-02/content.md -------------------------------------------------------------------------------- /steps/regexp-02/solution/hashtag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/regexp-02/solution/hashtag.rb -------------------------------------------------------------------------------- /steps/regexp-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/regexp-03/content.md -------------------------------------------------------------------------------- /steps/regexp-03/solution/data/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/regexp-03/solution/data/text.txt -------------------------------------------------------------------------------- /steps/regexp-03/solution/three_letters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/regexp-03/solution/three_letters.rb -------------------------------------------------------------------------------- /steps/regexp/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/regexp/content.md -------------------------------------------------------------------------------- /steps/regexp/files/game.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/regexp/files/game.rb -------------------------------------------------------------------------------- /steps/regexp/files/methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/regexp/files/methods.rb -------------------------------------------------------------------------------- /steps/regexp/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/regexp/links.json -------------------------------------------------------------------------------- /steps/rspec-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec-01/content.md -------------------------------------------------------------------------------- /steps/rspec-01/solution/hashtags/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /steps/rspec-01/solution/hashtags/lib/hashtags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec-01/solution/hashtags/lib/hashtags.rb -------------------------------------------------------------------------------- /steps/rspec-01/solution/hashtags/spec/hashtags_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec-01/solution/hashtags/spec/hashtags_spec.rb -------------------------------------------------------------------------------- /steps/rspec-01/solution/hashtags/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec-01/solution/hashtags/spec/spec_helper.rb -------------------------------------------------------------------------------- /steps/rspec-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec-02/content.md -------------------------------------------------------------------------------- /steps/rspec-02/solution/credit_request/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /steps/rspec-02/solution/credit_request/lib/credit_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec-02/solution/credit_request/lib/credit_request.rb -------------------------------------------------------------------------------- /steps/rspec-02/solution/credit_request/spec/credit_request_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec-02/solution/credit_request/spec/credit_request_spec.rb -------------------------------------------------------------------------------- /steps/rspec-02/solution/credit_request/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec-02/solution/credit_request/spec/spec_helper.rb -------------------------------------------------------------------------------- /steps/rspec-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec-03/content.md -------------------------------------------------------------------------------- /steps/rspec-03/solution/viselitsa/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /steps/rspec-03/solution/viselitsa/data/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec-03/solution/viselitsa/data/words.txt -------------------------------------------------------------------------------- /steps/rspec-03/solution/viselitsa/image/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec-03/solution/viselitsa/image/0.txt -------------------------------------------------------------------------------- /steps/rspec-03/solution/viselitsa/image/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec-03/solution/viselitsa/image/1.txt -------------------------------------------------------------------------------- /steps/rspec-03/solution/viselitsa/image/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec-03/solution/viselitsa/image/2.txt -------------------------------------------------------------------------------- /steps/rspec-03/solution/viselitsa/image/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec-03/solution/viselitsa/image/3.txt -------------------------------------------------------------------------------- /steps/rspec-03/solution/viselitsa/image/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec-03/solution/viselitsa/image/4.txt -------------------------------------------------------------------------------- /steps/rspec-03/solution/viselitsa/image/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec-03/solution/viselitsa/image/5.txt -------------------------------------------------------------------------------- /steps/rspec-03/solution/viselitsa/image/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec-03/solution/viselitsa/image/6.txt -------------------------------------------------------------------------------- /steps/rspec-03/solution/viselitsa/image/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec-03/solution/viselitsa/image/7.txt -------------------------------------------------------------------------------- /steps/rspec-03/solution/viselitsa/lib/game.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec-03/solution/viselitsa/lib/game.rb -------------------------------------------------------------------------------- /steps/rspec-03/solution/viselitsa/lib/result_printer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec-03/solution/viselitsa/lib/result_printer.rb -------------------------------------------------------------------------------- /steps/rspec-03/solution/viselitsa/lib/word_reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec-03/solution/viselitsa/lib/word_reader.rb -------------------------------------------------------------------------------- /steps/rspec-03/solution/viselitsa/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec-03/solution/viselitsa/main.rb -------------------------------------------------------------------------------- /steps/rspec-03/solution/viselitsa/spec/game_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec-03/solution/viselitsa/spec/game_spec.rb -------------------------------------------------------------------------------- /steps/rspec-03/solution/viselitsa/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec-03/solution/viselitsa/spec/spec_helper.rb -------------------------------------------------------------------------------- /steps/rspec/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec/content.md -------------------------------------------------------------------------------- /steps/rspec/files/sklonjator/sklonjator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec/files/sklonjator/sklonjator.rb -------------------------------------------------------------------------------- /steps/rspec/files/sklonjator/sklonjator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec/files/sklonjator/sklonjator_spec.rb -------------------------------------------------------------------------------- /steps/rspec/files/sklonjator_refactored/sklonjator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec/files/sklonjator_refactored/sklonjator.rb -------------------------------------------------------------------------------- /steps/rspec/files/sklonjator_refactored/sklonjator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec/files/sklonjator_refactored/sklonjator_spec.rb -------------------------------------------------------------------------------- /steps/rspec/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rspec/links.json -------------------------------------------------------------------------------- /steps/rubygems-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rubygems-01/content.md -------------------------------------------------------------------------------- /steps/rubygems-01/solution/math.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rubygems-01/solution/math.rb -------------------------------------------------------------------------------- /steps/rubygems-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rubygems-02/content.md -------------------------------------------------------------------------------- /steps/rubygems-02/solution/translit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rubygems-02/solution/translit.rb -------------------------------------------------------------------------------- /steps/rubygems-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rubygems-03/content.md -------------------------------------------------------------------------------- /steps/rubygems-03/solution/send_mail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rubygems-03/solution/send_mail.rb -------------------------------------------------------------------------------- /steps/rubygems/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rubygems/content.md -------------------------------------------------------------------------------- /steps/rubygems/files/send_mail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rubygems/files/send_mail.rb -------------------------------------------------------------------------------- /steps/rubygems/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/rubygems/links.json -------------------------------------------------------------------------------- /steps/setup-ruby-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/setup-ruby-01/content.md -------------------------------------------------------------------------------- /steps/setup-ruby-01/solution/hello.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/setup-ruby-01/solution/hello.rb -------------------------------------------------------------------------------- /steps/setup-ruby-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/setup-ruby-02/content.md -------------------------------------------------------------------------------- /steps/setup-ruby/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/setup-ruby/content.md -------------------------------------------------------------------------------- /steps/setup-ruby/files/hello.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/setup-ruby/files/hello.rb -------------------------------------------------------------------------------- /steps/setup-ruby/files/hello_world_comic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/setup-ruby/files/hello_world_comic.jpg -------------------------------------------------------------------------------- /steps/setup-ruby/files/sublime-text-3-osx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/setup-ruby/files/sublime-text-3-osx.pdf -------------------------------------------------------------------------------- /steps/setup-ruby/files/sublime_text_2_cheatsheet_ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/setup-ruby/files/sublime_text_2_cheatsheet_ru.png -------------------------------------------------------------------------------- /steps/setup-ruby/files/sublime_text_3_cheatsheet_en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/setup-ruby/files/sublime_text_3_cheatsheet_en.pdf -------------------------------------------------------------------------------- /steps/setup-ruby/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/setup-ruby/links.json -------------------------------------------------------------------------------- /steps/showcase-cv-interview-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/showcase-cv-interview-01/content.md -------------------------------------------------------------------------------- /steps/showcase-cv-interview-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/showcase-cv-interview-02/content.md -------------------------------------------------------------------------------- /steps/showcase-cv-interview-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/showcase-cv-interview-03/content.md -------------------------------------------------------------------------------- /steps/showcase-cv-interview-04/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/showcase-cv-interview-04/content.md -------------------------------------------------------------------------------- /steps/showcase-cv-interview-05/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/showcase-cv-interview-05/content.md -------------------------------------------------------------------------------- /steps/showcase-cv-interview-06/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/showcase-cv-interview-06/content.md -------------------------------------------------------------------------------- /steps/showcase-cv-interview-07/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/showcase-cv-interview-07/content.md -------------------------------------------------------------------------------- /steps/showcase-cv-interview-08/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/showcase-cv-interview-08/content.md -------------------------------------------------------------------------------- /steps/showcase-cv-interview/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/showcase-cv-interview/content.md -------------------------------------------------------------------------------- /steps/showcase-cv-interview/files/good_progs_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/showcase-cv-interview/files/good_progs_list.txt -------------------------------------------------------------------------------- /steps/showcase-cv-interview/files/java_carrier_example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/showcase-cv-interview/files/java_carrier_example.pdf -------------------------------------------------------------------------------- /steps/showcase-cv-interview/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/showcase-cv-interview/links.json -------------------------------------------------------------------------------- /steps/sqlite-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-01/content.md -------------------------------------------------------------------------------- /steps/sqlite-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-02/content.md -------------------------------------------------------------------------------- /steps/sqlite-notepad-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad-01/content.md -------------------------------------------------------------------------------- /steps/sqlite-notepad-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad-02/content.md -------------------------------------------------------------------------------- /steps/sqlite-notepad-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad-03/content.md -------------------------------------------------------------------------------- /steps/sqlite-notepad-03/solution/notepad/link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad-03/solution/notepad/link.rb -------------------------------------------------------------------------------- /steps/sqlite-notepad-03/solution/notepad/memo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad-03/solution/notepad/memo.rb -------------------------------------------------------------------------------- /steps/sqlite-notepad-03/solution/notepad/new_post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad-03/solution/notepad/new_post.rb -------------------------------------------------------------------------------- /steps/sqlite-notepad-03/solution/notepad/notepad.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad-03/solution/notepad/notepad.sqlite -------------------------------------------------------------------------------- /steps/sqlite-notepad-03/solution/notepad/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad-03/solution/notepad/post.rb -------------------------------------------------------------------------------- /steps/sqlite-notepad-03/solution/notepad/read.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad-03/solution/notepad/read.rb -------------------------------------------------------------------------------- /steps/sqlite-notepad-03/solution/notepad/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad-03/solution/notepad/task.rb -------------------------------------------------------------------------------- /steps/sqlite-notepad-04/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad-04/content.md -------------------------------------------------------------------------------- /steps/sqlite-notepad-04/solution/notepad/link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad-04/solution/notepad/link.rb -------------------------------------------------------------------------------- /steps/sqlite-notepad-04/solution/notepad/memo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad-04/solution/notepad/memo.rb -------------------------------------------------------------------------------- /steps/sqlite-notepad-04/solution/notepad/new_post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad-04/solution/notepad/new_post.rb -------------------------------------------------------------------------------- /steps/sqlite-notepad-04/solution/notepad/notepad.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad-04/solution/notepad/notepad.sqlite -------------------------------------------------------------------------------- /steps/sqlite-notepad-04/solution/notepad/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad-04/solution/notepad/post.rb -------------------------------------------------------------------------------- /steps/sqlite-notepad-04/solution/notepad/read.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad-04/solution/notepad/read.rb -------------------------------------------------------------------------------- /steps/sqlite-notepad-04/solution/notepad/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad-04/solution/notepad/task.rb -------------------------------------------------------------------------------- /steps/sqlite-notepad/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad/content.md -------------------------------------------------------------------------------- /steps/sqlite-notepad/files/companies_people.sql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad/files/companies_people.sql.txt -------------------------------------------------------------------------------- /steps/sqlite-notepad/files/notepad.sql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad/files/notepad.sql.txt -------------------------------------------------------------------------------- /steps/sqlite-notepad/files/notepad/link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad/files/notepad/link.rb -------------------------------------------------------------------------------- /steps/sqlite-notepad/files/notepad/memo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad/files/notepad/memo.rb -------------------------------------------------------------------------------- /steps/sqlite-notepad/files/notepad/new_post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad/files/notepad/new_post.rb -------------------------------------------------------------------------------- /steps/sqlite-notepad/files/notepad/notepad.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad/files/notepad/notepad.sqlite -------------------------------------------------------------------------------- /steps/sqlite-notepad/files/notepad/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad/files/notepad/post.rb -------------------------------------------------------------------------------- /steps/sqlite-notepad/files/notepad/read.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad/files/notepad/read.rb -------------------------------------------------------------------------------- /steps/sqlite-notepad/files/notepad/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad/files/notepad/task.rb -------------------------------------------------------------------------------- /steps/sqlite-notepad/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite-notepad/links.json -------------------------------------------------------------------------------- /steps/sqlite/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite/content.md -------------------------------------------------------------------------------- /steps/sqlite/files/sqlite-autoconf-3081100.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite/files/sqlite-autoconf-3081100.zip -------------------------------------------------------------------------------- /steps/sqlite/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/sqlite/links.json -------------------------------------------------------------------------------- /steps/static-abstract-methods-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/static-abstract-methods-01/content.md -------------------------------------------------------------------------------- /steps/static-abstract-methods-01/solution/01_store.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/static-abstract-methods-01/solution/01_store.zip -------------------------------------------------------------------------------- /steps/static-abstract-methods-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/static-abstract-methods-02/content.md -------------------------------------------------------------------------------- /steps/static-abstract-methods-02/solution/02_store.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/static-abstract-methods-02/solution/02_store.zip -------------------------------------------------------------------------------- /steps/static-abstract-methods-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/static-abstract-methods-03/content.md -------------------------------------------------------------------------------- /steps/static-abstract-methods-03/solution/03_store.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/static-abstract-methods-03/solution/03_store.zip -------------------------------------------------------------------------------- /steps/static-abstract-methods-04/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/static-abstract-methods-04/content.md -------------------------------------------------------------------------------- /steps/static-abstract-methods-04/solution/04_store.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/static-abstract-methods-04/solution/04_store.zip -------------------------------------------------------------------------------- /steps/static-abstract-methods/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/static-abstract-methods/content.md -------------------------------------------------------------------------------- /steps/static-abstract-methods/files/notepad.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/static-abstract-methods/files/notepad.zip -------------------------------------------------------------------------------- /steps/static-abstract-methods/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/static-abstract-methods/links.json -------------------------------------------------------------------------------- /steps/vcs-git-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/vcs-git-01/content.md -------------------------------------------------------------------------------- /steps/vcs-git-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/vcs-git-02/content.md -------------------------------------------------------------------------------- /steps/vcs-git-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/vcs-git-03/content.md -------------------------------------------------------------------------------- /steps/vcs-git-03/solution/roll_some_dice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/vcs-git-03/solution/roll_some_dice.rb -------------------------------------------------------------------------------- /steps/vcs-git-04/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/vcs-git-04/content.md -------------------------------------------------------------------------------- /steps/vcs-git-04/solution/roll_some_dice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/vcs-git-04/solution/roll_some_dice.rb -------------------------------------------------------------------------------- /steps/vcs-git/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/vcs-git/content.md -------------------------------------------------------------------------------- /steps/vcs-git/files/roll_a_die.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/vcs-git/files/roll_a_die.rb -------------------------------------------------------------------------------- /steps/vcs-git/files/roll_some_dice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/vcs-git/files/roll_some_dice.rb -------------------------------------------------------------------------------- /steps/vcs-git/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/vcs-git/links.json -------------------------------------------------------------------------------- /steps/viselitsa-v1-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v1-01/content.md -------------------------------------------------------------------------------- /steps/viselitsa-v1-01/solution/goroda.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v1-01/solution/goroda.rb -------------------------------------------------------------------------------- /steps/viselitsa-v1-01/solution/london.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v1-01/solution/london.rb -------------------------------------------------------------------------------- /steps/viselitsa-v1-01/solution/paris.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v1-01/solution/paris.rb -------------------------------------------------------------------------------- /steps/viselitsa-v1-01/solution/rome.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v1-01/solution/rome.rb -------------------------------------------------------------------------------- /steps/viselitsa-v1-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v1-02/content.md -------------------------------------------------------------------------------- /steps/viselitsa-v1-02/solution/viselitsa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v1-02/solution/viselitsa.rb -------------------------------------------------------------------------------- /steps/viselitsa-v1-02/solution/viselitsa_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v1-02/solution/viselitsa_methods.rb -------------------------------------------------------------------------------- /steps/viselitsa-v1/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v1/content.md -------------------------------------------------------------------------------- /steps/viselitsa-v1/files/methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v1/files/methods.rb -------------------------------------------------------------------------------- /steps/viselitsa-v1/files/viselitsa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v1/files/viselitsa.rb -------------------------------------------------------------------------------- /steps/viselitsa-v1/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v1/links.json -------------------------------------------------------------------------------- /steps/viselitsa-v2-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v2-01/content.md -------------------------------------------------------------------------------- /steps/viselitsa-v2-01/solution/heroes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v2-01/solution/heroes.rb -------------------------------------------------------------------------------- /steps/viselitsa-v2-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v2-02/content.md -------------------------------------------------------------------------------- /steps/viselitsa-v2-02/solution/film.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v2-02/solution/film.rb -------------------------------------------------------------------------------- /steps/viselitsa-v2-02/solution/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v2-02/solution/main.rb -------------------------------------------------------------------------------- /steps/viselitsa-v2-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v2-03/content.md -------------------------------------------------------------------------------- /steps/viselitsa-v2-03/solution/film.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v2-03/solution/film.rb -------------------------------------------------------------------------------- /steps/viselitsa-v2-03/solution/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v2-03/solution/main.rb -------------------------------------------------------------------------------- /steps/viselitsa-v2-03/solution/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v2-03/solution/person.rb -------------------------------------------------------------------------------- /steps/viselitsa-v2/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v2/content.md -------------------------------------------------------------------------------- /steps/viselitsa-v2/files/game.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v2/files/game.rb -------------------------------------------------------------------------------- /steps/viselitsa-v2/files/result_printer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v2/files/result_printer.rb -------------------------------------------------------------------------------- /steps/viselitsa-v2/files/viselitsa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v2/files/viselitsa.rb -------------------------------------------------------------------------------- /steps/viselitsa-v2/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v2/links.json -------------------------------------------------------------------------------- /steps/viselitsa-v3-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v3-01/content.md -------------------------------------------------------------------------------- /steps/viselitsa-v3-01/solution/choose_movie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v3-01/solution/choose_movie.rb -------------------------------------------------------------------------------- /steps/viselitsa-v3-01/solution/movies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v3-01/solution/movies.txt -------------------------------------------------------------------------------- /steps/viselitsa-v3-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v3-02/content.md -------------------------------------------------------------------------------- /steps/viselitsa-v3-02/solution/choose_movie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v3-02/solution/choose_movie.rb -------------------------------------------------------------------------------- /steps/viselitsa-v3-02/solution/movies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v3-02/solution/movies.txt -------------------------------------------------------------------------------- /steps/viselitsa-v3/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v3/content.md -------------------------------------------------------------------------------- /steps/viselitsa-v3/files/data/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v3/files/data/words.txt -------------------------------------------------------------------------------- /steps/viselitsa-v3/files/game.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v3/files/game.rb -------------------------------------------------------------------------------- /steps/viselitsa-v3/files/image/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v3/files/image/0.txt -------------------------------------------------------------------------------- /steps/viselitsa-v3/files/image/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v3/files/image/1.txt -------------------------------------------------------------------------------- /steps/viselitsa-v3/files/image/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v3/files/image/2.txt -------------------------------------------------------------------------------- /steps/viselitsa-v3/files/image/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v3/files/image/3.txt -------------------------------------------------------------------------------- /steps/viselitsa-v3/files/image/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v3/files/image/4.txt -------------------------------------------------------------------------------- /steps/viselitsa-v3/files/image/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v3/files/image/5.txt -------------------------------------------------------------------------------- /steps/viselitsa-v3/files/image/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v3/files/image/6.txt -------------------------------------------------------------------------------- /steps/viselitsa-v3/files/image/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v3/files/image/7.txt -------------------------------------------------------------------------------- /steps/viselitsa-v3/files/result_printer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v3/files/result_printer.rb -------------------------------------------------------------------------------- /steps/viselitsa-v3/files/viselitsa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v3/files/viselitsa.rb -------------------------------------------------------------------------------- /steps/viselitsa-v3/files/viselitsa_v3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v3/files/viselitsa_v3.zip -------------------------------------------------------------------------------- /steps/viselitsa-v3/files/word_reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v3/files/word_reader.rb -------------------------------------------------------------------------------- /steps/viselitsa-v3/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/viselitsa-v3/links.json -------------------------------------------------------------------------------- /steps/what-to-do-next-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/what-to-do-next-01/content.md -------------------------------------------------------------------------------- /steps/what-to-do-next-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/what-to-do-next-02/content.md -------------------------------------------------------------------------------- /steps/what-to-do-next-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/what-to-do-next-03/content.md -------------------------------------------------------------------------------- /steps/what-to-do-next-04/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/what-to-do-next-04/content.md -------------------------------------------------------------------------------- /steps/what-to-do-next/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/what-to-do-next/content.md -------------------------------------------------------------------------------- /steps/what-to-do-next/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/what-to-do-next/links.json -------------------------------------------------------------------------------- /steps/write-files-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/write-files-01/content.md -------------------------------------------------------------------------------- /steps/write-files-01/solution/hello.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/write-files-01/solution/hello.rb -------------------------------------------------------------------------------- /steps/write-files-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/write-files-02/content.md -------------------------------------------------------------------------------- /steps/write-files-02/solution/eyes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/write-files-02/solution/eyes.txt -------------------------------------------------------------------------------- /steps/write-files-02/solution/foreheads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/write-files-02/solution/foreheads.txt -------------------------------------------------------------------------------- /steps/write-files-02/solution/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/write-files-02/solution/main.rb -------------------------------------------------------------------------------- /steps/write-files-02/solution/mouths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/write-files-02/solution/mouths.txt -------------------------------------------------------------------------------- /steps/write-files-02/solution/noses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/write-files-02/solution/noses.txt -------------------------------------------------------------------------------- /steps/write-files-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/write-files-03/content.md -------------------------------------------------------------------------------- /steps/write-files-03/solution/data/holidays.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/write-files-03/solution/data/holidays.txt -------------------------------------------------------------------------------- /steps/write-files-03/solution/holidays.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/write-files-03/solution/holidays.rb -------------------------------------------------------------------------------- /steps/write-files/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/write-files/content.md -------------------------------------------------------------------------------- /steps/write-files/files/my_diary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/write-files/files/my_diary.rb -------------------------------------------------------------------------------- /steps/write-files/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/write-files/links.json -------------------------------------------------------------------------------- /steps/xml-html-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-html-01/content.md -------------------------------------------------------------------------------- /steps/xml-html-01/solution/business_card.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-html-01/solution/business_card.rb -------------------------------------------------------------------------------- /steps/xml-html-01/solution/business_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-html-01/solution/business_card.xml -------------------------------------------------------------------------------- /steps/xml-html-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-html-02/content.md -------------------------------------------------------------------------------- /steps/xml-html-02/solution/business_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-html-02/solution/business_card.html -------------------------------------------------------------------------------- /steps/xml-html-02/solution/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-html-02/solution/photo.jpg -------------------------------------------------------------------------------- /steps/xml-html-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-html-03/content.md -------------------------------------------------------------------------------- /steps/xml-html-03/solution/store/book.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-html-03/solution/store/book.rb -------------------------------------------------------------------------------- /steps/xml-html-03/solution/store/data/products.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-html-03/solution/store/data/products.xml -------------------------------------------------------------------------------- /steps/xml-html-03/solution/store/disk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-html-03/solution/store/disk.rb -------------------------------------------------------------------------------- /steps/xml-html-03/solution/store/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-html-03/solution/store/main.rb -------------------------------------------------------------------------------- /steps/xml-html-03/solution/store/movie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-html-03/solution/store/movie.rb -------------------------------------------------------------------------------- /steps/xml-html-03/solution/store/product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-html-03/solution/store/product.rb -------------------------------------------------------------------------------- /steps/xml-html/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-html/content.md -------------------------------------------------------------------------------- /steps/xml-html/files/expenses_tracker.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-html/files/expenses_tracker.zip -------------------------------------------------------------------------------- /steps/xml-html/files/patsansky_kiker.docx.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-html/files/patsansky_kiker.docx.zip -------------------------------------------------------------------------------- /steps/xml-html/files/sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-html/files/sample.xml -------------------------------------------------------------------------------- /steps/xml-html/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-html/links.json -------------------------------------------------------------------------------- /steps/xml-write-01/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write-01/content.md -------------------------------------------------------------------------------- /steps/xml-write-01/solution/data/chest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write-01/solution/data/chest.xml -------------------------------------------------------------------------------- /steps/xml-write-01/solution/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write-01/solution/main.rb -------------------------------------------------------------------------------- /steps/xml-write-02/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write-02/content.md -------------------------------------------------------------------------------- /steps/xml-write-02/solution/data/chest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write-02/solution/data/chest.xml -------------------------------------------------------------------------------- /steps/xml-write-02/solution/lib/wish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write-02/solution/lib/wish.rb -------------------------------------------------------------------------------- /steps/xml-write-02/solution/list_wishes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write-02/solution/list_wishes.rb -------------------------------------------------------------------------------- /steps/xml-write-02/solution/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write-02/solution/main.rb -------------------------------------------------------------------------------- /steps/xml-write-03/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write-03/content.md -------------------------------------------------------------------------------- /steps/xml-write-03/solution/business_card/business_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write-03/solution/business_card/business_card.html -------------------------------------------------------------------------------- /steps/xml-write-03/solution/business_card/business_card.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write-03/solution/business_card/business_card.rb -------------------------------------------------------------------------------- /steps/xml-write-03/solution/business_card/business_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write-03/solution/business_card/business_card.xml -------------------------------------------------------------------------------- /steps/xml-write-04/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write-04/content.md -------------------------------------------------------------------------------- /steps/xml-write-04/solution/store/add_a_product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write-04/solution/store/add_a_product.rb -------------------------------------------------------------------------------- /steps/xml-write-04/solution/store/book.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write-04/solution/store/book.rb -------------------------------------------------------------------------------- /steps/xml-write-04/solution/store/data/products.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write-04/solution/store/data/products.xml -------------------------------------------------------------------------------- /steps/xml-write-04/solution/store/disk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write-04/solution/store/disk.rb -------------------------------------------------------------------------------- /steps/xml-write-04/solution/store/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write-04/solution/store/main.rb -------------------------------------------------------------------------------- /steps/xml-write-04/solution/store/movie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write-04/solution/store/movie.rb -------------------------------------------------------------------------------- /steps/xml-write-04/solution/store/product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write-04/solution/store/product.rb -------------------------------------------------------------------------------- /steps/xml-write/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write/content.md -------------------------------------------------------------------------------- /steps/xml-write/files/XPath_cheatshit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write/files/XPath_cheatshit.pdf -------------------------------------------------------------------------------- /steps/xml-write/files/XPath_cheatshit_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write/files/XPath_cheatshit_2.pdf -------------------------------------------------------------------------------- /steps/xml-write/files/expenses_tracker/expenses_reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write/files/expenses_tracker/expenses_reader.rb -------------------------------------------------------------------------------- /steps/xml-write/files/expenses_tracker/expenses_writer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write/files/expenses_tracker/expenses_writer.rb -------------------------------------------------------------------------------- /steps/xml-write/files/expenses_tracker/my_expenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write/files/expenses_tracker/my_expenses.xml -------------------------------------------------------------------------------- /steps/xml-write/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aristofun/rubyrush/HEAD/steps/xml-write/links.json --------------------------------------------------------------------------------