talent_scout

(★ 34)

Model-backed searches in Rails

File Explorer

  • .gitignore
  • CHANGELOG.md
  • Gemfile
  • MIT-LICENSE
  • Rakefile
  • README.md
  • talent_scout.gemspec

# 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.

🔍

bundle

View Details ▼

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 ▼

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 ▼

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):

// repository documentation