{"id":21529763,"url":"https://github.com/samsamskies/ar-todo-sinatra","last_synced_at":"2025-03-17T19:14:58.870Z","repository":{"id":69649642,"uuid":"13462603","full_name":"SamSamskies/ar-todo-sinatra","owner":"SamSamskies","description":"Phase 1 final challenge converted into a web app using Sinatra","archived":false,"fork":false,"pushed_at":"2013-10-10T06:26:26.000Z","size":116,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-08T22:07:42.265Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/SamSamskies.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}},"created_at":"2013-10-10T05:12:22.000Z","updated_at":"2013-10-10T06:26:29.000Z","dependencies_parsed_at":"2023-02-21T05:20:41.578Z","dependency_job_id":null,"html_url":"https://github.com/SamSamskies/ar-todo-sinatra","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SamSamskies%2Far-todo-sinatra","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SamSamskies%2Far-todo-sinatra/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SamSamskies%2Far-todo-sinatra/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SamSamskies%2Far-todo-sinatra/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SamSamskies","download_url":"https://codeload.github.com/SamSamskies/ar-todo-sinatra/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244094274,"owners_count":20397020,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-11-24T01:59:02.467Z","updated_at":"2025-03-17T19:14:58.845Z","avatar_url":"https://github.com/SamSamskies.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ActiveRecord TODOs\n\n## Before You Get Started\n\nBefore you get started...\n\n1.  **Install Correct Version of SQLite3**\n\n    Run the following from the command line:\n\n    ```text\n    which sqlite3\n    ```\n\n    This should either print out `/usr/bin/sqlite3` or `/usr/local/bin/sqlite3`.  We want it to print out `/usr/local/bin/sqlite3`.  If it prints out `/usr/bin/sqlite3` run the following from the command line:\n\n    ```text\n    brew link sqlite3\n    ```\n\n    Now run `which sqlite3` again and make sure it says `/usr/local/bin/sqlite3`.  If it still doesn't find a staff member to help!\n\n2.  **Run `bundle` from the application root directory**\n\n    From your application root directory, run the following command to install any necessary gems:\n\n    ```text\n    $ bundle\n    ```\n\n    This will install all the gems listed in the `Gemfile`.\n\n## Getting Started\n\nYou're now ready to rock.  Run\n\n```text\n$ rake -T\n```\n\nto see the rake tasks available to you.  Run `rake db:create` to create the (empty) database file.  Run `rake generate:migration MIGRATION_NAME` e.g. `rake generate:migration create_students` to create a migration file skeleton. Run `rake db:migrate` to run migrations that have yet to be applied.\n\nCreate a file in the application root directory, e.g., `todo.rb`, to act as your main program.\n\n\u003ctable class=\"table table-striped table-bordered\"\u003e\n  \u003ctr\u003e\n    \u003cth\u003eFile or Directory\u003c/th\u003e\n    \u003cth\u003ePurpose\u003c/th\u003e\n  \u003c/tr\u003e\n\n  \u003ctr\u003e\n    \u003ctd\u003e\u003ccode\u003eapp/models/\u003c/code\u003e\u003c/td\u003e\n    \u003ctd\u003eLocation of your ActiveRecord models; filenames should be singular and `snake_case`.  These are autoloaded.\u003c/td\u003e\n  \u003c/tr\u003e\n\n  \u003ctr\u003e\n    \u003ctd\u003e\u003ccode\u003eapp/controllers/\u003c/code\u003e\u003c/td\u003e\n    \u003ctd\u003eLocation of any controller code; this isn't auto-loaded, so you'll have to manually include your controllers\u003c/td\u003e\n  \u003c/tr\u003e\n\n  \u003ctr\u003e\n    \u003ctd\u003e\u003ccode\u003edb/seeds.rb\u003c/code\u003c/td\u003e\n    \u003ctd\u003ePlace any database seed code in this file.  You automatically have access to your ActiveRecord models.  Run using `rake db:seed`.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003ccode\u003espec/\u003c/code\u003e\u003c/td\u003e\n    \u003ctd\u003eLocation of your specs, using [RSpec](http://rspec.info/).  Run with `rake spec`.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003ccode\u003econfig/application.rb\u003c/code\u003e\u003c/td\u003e\n    \u003ctd\u003eYour main application file; **do not** add user-facing code to this file.  Your application should include this file.\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamsamskies%2Far-todo-sinatra","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsamsamskies%2Far-todo-sinatra","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamsamskies%2Far-todo-sinatra/lists"}