Simple manifest to fetch file by globs and generate digest.
Install the gem and add to the application's Gemfile by executing:
$ bundle add code_manifest
If bundler is not being used to manage dependencies, install the gem by executing:
$ gem install code_manifest
Put a .code_manifest.yml config file under your project root, for example:
ruby:
- app/**/*.rbjs:
- frontend/**/*.jsThen use it with:
require'code_manifest'# Returns an `Array` of filepathsCodeManifest[:ruby].filesCodeManifest[:js].files# Returns a digest based on all files specified under same namespaceCodeManifest[:ruby].digestCodeManifest[:js].digestBug reports and pull requests are welcome on GitHub at https://github.com/rubyatscale/code_manifest.