playtime

(★ 102)

Supporting children and families experiencing homelessness in Washington, DC. Live app - https://wishlist.playtimeproject.org Organization Website:

File Explorer

  • .env.sample
  • .env.test
  • .gitignore
  • .pryrc
  • .rspec
  • .rubocop.yml
  • .ruby-version
  • .travis.yml
  • app.json
  • Capfile
  • config.ru
  • Gemfile
  • Gemfile.lock
  • LICENSE
  • package.json
  • Procfile
  • Rakefile
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

rails console

View Details ▼

Interact with a Rails application.

rails console

Start the Rails console:

rails console {{[-s|--sandbox]}}

Start the Rails console and roll back all data modifications on exit:

rails console {{[-e|--environment]}} {{dev|test|production|...}}

Start the Rails console on a specified environment:

🔍

rails server

View Details ▼

Serve the Rails app in the current directory using the Puma web server, which comes bundled with Rails.

rails server

Run the web server:

rails server {{[-p|--port]}} {{port_number}}

Run the web server on a specified port:

rails server {{[-b|--binding]}} {{ip_address}}

Run the web server on a specified IP address:

🔍

rake

View Details ▼

A Make-like program for Ruby.
Tasks for `rake` are specified in a Rakefile.

rake

Run the `default` Rakefile task:

rake {{task}}

Run a specific task:

rake --jobs {{n}}

Execute `n` jobs at a time in parallel (number of CPU cores + 4 by default):

🔍

rspec

View Details ▼

Behavior-driven development testing framework written in Ruby to test Ruby code.

rspec --init

Initialize an `.rspec` configuration and a spec helper file:

rspec

Run all tests:

rspec {{path/to/directory}}

Run a specific directory of tests:

# Project Badges

  • Build Status Build Status Visit
  • View performance data on Skylight View performance data on Skylight Visit
// repository documentation