This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| This is a quick reference example to get you started with yaml. Please review this, | |
| but spend the time to fully read the wikipedia page on yaml: | |
| http://en.wikipedia.org/wiki/Yaml | |
| Note that the magic quote-less yaml parsing will still always strip values. | |
| To avoid this you need to use quotes. Quotes can also force types to string type, | |
| and are always valid (meaning omitting quotes is for convenience not necessity). | |
| ''' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # =================================================================================================================== | |
| # Template for generating a no-frills Rails application with support for ElasticSearch full-text search via Tire | |
| # =================================================================================================================== | |
| # | |
| # This file creates a basic, fully working Rails application with support for ElasticSearch full-text search | |
| # via the Tire gem [http://github.com/karmi/tire]. | |
| # | |
| # You DON'T NEED ELASTICSEARCH INSTALLED, it is installed and launched automatically by this script. | |
| # | |
| # Requirements |
NewerOlder