talent_scout
Model-backed searches in Rails
File Explorer
- ci.yml
- test
- rails-8.1.gemfile
- talent_scout.en.yml.tt
- install_generator.rb
- search.rb.tt
- search_generator.rb
- search_test.rb.tt
- search_generator.rb
- choice_type.rb
- controller.rb
- criteria.rb
- helper.rb
- model_name.rb
- model_search.rb
- order_definition.rb
- order_type.rb
- railtie.rb
- version.rb
- void_type.rb
- talent_scout.rb
- manifest.js
- channel.rb
- connection.rb
- .keep
- application_controller.rb
- posts_controller.rb
- application_helper.rb
- posts_helper.rb
- application_job.rb
- application_mailer.rb
- .keep
- application_record.rb
- post.rb
- application.html.erb
- mailer.html.erb
- mailer.text.erb
- bundle
- rails
- rake
- setup
- update
- yarn
- development.rb
- production.rb
- test.rb
- application_controller_renderer.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
- talent_scout.en.yml
- application.rb
- boot.rb
- cable.yml
- database.yml
- environment.rb
- puma.rb
- routes.rb
- spring.rb
- storage.yml
- 20190109173115_create_posts.rb
- schema.rb
- .keep
- .keep
- 404.html
- 422.html
- 500.html
- apple-touch-icon-precomposed.png
- apple-touch-icon.png
- favicon.ico
- posts_controller_test.rb
- posts.yml
- post_test.rb
- config.ru
- package.json
- Rakefile
- choice_type_test.rb
- controller_test.rb
- form_builder_test.rb
- install_generator_test.rb
- link_to_search_test.rb
- model_search_test.rb
- order_definition_test.rb
- order_type_test.rb
- search_generator_test.rb
- simple_form_test.rb
- system_test.rb
- test_helper.rb
- void_type_test.rb
- .gitignore
- CHANGELOG.md
- Gemfile
- MIT-LICENSE
- Rakefile
- README.md
- talent_scout.gemspec
# 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`:
rails generate
View Details ▼
rails generate
Generate new Rails templates in an existing project.
rails generate
List all available generators:
rails generate model {{Post}} {{title:string}} {{body:text}}
Generate a new model named Post with attributes title and body:
rails generate controller {{Posts}} {{index}} {{show}} {{new}} {{create}}
Generate a new controller named Posts with actions index, show, new, and create:
time
View Details ▼
time
Measure how long a command took to run.
Note: `time` can either exist as a shell builtin, a standalone program, or both.
See also: `times`.
time {{command}}
Run the `command` and print the time measurements to `stdout`:
time
Display the current system time and prompt to enter a new time (leave empty to keep unchanged):
time read
Create a very simple stopwatch (only works in Bash):
