https://github.com/agilecreativity/index_html
Simple gem to create index.html from list of files based on simple search criteria (extension, contain words, exclude words, etc)
https://github.com/agilecreativity/index_html
Last synced: 12 months ago
JSON representation
Simple gem to create index.html from list of files based on simple search criteria (extension, contain words, exclude words, etc)
- Host: GitHub
- URL: https://github.com/agilecreativity/index_html
- Owner: agilecreativity
- License: mit
- Created: 2014-04-14T08:35:52.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2015-07-16T21:37:10.000Z (almost 11 years ago)
- Last Synced: 2025-06-09T10:36:38.940Z (about 1 year ago)
- Language: Ruby
- Homepage:
- Size: 341 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
## index_html
[][gem]
[][gemnasium]
[][codeclimate]
[][travis-ci]
[][coveralls]
[](https://codeship.com/projects/48400)
[gem]: http://badge.fury.io/rb/index_html
[gemnasium]: https://gemnasium.com/agilecreativity/index_html
[codeclimate]: https://codeclimate.com/github/agilecreativity/index_html
[travis-ci]: http://travis-ci.org/agilecreativity/index_html
[coveralls]: https://coveralls.io/r/agilecreativity/index_html
Quickly generate the index.html files based on your simple criteria.
Note: start from version `0.1.2` this gem will follow the [Semantic Versioning][] release schedule.
### Installation
Add this line to your application's Gemfile:
gem 'index_html'
And then execute:
$ bundle
Or install it yourself as:
$ gem install index_html
### Usage
Say you have lots of ebook files (pdf, epub, or mobi) and you have properly named them
with something like [ebook_renamer][].
Now that you have the good data, if you like to create a quick index to all of the files
that have the specific word 'Android' in the title you could perhap try something like the following:
```sh
gem install index_html
cd ~/Dropbox/ebooks/
index_html --base-dir . \
--exts epub pdf mobi \
--inc-words android \
--recursive
```
### Help/Usage:
Just type `index_html` without any options to see the list of help
```
Usage:
index_html
Options:
-b, [--base-dir=BASE_DIR] # Base directory
# Default: . (current directory)
-e, [--exts=one two three] # List of extensions to search for
-f, [--non-exts=one two three] # List of files without extension to search for
-n, [--inc-words=one two three] # List of words to be included in the result if any
-x, [--exc-words=one two three] # List of words to be excluded from the result if any
-i, [--ignore-case], [--no-ignore-case] # Match case insensitively
# Default: true
-r, [--recursive], [--no-recursive] # Search for files recursively
# Default: true
-v, [--version], [--no-version] # Display version information
-p, [--prefix=PREFIX] # Prefix string to the URL
# Default: .
-d, [--indent=N] # Indentation to each list item in the output
# Default: 6
-o, [--output=OUTPUT] # Output file name
# Default: index.html
Generate the index.html base on simple criteria
```
This will generate the file `index.html` that you can open from your favourite browser.
### Sample output
- Sample list of files from a given directory
```shell
$index_html --base-dir=spec/fixtures --exts=rb java --recursive
```
The output file `index.html` should be generated with something like
```html
File Listing
File List
- ./demo1.xxx.java
- ./demo1.xxx.rb
- ./demo2.xxx.java
- ./demo2.xxx.rb
- ./sub-dir/demo3.yyy.java
- ./sub-dir/demo3.yyy.rb
- ./sub-dir/demo4.yyy.java
- ./sub-dir/demo4.yyy.rb
```
- Run with simple prefix option
```shell
index_html --base-dir spec/fixtures --exts rb java --recursive --prefix http://localhost
```
The output file `index.html` should be something like
```html
File Listing
File List
- http://localhost/demo1.xxx.java
- http://localhost/demo1.xxx.rb
- http://localhost/demo2.xxx.java
- http://localhost/demo2.xxx.rb
- http:/localhost/sub-dir/demo3.yyy.java
- http://localhost/sub-dir/demo3.yyy.rb
- http://localhost/sub-dir/demo4.yyy.java
- http://localhost/sub-dir/demo4.yyy.rb
```
### Contributing
Bug reports and suggestions for improvements are always welcome,
GitHub pull requests are even better!.
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request
[agile_utils]: https://rubygems.org/gems/agile_utils
[code_lister]: https://rubygems.org/gems/code_lister
[ebook_renamer]: https://rubygems.org/gems/ebook_renamer
[rubocop]: https://github.com/bbatsov/rubocop
[Semantic Versioning]: http://semver.org