{"id":16740534,"url":"https://github.com/bryn-g/coursera-rubyonrails","last_synced_at":"2026-05-17T12:31:52.707Z","repository":{"id":135849360,"uuid":"107973526","full_name":"bryn-g/coursera-rubyonrails","owner":"bryn-g","description":":mortar_board: Coursera: Ruby on Rails - An Introduction.","archived":false,"fork":false,"pushed_at":"2017-10-31T06:29:38.000Z","size":26,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-03-15T23:41:23.657Z","etag":null,"topics":["ruby","ruby-on-rails"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bryn-g.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-10-23T11:35:27.000Z","updated_at":"2017-10-31T05:01:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"305af1b2-6f28-4c00-88d4-28d280e47617","html_url":"https://github.com/bryn-g/coursera-rubyonrails","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bryn-g/coursera-rubyonrails","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryn-g%2Fcoursera-rubyonrails","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryn-g%2Fcoursera-rubyonrails/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryn-g%2Fcoursera-rubyonrails/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryn-g%2Fcoursera-rubyonrails/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bryn-g","download_url":"https://codeload.github.com/bryn-g/coursera-rubyonrails/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryn-g%2Fcoursera-rubyonrails/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33138251,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T09:28:26.183Z","status":"ssl_error","status_checked_at":"2026-05-17T09:27:52.702Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ruby","ruby-on-rails"],"created_at":"2024-10-13T00:59:13.369Z","updated_at":"2026-05-17T12:31:52.689Z","avatar_url":"https://github.com/bryn-g.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# coursera-rubyonrails\n## Coursera: Ruby on Rails - An Introduction\n\n### development environment set-up\n```sh\n# trigger macos developer tool install\n$ git --version\n\n# install homebrew (non-admin)\n$ mkdir homebrew \u0026\u0026 curl -L https://github.com/Homebrew/brew/tarball/master \n  | tar xz --strip 1 -C homebrew\n\n# homebrew execution path in .bash_profile\nexport BREW_HOME=$HOME/homebrew/bin\nPATH=$BREW_HOME:$PATH\n```\n#### ruby\nhttps://gorails.com/setup/osx/10.13-high-sierra\n\n```sh\n# install ruby environment\n$ brew install rbenv ruby-build\n\n# add rbenv to bash so that it loads every time you open a terminal\n$ echo 'if which rbenv \u003e /dev/null; then eval \"$(rbenv init -)\"; fi' \u003e\u003e ~/.bash_profile\n$ source ~/.bash_profile\n\n# install ruby\n$ rbenv install 2.4.2\n\n# set the global version to use everywhere\n$ rbenv global 2.4.2\n$ ruby -v\n```\n#### ruby-on-rails\n```sh\n# install rails\n$ gem install rails -v 5.1.4\n\n# need to run rbenv rehash anytime change gems that run from command line\n$ rbenv rehash\n\n# new rails application\n$ rails new \u003capp_name\u003e\n\n# run application\n$ rails server\n```\n#### other requirements\n```sh\n# install phantomjs - headless browser\n$ brew install phantomjs\n\n# rspec for unit testing\n$ gem install rspec\n$ gem install rspec-its\n\n# http and restful web services\n$ gem install httparty\n$ gem install webmock\n\n# real user simulation tests\n$ gem install capybara\n\n# phantomjs driver for capybara - allows headless tests on webkit browser\n$ gem insall poltergeist\n```\n### zip command used for final assignment submission\n```sh\n# zip the rails application and exclude some unecessary files\nzip -r recipefinder.zip * \n  -x \".DS_Store/*\" -x \"tmp/*\" \n  -x \"*/development.log\" -x \"*/development.sqlite3\" \n  -x \"*/2*_create_recipes.rb\" -x \"Gemfile.zip\"\n```\n\n```ruby\nend.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbryn-g%2Fcoursera-rubyonrails","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbryn-g%2Fcoursera-rubyonrails","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbryn-g%2Fcoursera-rubyonrails/lists"}