demand-progress
No description available.
File Explorer
- manifest.js
- .keep
- .keep
- application.js
- cable.js
- application.scss
- events.scss
- organizations.scss
- scaffolds.scss
- channel.rb
- connection.rb
- .keep
- application_controller.rb
- events_controller.rb
- organizations_controller.rb
- application_helper.rb
- committees_helper.rb
- agenda_manager.js
- checkbox_committee.js
- daily_agenda.js
- event.js
- tmp_list.js
- agenda.js
- application.js
- hello_react.jsx
- tmp_data.json
- application_job.rb
- house_events_scraper.rb
- organization_loader.rb
- application_mailer.rb
- .keep
- application_record.rb
- event.rb
- organization.rb
- index.html.erb
- application.html.erb
- mailer.html.erb
- mailer.text.erb
- _footer.html.erb
- _nav.html.erb
- bundle
- rails
- rake
- rspec
- setup
- spring
- update
- webpack
- webpack-dev-server
- yarn
- development.rb
- production.rb
- test.rb
- application_controller_renderer.rb
- assets.rb
- backtrace_silencers.rb
- content_security_policy.rb
- cookies_serializer.rb
- filter_parameter_logging.rb
- inflections.rb
- mime_types.rb
- wrap_parameters.rb
- en.yml
- development.js
- environment.js
- production.js
- test.js
- application.rb
- boot.rb
- cable.yml
- credentials.yml.enc
- database.yml
- environment.rb
- puma.rb
- routes.rb
- spring.rb
- storage.yml
- webpacker.yml
- example.json
- actions.spec.js
- aliasing.spec.js
- assertions.spec.js
- connectors.spec.js
- cookies.spec.js
- cypress_api.spec.js
- files.spec.js
- local_storage.spec.js
- location.spec.js
- misc.spec.js
- navigation.spec.js
- network_requests.spec.js
- querying.spec.js
- spies_stubs_clocks.spec.js
- traversal.spec.js
- utilities.spec.js
- viewport.spec.js
- waiting.spec.js
- window.spec.js
- index.js
- commands.js
- index.js
- 20180608143102_create_committees.rb
- 20180608180059_add_ancestry_to_committee.rb
- 20180608182158_create_events.rb
- 20180610012137_change_commitees_to_organizations.rb
- 20180610121037_add_raw_location_to_event.rb
- events.rb
- schema.rb
- seeds.rb
- .keep
- .keep
- committees.rake
- db.rake
- events.rake
- .keep
- 404.html
- 422.html
- 500.html
- apple-touch-icon-precomposed.png
- apple-touch-icon.png
- favicon.ico
- robots.txt
- committees_controller_spec.rb
- events_controller_spec.rb
- events.rb
- HHRG-115-ED00-20180606.xml
- HHRG-115-RU00-20180605.xml
- HMKP-115-HM00-20180606.xml
- event_parser_spec.rb
- house_events_scraper_spec.rb
- event_spec.rb
- organization_spec.rb
- factory_bot.rb
- rails_helper.rb
- spec_helper.rb
- .keep
- .keep
- .babelrc
- .gitignore
- .postcssrc.yml
- .rspec
- .rubocop.yml
- .ruby-version
- .tool-versions
- .travis.yml
- CODE_OF_CONDUCT.md
- config.ru
- CONTRIBUTING.md
- cypress.json
- Gemfile
- Gemfile.lock
- LICENSE
- logfile
- package-lock.json
- package.json
- Rakefile
- README.md
- USER-STORIES.md
- yarn.lock
# Use via CDN
jsDelivrjsDelivr 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.
bundle
View Details ▼
bundle
Dependency manager for the Ruby programming language.
bundle install
Install all gems defined in the `Gemfile` expected in the working directory:
bundle exec {{command}} {{arguments}}
Execute a command in the context of the current bundle:
bundle update
Update all gems by the rules defined in the `Gemfile` and regenerate `Gemfile.lock`:
bundler
View Details ▼
bundler
This command is an alias of `bundle`.
tldr bundle
View documentation for the original command:
createuser
View Details ▼
createuser
Create a PostgreSQL user (role).
createuser --interactive {{username}}
Create a user interactively:
createuser {{username}}
Create a user with no special rights:
createuser {{[-s|--superuser]}} {{username}}
Create a superuser:
gem
View Details ▼
gem
A package manager for the Ruby programming language.
gem search {{regex}} {{[-a|--all]}}
Search for remote gem(s) and show all available versions:
gem install {{gem_name}}
Install the latest version of a gem:
gem install {{gem_name}} {{[-v|--version]}} {{1.0.0}}
Install a specific version of a gem:
rails server
View Details ▼
rails server
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:
rails
View Details ▼
rails
A server-side MVC framework written in Ruby.
Some subcommands such as `generate` have their own usage documentation.
rails new "{{project_name}}"
Create a new rails project:
rails generate scaffold Post title:string body:text
Generate a scaffold for a model named Post, predefining the attributes title and body:
rails db:migrate
Run migrations:
rake
View Details ▼
rake
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):
rbenv
View Details ▼
rbenv
Easily install Ruby versions and manage application environments.
See also: `asdf`.
rbenv install {{version}}
Install a Ruby version:
rbenv install --list
Display a list of the latest stable versions for each Ruby:
rbenv versions
Display a list of installed Ruby versions:
rvm
View Details ▼
rvm
Easily installing, managing, and working with multiple ruby environments.
rvm install {{version1 version2 ...}}
Install one or more versions of Ruby:
rvm list
Display a list of installed versions:
rvm use {{version}}
Use a specific version of Ruby:
yarn
View Details ▼
yarn
JavaScript and Node.js package manager alternative.
yarn global add {{module_name}}
Install a module globally:
yarn install
Install all dependencies referenced in the `package.json` file (the `install` is optional):
yarn add {{module_name}}@{{version}}
Install a module and save it as a dependency to the `package.json` file (add `--dev` to save as a dev dependency):
